/* ============================================
   DESIGN SYSTEM — Quartos de Bebê Landing Page
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #FDFBF7;
  --bg-sand: #F4F1EA;
  --bg-white: #FFFFFF;
  --color-sage: #8CA58A;
  --color-sage-dark: #6E8E6C;
  --color-sage-light: #A8C4A6;
  --color-terracotta: #D88C76;
  --color-terracotta-dark: #C07A64;
  --color-terracotta-light: #E8A896;
  --color-text: #2D3748;
  --color-text-light: #4A5568;
  --color-text-muted: #718096;
  --color-highlight: #F6E8C1;
  --color-gold: #D4A853;
  --color-gold-dark: #B8922E;
  --color-orange: #E8762D;
  --color-orange-dark: #D4651B;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 880px;
  --urgency-bar-height: 48px;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-glow-sage: 0 4px 24px rgba(140,165,138,0.35);
  --shadow-glow-terracotta: 0 4px 24px rgba(216,140,118,0.35);
  --shadow-glow-orange: 0 6px 28px rgba(232,118,45,0.35);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--urgency-bar-height);
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(140,165,138,0.1);
  border-radius: 100px;
}

.section-label .dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-sage);
}

.highlight {
  color: var(--color-sage-dark);
  font-weight: 600;
}

.highlight-terracotta {
  color: var(--color-terracotta);
  font-weight: 600;
}

/* ============================================
   BARRA DE URGÊNCIA (TOPO FIXO)
   ============================================ */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--urgency-bar-height);
  background: linear-gradient(90deg, #1a472a 0%, #2d6b3f 50%, #1a472a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  overflow: hidden;
}

.urgency-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: urgency-shimmer 4s infinite linear;
}

@keyframes urgency-shimmer {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.urgency-bar__icon {
  font-size: 1rem;
  animation: urgency-pulse 1s infinite alternate;
}

@keyframes urgency-pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}

.urgency-bar__text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.urgency-bar__text strong {
  color: #fff;
  font-weight: 700;
}

.urgency-bar__timer {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #FFD166;
  font-weight: 600;
}

.urgency-bar__timer strong {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 1px;
}

/* --- CTA Buttons --- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
  border: none;
  border-radius: var(--radius-md);
  padding: 18px 36px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow-sage);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(140,165,138,0.45);
}

.cta-button:hover::before { left: 100%; }
.cta-button:active { transform: translateY(-1px); }
.cta-button .arrow { font-size: 1.2rem; transition: transform var(--transition-base); }
.cta-button:hover .arrow { transform: translateX(4px); }

.cta-microcopy {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-microcopy .lock-icon { font-size: 0.85rem; }

@keyframes pulse-ring {
  0% { box-shadow: var(--shadow-glow-sage); }
  50% { box-shadow: 0 4px 32px rgba(140,165,138,0.55); }
  100% { box-shadow: var(--shadow-glow-sage); }
}

.cta-button--hero {
  font-size: 1.05rem;
  padding: 20px 40px;
  animation: pulse-ring 2.5s infinite ease-in-out;
}

.cta-button--hero:hover { animation: none; }

/* ============================================
   SEÇÃO 1: HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-image { width: 100%; height: 100%; object-fit: cover; filter: blur(3px) brightness(0.92); opacity: 0.25; }



.hero__content { position: relative; z-index: 1; text-align: center; max-width: 720px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(140,165,138,0.12); border: 1px solid rgba(140,165,138,0.2);
  border-radius: 100px; padding: 8px 20px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  color: var(--color-sage-dark); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px;
}

.hero__badge .icon { font-size: 1rem; }

.hero__headline {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 4.5vw, 2.75rem);
  font-weight: 700; line-height: 1.25; color: var(--color-text); margin-bottom: 28px;
}

.hero__headline .em { color: var(--color-sage-dark); position: relative; }
.hero__headline .em::after {
  content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 8px;
  background: rgba(140,165,138,0.2); border-radius: 4px; z-index: -1;
}

/* Hero Mockup */
.hero__mockup { margin: 0 auto 32px; max-width: 420px; }
.hero__mockup-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.hero__subheadline {
  font-family: var(--font-body); font-size: clamp(1rem, 2vw, 1.15rem); font-weight: 400;
  color: var(--color-text-light); line-height: 1.75; margin-bottom: 28px;
  max-width: 620px; margin-left: auto; margin-right: auto;
}

