/* ==========================================================================
   MEGA PACK MOLDES DE EVA — TEMA "SALA DE AULA MÁGICA"
   Estética Infantil Premium • Professoras & Artesãs
   ========================================================================== */

:root {
  /* Paleta Sala de Aula Mágica */
  --turquoise: #00B4D8;
  --turquoise-dark: #0096B4;
  --turquoise-soft: #E8F8FC;
  --turquoise-border: #B8E8F4;

  --coral: #FF6B6B;
  --coral-dark: #E85555;
  --coral-soft: #FFF0F0;
  --coral-border: #FFD0D0;

  --mustard: #FFB703;
  --mustard-dark: #E5A503;
  --mustard-soft: #FFF8E1;
  --mustard-border: #FFE082;

  --mint: #10B981;
  --mint-dark: #059669;
  --mint-soft: #E6FBF4;
  --mint-border: #A7F3D0;

  --green-bg-soft: #F0FDF4;
  --green-badge: #DCFCE7;
  --green-badge-text: #15803D;

  --navy: #1B2A4A;
  --navy-light: #2D3F5E;

  /* Fundos — Sincronizados com o Mockup #F9F1DC */
  --bg-page: #F9F1DC;
  --bg-card: #FFFFFF;
  --bg-alt: #FFF5EB;

  /* Texto */
  --text-title: #1B2A4A;
  --text-body: #3D4F6F;
  --text-muted: #7A8BA8;
  --text-light: #A0B0C8;

  /* CTA — Verde Suave Vibrante */
  --cta-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --cta-shadow: rgba(16, 185, 129, 0.35);

  --cta-green-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --cta-green-shadow: rgba(16, 185, 129, 0.35);

  /* Formas */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Sombras */
  --shadow-soft: 0 2px 12px rgba(27, 42, 74, 0.05);
  --shadow-card: 0 4px 20px rgba(27, 42, 74, 0.07);
  --shadow-elevated: 0 8px 32px rgba(27, 42, 74, 0.10);
  --shadow-cta: 0 6px 24px var(--cta-shadow);

  --max-mobile-width: 480px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #EBDDBF;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Barra de Escassez Fixa no Topo ===== */
.scarcity-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #E52222;
  color: #ffffff;
  padding: 8px 12px;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 12px rgba(229, 34, 34, 0.35);
  letter-spacing: 0.01em;
}

.scarcity-bar svg {
  color: #FFE600;
  flex-shrink: 0;
}

.scarcity-bar .scarcity-highlight {
  color: #FFE600;
  font-weight: 900;
}

.scarcity-bar .scarcity-date {
  font-weight: 800;
}

/* ===== Container Mobile ===== */
.page-wrapper {
  width: 100%;
  max-width: var(--max-mobile-width);
  margin: 0 auto;
  background-color: var(--bg-page);
  min-height: 100vh;
  box-shadow: 0 0 50px rgba(27, 42, 74, 0.08);
  position: relative;
  overflow-x: hidden;
}

/* ===== Tipografia ===== */
h1, h2, h3, h4 {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-title);
}

p {
  font-size: 0.94rem;
  color: var(--text-body);
}

.text-coral { color: var(--coral); }
.text-turquoise { color: var(--turquoise); }
.text-mustard { color: var(--mustard); }
.text-mint { color: var(--mint-dark); }

/* ===== Inline SVG Icons ===== */
.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-inline svg {
  display: block;
}

/* ===== Section Headers (reusable) ===== */
.section-header {
  text-align: center;
  margin-bottom: 22px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--turquoise-dark);
  background: var(--turquoise-soft);
  border: 1.5px solid var(--turquoise-border);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.section-tag.coral-tag {
  color: var(--coral-dark);
  background: var(--coral-soft);
  border-color: var(--coral-border);
}

.section-tag.mustard-tag {
  color: var(--mustard-dark);
  background: var(--mustard-soft);
  border-color: var(--mustard-border);
}

.section-tag.green-tag {
  color: var(--green-badge-text);
  background: var(--green-badge);
  border-color: #86EFAC;
}

