/* ============================================
   Página Criada por Luanderson
   Bunnys College Models — Estilos Principais
   Style: Playful & Girly Aesthetic
   Layout: Mobile First + Flexbox
   ============================================ */


/* ========================================
   VARIÁVEIS DE COR — alterar aqui para
   mudar o esquema de cores do site inteiro
   ======================================== */
:root {
  /* Paleta principal */
  --peach:        #F2B199;
  --peach-dark:   #F2916D;
  --lavender:     #C3A3D9;
  --blush:        #F2C4DA;
  --pink:         #F25CA2;
  --pink-dark:    #F2509C;
  --lilac:        #E2C9F2;
  --white:        #ffffff;

  /* Textos */
  --text-dark:    #3a1a2e;
  --text-medium:  #6b3558;
  --text-light:   #ffffff;

  /* Gradiente dos botões */
  --btn-gradient: linear-gradient(135deg, #F25CA2, #F2509C, #C3A3D9, #F25CA2);

  /* Sombras */
  --shadow:       0 4px 20px rgba(242, 92, 162, 0.15);
  --shadow-hover: 0 8px 30px rgba(242, 92, 162, 0.30);

  /* Bordas arredondadas */
  --radius-card:  20px;
  --radius-btn:   50px;
  --radius-img:   16px;
}


/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}


/* ========================================
   TIPOGRAFIA GERAL
   ======================================== */

/* Logo no topo do hero */
.hero-logo {
  width: 240px;
  height: auto;
  object-fit: contain;
  margin-bottom: -16px;
  filter: drop-shadow(0 4px 12px rgba(242, 80, 156, 0.25));
}

/* Imagem decorativa nos cards de plano (Bunnys e Personalizado) */
.plan-card-img-wrapper {
  margin: 0 auto 4px;
  max-width: 100%;
}

.plan-card-img {
  width: 100%;
  max-width: 340px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* Imagem do card Plano Personalizado — tamanho natural da imagem */
.plan-card-img-full {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: block;
}

/* Título de seção — fonte display Pacifico */
.section-title {
  font-family: 'Pacifico', cursive;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 14px;
  color: inherit;
  line-height: 1.25;
}

/* Subtítulo de seção */
.section-subtitle {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.65;
  margin-bottom: 20px;
  opacity: 0.88;
  max-width: 380px;
}

/* Texto corrido de seção */
.section-text {
  font-size: 0.88rem;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 20px;
}


/* ========================================
   LAYOUT DE SEÇÕES
   Cada section usa flex column + centered
   ======================================== */
.section {
  width: 100%;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* ========================================
   IMAGENS
   Sempre em column direction, ajustadas à página
   ======================================== */
.img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
  margin: 20px auto;
}

.section-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-img);
  object-fit: cover;
  box-shadow: var(--shadow);
}


/* ========================================
   BOTÕES — Pulsante + Gradiente + Flash
   Criado por Luanderson
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  /* Gradiente com background-size para animação */
  background: var(--btn-gradient);
  background-size: 300% 300%;
  color: var(--white);
  letter-spacing: 0.5px;

  /* Animações: pulsar + gradiente deslizante */
  animation:
    btnPulse    2.2s ease-in-out infinite,
    gradShift   4s   ease       infinite;

  box-shadow: 0 4px 22px rgba(242, 80, 156, 0.45);
  transition: transform 0.25s ease;
}

/* Flash de luz passando pelo botão */
.btn::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -80%;
  width: 55%;
  height: 140%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  animation: btnFlash 2.8s ease-in-out infinite;
  pointer-events: none;
  border-radius: 50%;
}

.btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(242, 80, 156, 0.65);
  /* pausa o pulse no hover para manter a escala */
  animation: gradShift 4s ease infinite;
}

/* Variações de cor dos botões de contato */
.btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  background-size: 300% 300%;
}
.btn-telegram {
  background: linear-gradient(135deg, #2AABEE, #229ED9, var(--lavender));
  background-size: 300% 300%;
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E, var(--pink));
  background-size: 300% 300%;
}


/* ========================================
   KEYFRAMES DOS BOTÕES
   ======================================== */

/* Pulsar com sombra expansiva */
@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0   rgba(242, 80, 156, 0.55); }
  50%  { box-shadow: 0 0 0 12px rgba(242, 80, 156, 0.00); transform: scale(1.025); }
  100% { box-shadow: 0 0 0 0   rgba(242, 80, 156, 0.00); }
}