/* Hero Tags */
.hero__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; color: var(--color-text);
  background: var(--bg-white); border: 1px solid rgba(0,0,0,0.06); border-radius: 100px;
  padding: 8px 16px; transition: all var(--transition-base); box-shadow: var(--shadow-sm);
}
.hero__tag:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(140,165,138,0.3); }

.hero__cta-wrapper { display: flex; flex-direction: column; align-items: center; }

/* ============================================
   SEÇÃO: PARA QUEM É
   ============================================ */
.para-quem { padding: var(--section-padding); background-color: var(--bg-sand); }
.para-quem__header { text-align: center; margin-bottom: 48px; }
.para-quem__title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; line-height: 1.3; color: var(--color-text); max-width: 550px; margin: 0 auto; }
.para-quem__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.para-quem__card { background: var(--bg-white); border-radius: var(--radius-md); padding: 24px; display: flex; align-items: flex-start; gap: 16px; border: 1px solid rgba(0,0,0,0.04); transition: transform var(--transition-base), box-shadow var(--transition-base); }
.para-quem__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.para-quem__card-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(140,165,138,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.para-quem__card-content h4 { font-family: var(--font-heading); font-size: 0.92rem; font-weight: 600; color: var(--color-text); margin-bottom: 4px; }
.para-quem__card-content p { font-size: 0.85rem; color: var(--color-text-light); line-height: 1.55; }

/* ============================================
   SEÇÃO 2: PROBLEMA E EMPATIA
   ============================================ */
.problema { padding: var(--section-padding); background-color: var(--bg-primary); }
.problema__header { text-align: center; margin-bottom: 48px; }
.problema__title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; line-height: 1.3; color: var(--color-text); max-width: 600px; margin: 0 auto; }
.problema__content { display: flex; flex-direction: column; gap: 40px; }
.pain-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid rgba(0,0,0,0.05); transition: transform var(--transition-base), box-shadow var(--transition-base); }
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-card__icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.pain-card__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--color-text); margin-bottom: 8px; }
.pain-card__text { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; }

.problema__empathy { background: var(--bg-white); border-radius: var(--radius-lg); padding: 40px 36px; border-left: 4px solid var(--color-terracotta); box-shadow: var(--shadow-sm); }
.problema__empathy p { font-size: 1.05rem; color: var(--color-text-light); line-height: 1.8; margin-bottom: 20px; }
.problema__empathy p:last-child { margin-bottom: 0; }
.problema__empathy strong { color: var(--color-text); font-weight: 600; }

.expectativa-realidade { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.er-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.er-card__image { width: 100%; height: 200px; object-fit: cover; display: block; }
.er-card__label { position: absolute; top: 12px; left: 12px; padding: 6px 14px; border-radius: 100px; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.er-card--expectativa .er-card__label { background: rgba(140,165,138,0.9); color: white; }
.er-card--realidade .er-card__label { background: rgba(216,140,118,0.9); color: white; }

/* ============================================
   SEÇÃO 3: SOLUÇÃO / PRODUTO / BÔNUS
   ============================================ */
.solucao { padding: var(--section-padding); background-color: var(--bg-sand); }
.solucao__header { text-align: center; margin-bottom: 48px; }
.solucao__title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; line-height: 1.3; color: var(--color-text); }
.solucao__title .product-name { color: var(--color-sage-dark); }
.solucao__intro { text-align: center; font-size: 1.05rem; color: var(--color-text-light); line-height: 1.8; max-width: 640px; margin: 0 auto 48px; }

.product-showcase { display: flex; align-items: center; justify-content: center; margin-bottom: 56px; }
.product-mockup { position: relative; width: 100%; max-width: 560px; }
.product-mockup__image { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); display: block; }

.feature-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 56px; }
.feature-item { background: var(--bg-white); border-radius: var(--radius-md); padding: 24px 28px; display: flex; align-items: flex-start; gap: 18px; border: 1px solid rgba(0,0,0,0.04); transition: transform var(--transition-base), box-shadow var(--transition-base); }
.feature-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature-item__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; background: rgba(140,165,138,0.1); }
.feature-item__content h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: var(--color-text); margin-bottom: 4px; }
.feature-item__content p { font-size: 0.88rem; color: var(--color-text-light); line-height: 1.6; }

/* Carrossel */
.conteudo-section { margin-bottom: 56px; }
.conteudo-section__header { text-align: center; margin-bottom: 32px; }
.conteudo-section__title { font-family: var(--font-heading); font-size: clamp(1.3rem, 3vw, 1.6rem); font-weight: 700; color: var(--color-text); }