.bonus-special-tag {
  font-size: 0.84rem;
  padding: 7px 18px;
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.15);
}

.section-title {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-title);
  line-height: 1.25;
}

.section-title.light {
  color: #ffffff;
}

.section-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ==========================================================================
   1. HERO SECTION (100% FUNDIDO COM O MOCKUP #F9F1DC)
   ========================================================================== */
.hero-section {
  padding: 24px 20px 0;
  background-color: #F9F1DC;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1.5px solid var(--turquoise-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
}

.hero-badge .icon-inline {
  color: var(--mustard);
}

.hero-badge span:last-child {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--turquoise-dark);
}

.hero-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--coral);
  position: relative;
  display: inline;
}

.hero-subtitle {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 16px;
  font-weight: 600;
  padding: 0 4px;
}

/* Hero Category Pills */
.hero-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  border: 1.5px solid;
  background: #ffffff;
}

.cat-pill.turquoise {
  color: var(--turquoise-dark);
  border-color: var(--turquoise-border);
}

.cat-pill.coral {
  color: var(--coral-dark);
  border-color: var(--coral-border);
}

.cat-pill.mustard {
  color: var(--mustard-dark);
  border-color: var(--mustard-border);
}

.cat-pill.mint {
  color: #0D9373;
  border-color: var(--mint-border);
}

.cat-pill .icon-inline svg {
  width: 13px;
  height: 13px;
}

/* Hero Mockup — Perfeita fusão sem bordas */
.hero-mockup {
  position: relative;
  margin: 0 -20px;
  background-color: #F9F1DC;
}

.hero-mockup img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #F9F1DC;
}

/* ==========================================================================
   CTA BUTTONS — VERDES ORIGINAIS PULSANTES
   ========================================================================== */