/* Flash de luz cruzando o botão */
@keyframes btnFlash {
  0%   { left: -80%;  opacity: 0; }
  20%  { opacity: 1; }
  50%  { left: 120%;  opacity: 0; }
  100% { left: 120%;  opacity: 0; }
}

/* Gradiente deslizante de fundo */
@keyframes gradShift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}


/* ========================================
   SEÇÃO 1 — HERO
   Fundo: gradiente branco → blush → lilás
   ======================================== */
.hero-section {
  background: linear-gradient(160deg, #fff 0%, var(--blush) 55%, var(--lilac) 100%);
  min-height: 100vh;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

/* Título principal hero — fonte display */
.hero-title {
  font-family: 'Pacifico', cursive;
  font-size: 2.2rem;
  color: var(--pink-dark);
  text-shadow: 2px 3px 0 rgba(242, 80, 156, 0.12);
  margin-bottom: 4px;
}

.hero-img {
  max-width: 280px;
  border: 4px solid rgba(255, 255, 255, 0.7);
}

.hero-subtitle {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-medium);
  max-width: 360px;
  text-align: center;
  margin-bottom: 4px;
}


/* ========================================
   SEÇÃO 2 — QUEM SOMOS NÓS
   Fundo: lilás → lavanda (muda o tom)
   ======================================== */
.about-section {
  background: linear-gradient(160deg, var(--lilac) 0%, var(--lavender) 100%);
  color: var(--text-dark);
  gap: 4px;
  padding-top: 0px;
}

/* Card que envolve h1 + img + subtexto */
.about-card {
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-title {
  color: var(--pink-dark);
}

/* H2 fora do card */
.about-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  color: var(--pink-dark);
  text-align: center;
  margin: 32px 0 20px;
  line-height: 1.2;
  text-shadow: 1px 2px 0 rgba(242, 80, 156, 0.12);
}

/* Grid 2×2 de benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  margin-bottom: 24px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.benefit-emoji {
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.benefit-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink-dark);
}

.benefit-text {
  font-size: 0.74rem;
  color: var(--text-medium);
  line-height: 1.45;
}

/* Tagline ao final da seção */
.about-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.7rem;
  color: var(--pink-dark);
  text-align: center;
  font-weight: 700;
  margin-top: 16px;
  max-width: 380px;
  line-height: 1.35;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(242, 80, 156, 0.10);
}


/* ========================================
   SEÇÃO 3 — NOSSOS SERVIÇOS
   Fundo: pêssego → salmão (muda o tom)
   ======================================== */
.services-section {
  background: linear-gradient(160deg, var(--peach) 0%, var(--peach-dark) 100%);
  color: var(--white);
  gap: 4px;
  position: relative;
  z-index: 0;
  isolation: isolate; /* impede que a imagem vaze para fora da seção */
  overflow: hidden;
}

.services-section .section-title {
  color: var(--white);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.08);
}

.services-section .section-subtitle {
  color: rgba(255, 255, 255, 0.92);
}

/* Card com lista de serviços */
.services-card {
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  margin-bottom: 20px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Cada item da lista de serviços */
.services-list li {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--white);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-weight: 500;
  transition: background 0.25s ease;
}

.services-list li:hover {
  background: rgba(255, 255, 255, 0.28);
}

.services-tagline {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  line-height: 1.65;
  max-width: 380px;
  font-style: italic;
  margin-top: 4px;
}


/* ========================================
   SEÇÃO 4 — FEEDBACKS CARROSSEL
   Fundo: blush → rosa (muda o tom)
   Carrossel full-width sem padding lateral
   ======================================== */
.feedbacks-section {
  background: linear-gradient(160deg, var(--blush) 0%, var(--pink) 100%);
  color: var(--white);
  padding: 64px 0; /* sem padding lateral — carrossel vai até a borda */
  gap: 0;
  overflow: hidden;
}

/* Limita altura dos slides no desktop para não ficarem gigantes */
.mySwiper .swiper-slide {
  max-height: 340px;
}

.mySwiper .swiper-slide img {
  height: 100%;
  object-fit: cover;
}

.feedbacks-title {
  color: var(--white);
  padding: 0 24px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.08);
}

/* Wrapper do botão após o carrossel (precisa de padding) */
.feedbacks-btn-wrapper {
  padding: 0 24px;
  margin-top: 36px;
  display: flex;
  justify-content: center;
}