.carousel { position: relative; overflow: hidden; border-radius: var(--radius-xl); background: var(--bg-white); box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.04); }
.carousel__track { display: flex; transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; }
.carousel__slide { min-width: 100%; flex-shrink: 0; }
.carousel__image { width: 100%; height: 360px; object-fit: cover; display: block; }
.carousel__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: var(--radius-full); background: var(--bg-white); border: 1px solid rgba(0,0,0,0.08); box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--color-text); transition: all var(--transition-base); z-index: 2; }
.carousel__btn:hover { background: var(--color-sage); color: white; border-color: var(--color-sage); transform: translateY(-50%) scale(1.08); }
.carousel__btn--prev { left: 14px; }
.carousel__btn--next { right: 14px; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; padding: 18px 0; background: var(--bg-white); }
.carousel__dot { width: 10px; height: 10px; border-radius: var(--radius-full); background: rgba(140,165,138,0.25); border: none; cursor: pointer; transition: all var(--transition-base); padding: 0; }
.carousel__dot.active { background: var(--color-sage); width: 28px; border-radius: 100px; }
.carousel__dot:hover:not(.active) { background: rgba(140,165,138,0.5); }

/* Bônus */
.bonus-section { margin-top: 16px; }
.bonus-section__header { text-align: center; margin-bottom: 32px; }
.bonus-section__title { font-family: var(--font-heading); font-size: clamp(1.3rem, 3vw, 1.6rem); font-weight: 700; color: var(--color-text); margin-bottom: 12px; }
.bonus-section__subtitle { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.7; max-width: 580px; margin: 0 auto; }
.bonus-grid { display: flex; flex-direction: column; gap: 14px; }
.bonus-card { background: var(--bg-white); border-radius: var(--radius-md); padding: 22px 24px; display: flex; align-items: flex-start; gap: 16px; border: 1px solid rgba(0,0,0,0.04); transition: transform var(--transition-base), box-shadow var(--transition-base); position: relative; overflow: hidden; }
.bonus-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--color-sage); border-radius: 0 4px 4px 0; opacity: 0; transition: opacity var(--transition-base); }
.bonus-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.bonus-card:hover::before { opacity: 1; }
.bonus-card__badge { flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; background: linear-gradient(135deg, rgba(140,165,138,0.15), rgba(140,165,138,0.05)); }
.bonus-card__content h4 { font-family: var(--font-heading); font-size: 0.92rem; font-weight: 600; color: var(--color-text); margin-bottom: 4px; }
.bonus-card__content p { font-size: 0.85rem; color: var(--color-text-light); line-height: 1.5; }
.bonus-card__tag { position: absolute; top: 10px; right: 12px; font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--color-sage); background: rgba(140,165,138,0.1); padding: 3px 10px; border-radius: 100px; }

/* ============================================
   SEÇÃO: PROVAS SOCIAIS
   ============================================ */
.social-proof { padding: var(--section-padding); background-color: var(--bg-primary); }
.social-proof__header { text-align: center; margin-bottom: 48px; }
.social-proof__title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; line-height: 1.3; color: var(--color-text); }
.social-proof__subtitle { font-size: 0.95rem; color: var(--color-text-light); margin-top: 12px; }
.social-proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.social-proof__card { border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition-base), box-shadow var(--transition-base); box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.05); }
.social-proof__card:hover { transform: translateY(-4px) rotate(-0.5deg); box-shadow: var(--shadow-lg); }
.social-proof__card:nth-child(4) { grid-column: 1 / 2; }
.social-proof__card:nth-child(5) { grid-column: 2 / 3; }
.social-proof__image { width: 100%; height: auto; display: block; }

/* ============================================
   SEÇÃO 4: OFERTA / GARANTIA / FECHAMENTO
   ============================================ */
.oferta { padding: var(--section-padding); background-color: var(--bg-sand); }
.oferta__header { text-align: center; margin-bottom: 48px; }
.oferta__title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; line-height: 1.3; color: var(--color-text); }
.oferta__intro { text-align: center; font-size: 1.05rem; color: var(--color-text-light); line-height: 1.8; max-width: 600px; margin: 0 auto 40px; }

/* ============================================
   PRICING GRID (2 PLANOS SIDE BY SIDE)
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* --- CARD BÁSICO --- */
.pricing-card {
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: visible;
  transition: transform var(--transition-base);
}