.cta-wrap {
  margin: 20px 0 6px;
  text-align: center;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: var(--cta-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 800;
  box-shadow: var(--shadow-cta);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  animation: pulse-cta 2.5s ease-in-out infinite;
  transition: filter 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.btn-cta-green {
  background: var(--cta-green-gradient);
  box-shadow: 0 6px 24px var(--cta-green-shadow);
  animation: pulse-cta 2.5s ease-in-out infinite;
}

.btn-cta:active {
  animation: none;
  transform: scale(0.97);
  filter: brightness(0.95);
}

/* Shine Sweep */
.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  animation: shine-sweep 4s infinite;
}

.btn-main {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Trust Indicators */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.trust-item .icon-inline {
  color: var(--turquoise);
}

/* ==========================================================================
   2. SEÇÃO DORES — COR DIFERENCIADA & CONTRASTE FRESCO
   ========================================================================== */
.section-dores {
  padding: 34px 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F9FC 100%);
  border-top: 2px solid #E2EEF5;
  border-bottom: 2px solid #E2EEF5;
}

.dores-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dor-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 4px 14px rgba(27, 42, 74, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dor-card:nth-child(1) { border-left: 5px solid var(--turquoise); }
.dor-card:nth-child(2) { border-left: 5px solid var(--coral); }
.dor-card:nth-child(3) { border-left: 5px solid var(--mustard); }

.dor-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dor-card:nth-child(1) .dor-icon {
  background: var(--turquoise-soft);
  color: var(--turquoise);
}
.dor-card:nth-child(2) .dor-icon {
  background: var(--coral-soft);
  color: var(--coral);
}
.dor-card:nth-child(3) .dor-icon {
  background: var(--mustard-soft);
  color: var(--mustard-dark);
}

.dor-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 3px;
  line-height: 1.3;
}

.dor-text p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   3. SEÇÃO BÔNUS — TEMÁTICA VERDE (REF. IMAGEM DO USUÁRIO)
   ========================================================================== */
.section-bonus {
  padding: 38px 20px 32px;
  background: linear-gradient(180deg, #F0FDF4 0%, #ECFDF5 50%, #F0FAF5 100%);
  border-top: 2px solid #DCFCE7;
  border-bottom: 2px solid #DCFCE7;
}

.bonus-head-title {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.bonus-head-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  max-width: 380px;
  margin: 0 auto 22px;
  line-height: 1.45;
}

.bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card estilo imagem de referência */
.bonus-card-preview {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid #E2E8F0;
  padding: 16px 16px 20px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.bonus-preview-img-wrap {
  background: #E8F8F0;
  border-radius: 14px;
  overflow: hidden;
  padding: 8px;
}

.bonus-preview-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.bonus-preview-title {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #065F46;
  margin: 16px 0 6px;
  line-height: 1.3;
}

.bonus-preview-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 16px;
  padding: 0 4px;
}

.bonus-preview-divider {
  border: none;
  border-top: 1px solid #F1F5F9;
  margin: 0 0 14px;
}

.bonus-preview-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.bonus-val-line {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bonus-val-strikethrough {
  text-decoration: line-through;
  color: #94A3B8;
  font-weight: 700;
}

.bonus-badge-today {
  display: inline-block;
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.84rem;
  font-weight: 900;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(21, 128, 61, 0.12);
}

/* ===== TEXTO AVULSO DOS 3 BÔNUS (SEM CONTAINER CORTADO) ===== */
.bonus-somam-container {
  text-align: center;
  margin-top: 28px;
  padding: 0 10px;
}

.bonus-somam-title {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #1B2A4A;
  line-height: 1.25;
}

.bonus-somam-title .highlight-red {
  color: #DC2626;
}

.bonus-somam-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: #334155;
  margin-top: 6px;
  line-height: 1.45;
}

.bonus-somam-sub .highlight-red {
  color: #DC2626;
}

.bonus-somente-hoje {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 900;
  color: #047857;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 18px;
}

.bonus-leva-text {
  font-size: 0.94rem;
  font-weight: 900;
  color: #064E3B;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 2px;
}

.bonus-zero-val {
  font-family: 'Fredoka', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #059669;
  line-height: 1.05;
  margin: 6px 0 2px;
}

.bonus-zero-sub {
  font-size: 0.84rem;
  font-weight: 900;
  color: #047857;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
   4. SEÇÃO DEPOIMENTOS — CARROSSEL PRINTS WHATSAPP DARK MODE
   ========================================================================== */
.section-depoimentos {
  padding: 36px 20px 30px;
  background: #ffffff;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  margin-top: 12px;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 16px;
  padding: 6px 0 10px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsapp-mock-frame {
  width: 100%;
  max-width: 360px;
  background: #0B141A;
  border-radius: 26px;
  border: 3px solid #1E2B33;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24), 0 4px 12px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.whatsapp-mock-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-caption {
  margin-top: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.caption-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-title);
}

.caption-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #15803D;
  background: #DCFCE7;
  padding: 3px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
  align-self: center;
}

/* Controles do Carrossel */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}

.carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1.5px solid #CBD5E1;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-btn:hover,
.carousel-btn:active {
  background: var(--mint-dark);
  color: #ffffff;
  border-color: var(--mint-dark);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.carousel-dot.active {
  width: 26px;
  border-radius: var(--radius-pill);
  background: var(--mint-dark);
}

/* ==========================================================================
   5. SEÇÃO OFERTA — BORDAS VERDES AO REDOR & ÍCONES COLORIDOS
   ========================================================================== */
.section-oferta {
  padding: 38px 20px;
  background: linear-gradient(180deg, #FFF8EC 0%, #FFF1F5 50%, #FFF9F0 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 2px solid #86EFAC;
  border-bottom: 2px solid #86EFAC;
}

.oferta-card {
  background: #ffffff;
  color: var(--text-body);
  border-radius: var(--radius-xl);
  padding: 26px 16px 22px;
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.15), 0 4px 12px rgba(27, 42, 74, 0.06);
  border: 2.5px solid #10B981;
  margin-top: 10px;
  position: relative;
}

.oferta-card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #ffffff;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.oferta-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 6px;
}

/* Grid de itens da oferta com divisores verdes */
.oferta-items-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
  border-top: 1.5px solid #DCFCE7;
  border-bottom: 1.5px solid #DCFCE7;
  padding: 16px 0;
  text-align: left;
}