/* ========================================
   SEÇÃO 5 — PLANOS
   Fundo: lilás muito claro → branco
   ======================================== */
.plans-section {
  background: linear-gradient(160deg, var(--lilac) 0%, #fdf5ff 100%);
  color: var(--text-dark);
  gap: 24px;
}

/* Card de plano — base comum */
.plan-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-card);
  padding: 32px 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Card do plano em destaque (Plano Bunnys) */
.plan-card.featured {
  border-color: var(--pink-dark);
  background: linear-gradient(160deg, #fff 0%, var(--blush) 100%);
  position: relative;
  padding-top: 44px; /* espaço para o badge acima */
}

/* Badge "Mais Escolhido" */
.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-dark);
  color: var(--white);
  padding: 5px 22px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(242, 80, 156, 0.4);
}

/* Título do plano — fonte cursiva */
.plan-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem;
  color: var(--pink-dark);
  text-align: center;
  line-height: 1.2;
}

/* Descrição curta do plano */
.plan-description {
  font-size: 0.84rem;
  text-align: center;
  color: var(--text-medium);
  line-height: 1.55;
}

/* Lista de benefícios do plano */
.plan-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-list li {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-dark);
}

/* Sub-lista dentro da lista do plano */
.plan-sublist {
  list-style: disc;
  margin-left: 22px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-sublist li {
  font-size: 0.8rem;
}

/* Box de preço do plano */
.plan-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--blush), var(--lilac));
  border-radius: 14px;
}

.price-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-medium);
}

.price-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--pink-dark);
}

.price-period {
  font-size: 0.88rem;
  font-weight: 400;
}


/* ──────────────────────────────────────
   PLANO PERSONALIZADO — Formulário
   ────────────────────────────────────── */
.plan-custom {
  align-items: stretch; /* estende o formulário na largura total */
}

.custom-title {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.2;
}

/* Formulário checklist */
.custom-plan-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Bloco de cada serviço do plano personalizado */
.plan-item-block {
  background: linear-gradient(135deg,
    rgba(242, 196, 218, 0.22),
    rgba(226, 201, 242, 0.22)
  );
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(242, 92, 162, 0.16);
}

/* Título do serviço dentro do formulário */
.plan-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink-dark);
  text-align: center;
}

/* Descrição do serviço */
.plan-item-desc {
  font-size: 0.79rem;
  line-height: 1.65;
  color: var(--text-medium);
  text-align: center;
}

/* Imagem dentro de cada bloco do formulário */
.plan-img-wrapper {
  max-width: 100%;
  margin: 0 auto 4px;
}

.plan-item-img {
  width: 100%;
  max-width: 280px;
  height: 155px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Lista de features dos serviços */
.plan-feature-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plan-feature-list li {
  font-size: 0.8rem;
  color: var(--text-medium);
  line-height: 1.45;
}

/* Grupo de opções (radio ou checkbox) */
.plan-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Cada opção individual */
.plan-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

/* Opção selecionada */
.plan-option:has(input:checked) {
  border-color: var(--pink-dark);
  background: rgba(242, 196, 218, 0.45);
}

/* Radio e checkbox */
.plan-option input[type="radio"],
.plan-option input[type="checkbox"] {
  accent-color: var(--pink-dark);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.option-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}

.option-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pink-dark);
  white-space: nowrap;
}

/* Bloco do bundle (pacote promocional) */
.plan-bundle-block {
  background: linear-gradient(135deg, var(--blush), var(--lilac));
  border: 2px solid var(--pink-dark);
  align-items: center;
}

.bundle-flame {
  font-size: 2rem;
  line-height: 1;
}

.bundle-title {
  font-size: 1.05rem;
}

.bundle-desc {
  font-weight: 600;
  color: var(--pink-dark);
  text-align: center;
}

.bundle-option {
  background: rgba(255, 255, 255, 0.72);
}

/* Nota explicativa do bundle */
.bundle-note {
  font-size: 0.73rem;
  color: var(--text-medium);
  text-align: center;
  font-style: italic;
  line-height: 1.5;
}

/* Estado bloqueado (quando bundle é selecionado) */
.plan-item-block.locked {
  opacity: 0.38;
  pointer-events: none;
  filter: grayscale(0.7);
  transition: opacity 0.35s ease, filter 0.35s ease;
}

/* Box total do plano personalizado */
.plan-total-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px;
  background: linear-gradient(135deg, var(--blush), var(--lilac));
  border-radius: 16px;
}

