/* ==========================================================================
   NOITES TRANQUILAS - DESIGN SYSTEM & STYLES
   Paleta Suave, Acolhedora e de Alta Conversão
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Cores Principais (Tons Pastéis & Maternidade) */
  --primary-blue: #4A90E2;
  --primary-blue-light: #EBF5FB;
  --primary-blue-soft: #8ECAE6;
  --primary-blue-dark: #2B6CB0;
  
  --pastel-rose: #FDE2E4;
  --pastel-rose-dark: #D47B88;
  --pastel-blush: #FFF0F3;
  --pastel-lavender: #E8E8F8;
  --pastel-purple: #7B61FF;
  
  --accent-gold: #E78F5D;
  --accent-gold-light: #FFF3E6;
  --accent-yellow: #FFD166;
  
  --success-teal: #2A9D8F;
  --success-teal-light: #E8F8F5;
  --pix-teal: #32BCAD;
  
  /* Cores Neutras & Fundos */
  --bg-cream: #FAF9F6;
  --bg-white: #FFFFFF;
  --bg-soft-gradient: linear-gradient(180deg, #F0F7FA 0%, #FAF9F6 50%, #FFF5F7 100%);
  
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  /* Sombras & Bordas */
  --border-light: rgba(142, 202, 230, 0.25);
  --border-soft: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(74, 144, 226, 0.08);
  --shadow-md: 0 8px 24px rgba(74, 144, 226, 0.12);
  --shadow-lg: 0 16px 36px rgba(74, 144, 226, 0.16);
  --shadow-glow: 0 0 25px rgba(231, 143, 93, 0.35);
  
  /* Tipografia */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transições & Raios */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES GERAIS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   BARRA DE URGÊNCIA SUPERIOR & HEADER
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #E78F5D 0%, #F4A261 50%, #E76F51 100%);
  color: #FFFFFF;
  padding: 10px 15px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(231, 111, 81, 0.2);
}

.announcement-bar .countdown-timer {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.18);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-left: 8px;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: 1px;
}

header.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  position: relative;
  z-index: 900;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-blue-dark);
}

.logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #8ECAE6 0%, #4A90E2 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: 0 4px 10px rgba(74, 144, 226, 0.25);
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--success-teal-light);
  color: var(--success-teal);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.header-badge span.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success-teal);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(42, 157, 143, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(42, 157, 143, 0); }
}

/* ==========================================================================
   HERO SECTION (SEÇÃO PRINCIPAL)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  background: radial-gradient(circle at 10% 20%, rgba(142, 202, 230, 0.25) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(253, 226, 228, 0.4) 0%, transparent 45%),
              var(--bg-cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #EBF5FB 0%, #FFF0F3 100%);
  border: 1px solid rgba(74, 144, 226, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title .highlight-blue {
  color: var(--primary-blue);
  background: linear-gradient(120deg, rgba(142, 202, 230, 0.3) 0%, rgba(142, 202, 230, 0) 100%);
  background-repeat: no-repeat;
  background-size: 100% 35%;
  background-position: 0 88%;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
}

.hero-bullets li .check-icon {
  width: 22px;
  height: 22px;
  background: var(--success-teal-light);
  color: var(--success-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ==========================================================================
   BOTÕES DE CALL TO ACTION (CTA) COM ÍCONE DE LUA CRESCENTE
   ========================================================================== */
.cta-button-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
}

.btn-primary-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E78F5D 0%, #E76F51 100%);
  color: #FFFFFF;
  padding: 18px 30px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.22rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(231, 111, 81, 0.35);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
}

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

.btn-primary-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(231, 111, 81, 0.45);
  color: #FFFFFF;
}

.btn-primary-cta:hover::before {
  left: 100%;
}

.btn-main-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.2;
}

.btn-moon-icon {
  width: 22px;
  height: 22px;
  color: #FFF3E6;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.btn-primary-cta:hover .btn-moon-icon {
  transform: rotate(-15deg) scale(1.1);
}

.btn-subtext {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: none;
  opacity: 0.92;
  margin-top: 4px;
}

.cta-trust-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cta-trust-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* HERO VISUAL & CARDS */
.hero-visual-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #FFFFFF;
  background: #FFF;
}

.hero-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

/* Floating Badges no Hero */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.floating-badge.badge-top {
  top: -20px;
  left: -20px;
}

.floating-badge.badge-bottom {
  bottom: -25px;
  right: -15px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--pastel-rose);
  color: var(--pastel-rose-dark);
}