.oferta-item-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FFFDF9;
  border: 1.5px solid #10B981;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

/* ÍCONES COM SUAS CORES COLORIDAS INDIVIDUAIS */
.oferta-item-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oferta-item-row:nth-child(1) .oferta-item-icon { background: var(--turquoise-soft); color: var(--turquoise-dark); }
.oferta-item-row:nth-child(2) .oferta-item-icon { background: var(--coral-soft); color: var(--coral-dark); }
.oferta-item-row:nth-child(3) .oferta-item-icon { background: var(--mustard-soft); color: var(--mustard-dark); }
.oferta-item-row:nth-child(4) .oferta-item-icon { background: #DCFCE7; color: #15803D; }
.oferta-item-row:nth-child(5) .oferta-item-icon { background: #F3E8FF; color: #7C3AED; }
.oferta-item-row:nth-child(6) .oferta-item-icon { background: #E0F2FE; color: #0284C7; }
.oferta-item-row:nth-child(7) .oferta-item-icon { background: #FEF3C7; color: #D97706; }

.oferta-item-text {
  flex: 1;
}

.oferta-item-title {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.25;
}

.oferta-item-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
}

/* Pricing */
.pricing-block {
  margin: 16px 0 14px;
  text-align: center;
}

.pricing-old {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 600;
}

.pricing-label {
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 2px;
}

.pricing-value {
  font-family: 'Fredoka', sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--mint-dark);
  line-height: 1.05;
  margin: 4px 0;
}

.pricing-currency {
  font-size: 1.4rem;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-installment {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
}

/* ==========================================================================
   6. SEÇÃO GARANTIA — DESIGN ÚNICO
   ========================================================================== */
.section-garantia {
  padding: 34px 20px;
  background: var(--bg-page);
}

.garantia-card {
  background: linear-gradient(135deg, #E6FBF4 0%, #E8F8FC 50%, #FFF9F0 100%);
  border: 2px solid var(--turquoise-border);
  border-left: 6px solid var(--turquoise);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}

.garantia-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  background: var(--turquoise-soft);
  border: 2px solid var(--turquoise-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquoise);
}

.garantia-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--turquoise-dark);
  margin-bottom: 8px;
}

.garantia-card > p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 18px;
}

/* ==========================================================================
   7. SEÇÃO FAQ
   ========================================================================== */
.section-faq {
  padding: 34px 20px;
  background: #ffffff;
}

.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-page);
  border: 1.5px solid #EDF2F7;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.active {
  border-color: var(--turquoise);
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.1);
}

.faq-trigger {
  width: 100%;
  padding: 15px 16px;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-title);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--turquoise-soft);
  color: var(--turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--turquoise);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  padding: 0 16px 16px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
  border-top: 1px solid #EDF2F7;
  padding-top: 12px;
}

/* ==========================================================================
   8. FECHAMENTO FINAL — CARD DE ALTA PERSUASÃO
   ========================================================================== */
.section-closing {
  padding: 34px 20px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%);
  text-align: center;
}

.closing-card {
  background: #ffffff;
  border: 2px solid var(--turquoise-border);
  border-radius: var(--radius-xl);
  padding: 24px 18px 20px;
  box-shadow: var(--shadow-card);
}

.closing-headline {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 6px;
  line-height: 1.3;
}

.closing-headline .text-coral {
  color: var(--coral);
}

.closing-sub {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 18px;
  line-height: 1.45;
  font-weight: 600;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.site-footer {
  padding: 22px 20px;
  background: var(--navy);
  color: #94A3B8;
  font-size: 0.72rem;
  text-align: center;
  line-height: 1.6;
}

.site-footer a {
  color: var(--turquoise-border);
  text-decoration: underline;
}

.footer-legal {
  margin-top: 8px;
  color: #64748B;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes pulse-cta {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 24px var(--cta-shadow);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 10px 36px rgba(16, 185, 129, 0.48);
  }
}

@keyframes shine-sweep {
  0% { left: -100%; }
  20% { left: 130%; }
  100% { left: 130%; }
}