.total-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-medium);
}

/* Valor total — destaque grande */
.total-value {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--pink-dark);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
}


/* ========================================
   SEÇÃO 6 — FAQ
   Fundo: branco rosado (muda o tom)
   Accordion moderno
   ======================================== */
.faq-section {
  background: linear-gradient(160deg, #fff9fb 0%, var(--blush) 100%);
  color: var(--text-dark);
  gap: 8px;
}

/* Container das perguntas */
.faq-container {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

/* Item individual do FAQ */
.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(242, 92, 162, 0.10);
  border: 1px solid rgba(242, 92, 162, 0.14);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(242, 92, 162, 0.20);
}

/* Botão da pergunta (toggle) */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--pink-dark);
  text-align: left;
  transition: background 0.25s ease;
}

.faq-question:hover {
  background: rgba(242, 196, 218, 0.22);
}

/* Ícone + / × */
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--pink-dark);
  flex-shrink: 0;
  transition: transform 0.35s ease;
  line-height: 1;
  display: block;
}

/* Resposta — escondida por padrão via max-height */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.40s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.83rem;
  line-height: 1.72;
  color: var(--text-medium);
}

/* Estado ABERTO — adicionado via JS */
.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* + vira × */
}

.faq-item.active .faq-question {
  background: rgba(242, 196, 218, 0.22);
}


/* ========================================
   SEÇÃO 7 — CONTATO
   Fundo: blush → rosa vibrante
   ======================================== */
.contact-section {
  background: linear-gradient(160deg, var(--blush) 0%, var(--pink) 100%);
  color: var(--white);
  gap: 8px;
}

.contact-title {
  color: var(--white);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.08);
  max-width: 400px;
  margin: 0 auto 10px;
  font-size: 2.1rem;
  line-height: 1.25;
}

.contact-sub {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-img {
  max-width: 260px;
  border: 4px solid rgba(255, 255, 255, 0.55);
}

/* Grupo de botões de redes sociais */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
}

.contact-buttons .btn {
  width: 100%;
  font-size: 1rem;
}


/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: linear-gradient(135deg, var(--pink-dark), #a0256e);
  color: rgba(255, 255, 255, 0.90);
  padding: 44px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-brand {
  font-family: 'Pacifico', cursive;
  font-size: 1.7rem;
  color: var(--white);
}

.footer-rights {
  font-size: 0.74rem;
  line-height: 1.75;
  opacity: 0.80;
  max-width: 380px;
}

.footer-dev {
  font-size: 0.76rem;
  opacity: 0.65;
  font-style: italic;
}


/* ========================================
   RESPONSIVO — TABLET / DESKTOP (≥ 768px)
   ======================================== */
@media (min-width: 768px) {

  .section {
    padding: 80px 48px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-img {
    max-width: 360px;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .benefits-grid {
    max-width: 540px;
    gap: 18px;
  }

  .benefit-card {
    padding: 22px 16px;
  }

  .benefit-title {
    font-size: 0.9rem;
  }

  .benefit-text {
    font-size: 0.80rem;
  }

  .about-card,
  .services-card,
  .faq-container {
    max-width: 580px;
  }

  .plan-card {
    max-width: 520px;
  }

  /* Botões de contato lado a lado no desktop */
  .contact-buttons {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    gap: 16px;
  }

  .contact-buttons .btn {
    width: auto;
    min-width: 190px;
  }
}

/* ========================================
   RESPONSIVO — DESKTOP GRANDE (≥ 1200px)
   ======================================== */
@media (min-width: 1200px) {

  .section {
    padding: 100px 64px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-img {
    max-width: 420px;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .plan-card {
    max-width: 560px;
  }
}


/* ========================================
   GSAP — SUPORTE A ANIMAÇÕES
   will-change melhora performance do GPU
   clip-path requer display adequado nos títulos
   ======================================== */

/* Garante que títulos renderizem corretamente com clip-path */
.hero-title,
.section-title,
.about-title,
.about-subtitle,
.feedbacks-title,
.contact-title {
  will-change: transform, opacity;
  display: block;
}

/* Performance nas imagens animadas */
.section-img,
.hero-img,
.contact-img {
  will-change: transform, opacity;
}

/* Performance nos cards */
.benefit-card,
.plan-card,
.faq-item,
.services-card {
  will-change: transform, opacity;
}

/* Suaviza transição após animação GSAP terminar */
.gsap-anim-done {
  will-change: auto;
}