.floating-badge.badge-bottom .badge-icon {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.floating-badge-text .title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.floating-badge-text .subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SEÇÃO DE DOR (IDENTIFICAÇÃO REAL)
   ========================================================================== */
.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-badge {
  display: inline-block;
  background: var(--pastel-rose);
  color: var(--pastel-rose-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-badge.badge-blue {
  background: var(--primary-blue-light);
  color: var(--primary-blue-dark);
}

.section-badge.badge-teal {
  background: var(--success-teal-light);
  color: var(--success-teal);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.pain-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  gap: 18px;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pastel-rose-dark);
}

.pain-icon {
  width: 48px;
  height: 48px;
  background: var(--pastel-rose);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pain-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   SEÇÃO DE AGITAÇÃO (O CUSTO DA PRIVAÇÃO)
   ========================================================================== */
.agitation-section {
  background: linear-gradient(180deg, #FFF0F3 0%, #FAF9F6 100%);
  position: relative;
}

.agitation-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 123, 136, 0.2);
  margin-top: 20px;
}

.agitation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.agitation-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.agitation-item:last-child {
  margin-bottom: 0;
}

.agitation-bullet-icon {
  width: 32px;
  height: 32px;
  background: #FFE5E8;
  color: #D47B88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  font-weight: bold;
}

.agitation-text h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #9E2A2B;
  margin-bottom: 4px;
}

.agitation-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.agitation-callout {
  background: linear-gradient(135deg, #EBF5FB 0%, #E0F2F1 100%);
  border-left: 5px solid var(--primary-blue);
  padding: 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.agitation-callout h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-blue-dark);
  font-weight: 800;
  margin-bottom: 10px;
}

.agitation-callout p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO DA SOLUÇÃO (OS 4 PILARES DO MÉTODO)
   ========================================================================== */
.solution-section {
  background: var(--bg-cream);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pillar-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.pillar-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(74, 144, 226, 0.12);
  line-height: 1;
}

.pillar-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #EBF5FB 0%, #D0E8F2 100%);
  color: var(--primary-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pillar-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   WIDGET INTERATIVO: CALCULADORA DE JANELAS DE SONO
   ========================================================================== */
.interactive-section {
  background: linear-gradient(135deg, #EBF5FB 0%, #FFF0F3 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin: 60px 0;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.age-selector-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.age-btn {
  background: #FFFFFF;
  border: 2px solid var(--border-soft);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
}

.age-btn:hover {
  border-color: var(--primary-blue-soft);
  background: #F8FCFE;
}

.age-btn.active {
  border-color: var(--primary-blue);
  background: var(--primary-blue-light);
  color: var(--primary-blue-dark);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.calc-result-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
}

.calc-result-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}

.calc-result-header h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-blue-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.stat-box {
  background: var(--bg-cream);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
}

.stat-box .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.stat-box .value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.calc-tip-box {
  background: var(--accent-gold-light);
  border-left: 4px solid var(--accent-gold);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: #7D4822;
  line-height: 1.5;
}

/* ==========================================================================
   MINI PLAYER DE RUÍDO BRANCO & SONS CALMANTES (INTERATIVO)
   ========================================================================== */
.sound-player-widget {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-top: 30px;
}

.sound-player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sound-player-header h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  color: var(--text-dark);
}

.sound-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sound-btn {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-cream);
  border: 1px solid var(--border-soft);
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.sound-btn:hover {
  background: var(--primary-blue-light);
  border-color: var(--primary-blue-soft);
}

.sound-btn.playing {
  background: linear-gradient(135deg, #4A90E2 0%, #2B6CB0 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
  animation: pulse-sound 1.5s infinite alternate;
}

@keyframes pulse-sound {
  0% { transform: scale(0.98); }
  100% { transform: scale(1.02); }
}

/* ==========================================================================
   SEÇÃO O QUE ESTÁ INCLUSO & BÔNUS (MODERN FLAT ICONS)
   ========================================================================== */
.modules-section {
  background: #FFFFFF;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.module-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--border-soft);
  position: relative;
  transition: all var(--transition-normal);
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue-soft);
  box-shadow: var(--shadow-md);
}

.module-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.module-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.module-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* BÔNUS EXCLUSIVOS */
.bonuses-wrapper {
  background: linear-gradient(135deg, #FFF9F5 0%, #FFF0F3 100%);
  border: 2px dashed var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  position: relative;
}

.bonus-badge-top {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(231, 143, 93, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.bonus-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(231, 143, 93, 0.2);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* CONTAINER DOS ÍCONES FLAT DOS BÔNUS */
.bonus-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.bonus-card:hover .bonus-icon-badge {
  transform: scale(1.08) rotate(3deg);
}

.bonus-icon-badge.badge-nutrition {
  background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
  color: #2A9D8F;
}

.bonus-icon-badge.badge-planner {
  background: linear-gradient(135deg, #EBF5FB 0%, #D0E8F2 100%);
  color: #4A90E2;
}

.bonus-icon-badge.badge-audio {
  background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
  color: #7B61FF;
}

.bonus-icon-badge.badge-sos {
  background: linear-gradient(135deg, #FFF3E6 0%, #FFE0CC 100%);
  color: #E78F5D;
}

.bonus-icon-badge svg {
  width: 26px;
  height: 26px;
}

.bonus-value-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: #94A3B8;
  text-decoration: line-through;
}

.bonus-free-tag {
  background: var(--success-teal-light);
  color: var(--success-teal);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

.bonus-card h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.bonus-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SEÇÃO DE DEPOIMENTOS & PROVA SOCIAL
   ========================================================================== */
.testimonials-section {
  background: var(--bg-soft-gradient);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--pastel-rose-dark);
}

.testimonial-stars {
  color: #FFB703;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pastel-rose);
}

.author-info h5 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SEÇÃO DE PREÇO & OFERTA ANCORADA (HIGH CONVERSION BOX)
   ========================================================================== */
.pricing-section {
  background: radial-gradient(circle at 50% 10%, rgba(142, 202, 230, 0.3) 0%, transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(253, 226, 228, 0.4) 0%, transparent 60%),
              #FAF9F6;
  position: relative;
}

.pricing-card-wrapper {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary-blue-soft);
  box-shadow: 0 20px 50px rgba(74, 144, 226, 0.18);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pricing-ribbon {
  background: linear-gradient(90deg, #E78F5D 0%, #E76F51 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 8px 30px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-product-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.pricing-product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

.price-box {
  background: var(--primary-blue-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 30px;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.original-price {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.current-price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--primary-blue-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-installments {
  font-size: 0.92rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-top: 6px;
}

.pricing-features-list {
  list-style: none;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #334155;
}

.pricing-features-list li .check {
  color: var(--success-teal);
  font-weight: 900;
  font-size: 1.1rem;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1px solid var(--border-soft);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.payment-badge:hover {
  border-color: var(--primary-blue-soft);
  background: #FFFFFF;
}

.payment-badge-pix {
  background: #E8F8F5;
  border-color: rgba(50, 188, 173, 0.35);
  color: #0E6259;
}

.payment-badge-pix:hover {
  border-color: var(--pix-teal);
}

.pix-logo-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   SEÇÃO DE GARANTIA BLINDADA (7 DIAS)
   ========================================================================== */
.guarantee-section {
  background: #FFFFFF;
}

.guarantee-card {
  background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
  border: 2px solid #BBF7D0;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 35px;
  box-shadow: var(--shadow-sm);
}

.guarantee-badge-icon {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #FFD166 0%, #F4A261 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(244, 162, 97, 0.35);
  flex-shrink: 0;
  text-align: center;
}

.guarantee-badge-icon .days {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.guarantee-badge-icon .text {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guarantee-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #166534;
  margin-bottom: 10px;
}

.guarantee-content p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO DE FAQ (PERGUNTAS FREQUENTES INTERATIVAS)
   ========================================================================== */
.faq-section {
  background: var(--bg-cream);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-blue-soft);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  background: #FFFFFF;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--primary-blue-light);
}

.faq-icon-arrow {
  width: 28px;
  height: 28px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--primary-blue);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  background: var(--primary-blue);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 26px;
  background: #FFFFFF;
}

.faq-item.active .faq-answer {
  padding: 0 26px 22px 26px;
  max-height: 300px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
footer.site-footer {
  background: #1E293B;
  color: #94A3B8;
  padding: 60px 0 100px;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.6;
}

/* ==========================================================================
   STICKY BARRA FIXA MOBILE & SOCIAL PROOF TOAST
   ========================================================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 999;
  align-items: center;
  justify-content: space-between;
}

.sticky-mobile-price .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.sticky-mobile-price .price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--primary-blue-dark);
}

.sticky-mobile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #E78F5D 0%, #E76F51 100%);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.35);
  text-transform: uppercase;
}

.sticky-mobile-btn .btn-moon-icon {
  width: 16px;
  height: 16px;
}

/* Toast de Prova Social */
.social-proof-toast {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
  max-width: 320px;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.social-proof-toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--success-teal);
}

.toast-info h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.toast-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-tag {
    margin: 0 auto 20px;
  }
  
  .hero-bullets {
    align-items: center;
  }
  
  .cta-button-container {
    margin: 0 auto;
  }
  
  .calculator-wrapper {
    grid-template-columns: 1fr;
  }
  
  .agitation-grid {
    grid-template-columns: 1fr;
  }
  
  .guarantee-card {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .pricing-card {
    padding: 35px 20px;
  }
  
  .price-value {
    font-size: 3rem;
  }
  
  .interactive-section {
    padding: 30px 20px;
  }
  
  .bonuses-wrapper {
    padding: 35px 20px;
  }
  
  .sticky-mobile-cta {
    display: flex;
  }
  
  .social-proof-toast {
    bottom: 80px;
    left: 15px;
    right: 15px;
    max-width: calc(100% - 30px);
  }
}