.pricing-card--basic {
  background: var(--bg-white);
  border: 2px solid rgba(140,165,138,0.2);
  box-shadow: var(--shadow-md);
}

.pricing-card--basic:hover {
  transform: translateY(-4px);
}

.pricing-card__header {
  margin-bottom: 16px;
}

.pricing-card__plan-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
}

.pricing-card__plan-badge--basic {
  background: rgba(140,165,138,0.12);
  color: var(--color-sage-dark);
}

.pricing-card__plan-badge--premium {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  color: white;
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.pricing-card__title--premium {
  font-size: 1.1rem;
}

.pricing-card__title--premium strong {
  color: var(--color-orange);
}

.pricing-card__price-block {
  margin-bottom: 24px;
}

.pricing-card__old-price {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-sage-dark);
  line-height: 1.1;
}

.pricing-card__price--premium {
  font-size: 3rem;
  color: var(--color-orange);
}

.pricing-card__currency {
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-card__payment-type {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.pricing-card__installments {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.pricing-card__list {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__list li {
  font-size: 0.88rem;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing-card__check {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card__check--basic { color: var(--color-sage); }
.pricing-card__check--premium { color: var(--color-orange); }

/* CTA Buttons inside pricing cards */
.pricing-card__cta {
  display: block;
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  line-height: 1.3;
}

.pricing-card__cta--basic {
  background: var(--bg-white);
  color: var(--color-sage-dark);
  border: 2px solid var(--color-sage);
  box-shadow: 0 2px 8px rgba(140,165,138,0.15);
}

.pricing-card__cta--basic:hover {
  background: var(--color-sage);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-sage);
}

/* --- CARD PREMIUM (AGRESSIVO) --- */
.pricing-card--premium {
  background: var(--bg-white);
  border: 3px solid var(--color-orange);
  box-shadow:
    0 0 0 3px rgba(232,118,45,0.1),
    0 8px 40px rgba(232,118,45,0.2),
    0 20px 60px rgba(0,0,0,0.08);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-card--premium:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 0 4px rgba(232,118,45,0.15),
    0 12px 48px rgba(232,118,45,0.3),
    0 24px 64px rgba(0,0,0,0.1);
}

/* Ribbon "Mais Vendido" */
.pricing-card__ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.pricing-card__ribbon span {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-orange), #F59E3F);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(232,118,45,0.4);
  white-space: nowrap;
}

/* Bonus highlight bar inside premium */
.pricing-card__bonus-highlight {
  background: linear-gradient(135deg, rgba(232,118,45,0.08), rgba(232,118,45,0.04));
  border: 1px solid rgba(232,118,45,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
  text-align: center;
}

.pricing-card__bonus-highlight span {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-orange-dark);
}

.pricing-card__cta--premium {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  color: white;
  border: none;
  font-size: 1rem;
  padding: 18px 24px;
  box-shadow: var(--shadow-glow-orange);
  position: relative;
  overflow: hidden;
}

.pricing-card__cta--premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: premium-shimmer 2.5s infinite;
}

@keyframes premium-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.pricing-card__cta--premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(232,118,45,0.45);
}

/* Pulsing border on premium card */
@keyframes premium-glow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232,118,45,0.1), 0 8px 40px rgba(232,118,45,0.2), 0 20px 60px rgba(0,0,0,0.08); }
  50% { box-shadow: 0 0 0 5px rgba(232,118,45,0.2), 0 12px 48px rgba(232,118,45,0.35), 0 24px 64px rgba(0,0,0,0.1); }
}

.pricing-card--premium {
  animation: premium-glow 3s ease-in-out infinite;
}

.pricing-card--premium:hover {
  animation: none;
}

/* Guarantee Section */
.garantia { max-width: 560px; margin: 0 auto 56px; display: flex; align-items: flex-start; gap: 24px; background: var(--bg-white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-sm); }
.garantia__badge { flex-shrink: 0; width: 80px; height: 80px; border-radius: var(--radius-full); background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)); display: flex; align-items: center; justify-content: center; flex-direction: column; color: white; box-shadow: 0 4px 16px rgba(212,168,83,0.3); }
.garantia__badge-number { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.garantia__badge-text { font-family: var(--font-body); font-size: 0.55rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
.garantia__content h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--color-text); margin-bottom: 8px; }
.garantia__content p { font-size: 0.92rem; color: var(--color-text-light); line-height: 1.7; }

.fechamento { text-align: center; max-width: 560px; margin: 0 auto; }
.fechamento__text { font-family: var(--font-body); font-size: 1.1rem; color: var(--color-text-light); line-height: 1.8; margin-bottom: 32px; font-style: italic; }
.fechamento .cta-button { font-size: 1.05rem; padding: 20px 40px; }

/* ============================================
   SEÇÃO: EXPERT
   ============================================ */
.expert { padding: var(--section-padding); background-color: var(--bg-primary); }
.expert__card { display: flex; align-items: flex-start; gap: 32px; background: var(--bg-white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.04); }
.expert__photo-wrapper { flex-shrink: 0; }
.expert__photo-placeholder { width: 130px; height: 130px; border-radius: var(--radius-full); background: linear-gradient(145deg, var(--bg-sand), rgba(140,165,138,0.15)); display: flex; align-items: center; justify-content: center; font-size: 3rem; border: 3px solid rgba(140,165,138,0.2); box-shadow: var(--shadow-sm); }
.expert__content .section-label { margin-bottom: 12px; }
.expert__name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--color-text); margin-bottom: 16px; }
.expert__bio { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.7; margin-bottom: 12px; }
.expert__bio:last-child { margin-bottom: 0; }
.expert__bio strong { color: var(--color-text); }

/* ============================================
   SEÇÃO: FAQ
   ============================================ */
.faq { padding: var(--section-padding); background-color: var(--bg-sand); }
.faq__header { text-align: center; margin-bottom: 48px; }
.faq__title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; line-height: 1.3; color: var(--color-text); }
.faq__list { display: flex; flex-direction: column; gap: 12px; max-width: 640px; margin: 0 auto 48px; }
.faq__item { background: var(--bg-white); border-radius: var(--radius-md); border: 1px solid rgba(0,0,0,0.05); overflow: hidden; transition: box-shadow var(--transition-base); }
.faq__item:hover { box-shadow: var(--shadow-md); }
.faq__item.active { box-shadow: var(--shadow-md); border-color: rgba(140,165,138,0.25); }
.faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; background: none; border: none; cursor: pointer; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: var(--color-text); text-align: left; line-height: 1.4; transition: color var(--transition-base); }
.faq__question:hover { color: var(--color-sage-dark); }
.faq__icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: var(--radius-full); background: rgba(140,165,138,0.1); display: flex; align-items: center; justify-content: center; color: var(--color-sage); transition: all var(--transition-base); }
.faq__item.active .faq__icon { background: var(--color-sage); color: white; transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease; padding: 0 24px; }
.faq__item.active .faq__answer { max-height: 300px; padding: 0 24px 22px; }
.faq__answer p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.7; }
.faq__cta { text-align: center; }
.faq__cta-text { font-size: 1.05rem; color: var(--color-text-light); margin-bottom: 24px; line-height: 1.7; }
.faq__cta-text strong { color: var(--color-sage-dark); }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 40px 24px; background: var(--bg-primary); text-align: center; border-top: 1px solid rgba(0,0,0,0.05); }
.footer__text { font-size: 0.78rem; color: var(--color-text-muted); line-height: 1.6; max-width: 500px; margin: 0 auto; }
.footer__text a { color: var(--color-sage); text-decoration: underline; text-underline-offset: 2px; }
.footer__pix-notice { margin-top: 16px; font-size: 0.65rem; color: rgba(45, 55, 72, 0.5); line-height: 1.4; max-width: 500px; margin: 16px auto 0; font-family: var(--font-body); }

/* ============================================
   MODAL / UPSELL POP-UP
   ============================================ */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.65); backdrop-filter: blur(4px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg-white); width: 100%; max-width: 520px;
  border-radius: var(--radius-xl); padding: 40px 32px;
  position: relative; text-align: center; box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.95); transition: transform 0.3s ease;
  border-top: 6px solid var(--color-terracotta);
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute; top: 16px; right: 20px; font-size: 2rem;
  color: var(--color-text-muted); background: none; border: none; cursor: pointer;
  line-height: 1; transition: color 0.2s;
}
.modal__close:hover { color: var(--color-terracotta); }
.modal__badge {
  display: inline-block; background: rgba(216,140,118,0.15); color: var(--color-terracotta);
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; letter-spacing: 0.5px;
}
.modal__title {
  font-family: var(--font-heading); font-size: 1.55rem; font-weight: 700;
  color: var(--color-text); line-height: 1.35; margin-bottom: 16px;
}
.modal__text {
  font-size: 0.95rem; color: var(--color-text-light); line-height: 1.6; margin-bottom: 24px;
}
.modal__benefits {
  background: rgba(140,165,138,0.06); padding: 16px; border-radius: var(--radius-md);
  margin-bottom: 28px; border: 1px dashed rgba(140,165,138,0.3); text-align: left;
}
.modal__benefits ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.modal__benefits li { font-size: 0.9rem; color: var(--color-text); display: flex; align-items: flex-start; gap: 8px; }
.modal__benefits span { color: var(--color-sage-dark); font-weight: 700; }
.modal__cta { width: 100%; margin-bottom: 16px; background: linear-gradient(135deg, var(--color-terracotta) 0%, #C46D55 100%); box-shadow: 0 8px 24px rgba(216,140,118,0.3); font-size: 0.95rem; }
.modal__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(216,140,118,0.4); }
.modal__link-no {
  display: inline-block; font-size: 0.82rem; color: var(--color-text-muted);
  text-decoration: underline; text-underline-offset: 4px; transition: color 0.2s;
}
.modal__link-no:hover { color: var(--color-text); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE — 100% MOBILE-FIRST
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --urgency-bar-height: auto;
  }

  body {
    padding-top: 0;
  }

  .urgency-bar {
    position: relative;
    height: auto;
    padding: 10px 12px;
  }

  .urgency-bar__inner {
    flex-direction: column;
    gap: 4px;
  }

  .urgency-bar__text {
    font-size: 0.72rem;
    white-space: normal;
    text-align: center;
  }

  .urgency-bar__timer {
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    padding: 60px 20px 50px;
  }

  .hero__headline { font-size: 1.65rem; }
  .hero__subheadline { font-size: 0.95rem; }
  .hero__mockup-image { border-radius: var(--radius-lg); }
  .hero__tags { gap: 8px; }
  .hero__tag { font-size: 0.72rem; padding: 6px 12px; }

  .cta-button { padding: 16px 28px; font-size: 0.9rem; }
  .cta-button--hero { padding: 18px 28px; font-size: 0.92rem; }

  .para-quem__grid { grid-template-columns: 1fr; }
  .pain-cards { grid-template-columns: 1fr; }
  .problema__empathy { padding: 28px 24px; }
  .expectativa-realidade { grid-template-columns: 1fr; }
  .feature-item { padding: 20px; }
  .bonus-card { padding: 18px 20px; }

  .carousel__image { height: 260px; }
  .carousel__btn { width: 36px; height: 36px; }
  .carousel__btn--prev { left: 8px; }
  .carousel__btn--next { right: 8px; }

  /* Social Proof responsive */
  .social-proof__grid { grid-template-columns: repeat(2, 1fr); }
  .social-proof__card:nth-child(5) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }

  /* PRICING RESPONSIVE — stack vertically on mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 420px;
  }

  /* Premium card keeps natural order (basic first) */
  .pricing-card--premium {
    transform: scale(1);
  }

  .pricing-card--premium:hover {
    transform: scale(1.02);
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-card__price { font-size: 2.2rem; }
  .pricing-card__price--premium { font-size: 2.6rem; }
  .pricing-card__cta { font-size: 0.88rem; padding: 15px 16px; }
  .pricing-card__cta--premium { font-size: 0.95rem; padding: 16px 20px; }

  .garantia { flex-direction: column; align-items: center; text-align: center; padding: 28px 24px; }
  .garantia__badge { width: 70px; height: 70px; }
  .fechamento__text { font-size: 1rem; }

  .expert__card { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; }
  .expert__photo-placeholder { width: 110px; height: 110px; }

  .faq__question { font-size: 0.88rem; padding: 18px 20px; }
  .faq__answer { padding-left: 20px; padding-right: 20px; }
  .faq__item.active .faq__answer { padding: 0 20px 18px; }
}

/* Small phones */
@media (max-width: 480px) {
  .social-proof__grid { grid-template-columns: 1fr; }
  .social-proof__card:nth-child(5) { max-width: 100%; }

  .pricing-grid { max-width: 100%; }
}

@media (max-width: 420px) {
  .hero__headline { font-size: 1.45rem; }
  .cta-button--hero { padding: 16px 20px; font-size: 0.85rem; }
  .section-label { font-size: 0.68rem; }

  .pricing-card__title { font-size: 1rem; }
  .pricing-card__title--premium { font-size: 0.95rem; }
  .pricing-card__ribbon span { font-size: 0.62rem; padding: 6px 18px; }
}
