/* ==========================================================================
   KIT PATRONES DULCE BEBÉ - ESTILOS PROFESIONALES DE ALTA CONVERSIÓN
   ========================================================================== */

:root {
  /* Paleta de Cores Primária e Secundária */
  --bg-primary: #FFF8FA;
  --bg-secondary: #FFF0F4;
  --bg-card: #FFFFFF;
  --bg-subtle: #FDF4F6;
  
  --primary: #D86B80;
  --primary-dark: #B94B62;
  --primary-light: #FDE8ED;
  --accent-gold: #D4A359;
  --accent-gold-light: #FFF9EE;
  --accent-cream: #FAF5EE;
  
  /* Cores de Conversão (CTA Verde Vibrante Obrigatório) */
  --cta-green: #25D366;
  --cta-green-hover: #1EBE5D;
  --cta-green-dark: #128C44;
  --cta-shadow: rgba(37, 211, 102, 0.42);
  
  /* Tipografia e Cores de Texto */
  --text-main: #241D20;
  --text-muted: #5A5A5A;
  --text-light: #8E8E8E;
  --text-white: #FFFFFF;
  
  /* Cores Hotmart */
  --hotmart-orange: #F04E23;
  --hotmart-bg: #FFF5F2;
  
  /* Cores Plugin Facebook */
  --fb-blue: #1877F2;
  --fb-bg-bubble: #F0F2F5;
  --fb-text-dark: #050505;
  --fb-text-secondary: #65676B;
  --fb-border: #E4E6EB;
  
  /* Bordas e Sombras em Camadas */
  --border-delicate: rgba(216, 107, 128, 0.22);
  --border-light: #F2DCE1;
  --shadow-sm: 0 4px 14px rgba(185, 75, 98, 0.08);
  --shadow-md: 0 10px 30px rgba(185, 75, 98, 0.12);
  --shadow-lg: 0 20px 48px rgba(185, 75, 98, 0.16);
  --shadow-cta: 0 14px 32px rgba(37, 211, 102, 0.45);
  
  /* Fontes */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-fb: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  /* Raios e Espaçamentos */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 999px;
  
  --container-width: 1140px;
}

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

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

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

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

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

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

/* ==========================================================================
   BARRA DE URGÊNCIA SUPERIOR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #D86B80 0%, #B94B62 50%, #D86B80 100%);
  background-size: 200% auto;
  animation: gradientShift 6s ease infinite;
  color: var(--text-white);
  padding: 11px 15px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ==========================================================================
   ELEMENTOS DE CONVERSÃO: BOTÃO CTA VERDE VIBRANTE (#25D366)
   ========================================================================== */
.btn-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2EEB73 0%, var(--cta-green) 50%, var(--cta-green-hover) 100%);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.5vw, 1.32rem);
  padding: 20px 38px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: rotate(30deg);
  animation: shine 3.2s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  35%, 100% { transform: translateX(100%) rotate(30deg); }
}

.btn-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.6);
  background: linear-gradient(180deg, #38F07C 0%, #25D366 100%);
}

.btn-cta:active {
  transform: translateY(1px) scale(0.99);
}

.btn-cta-sub {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: none;
  opacity: 0.96;
  margin-top: 4px;
  letter-spacing: normal;
}

.pulse-animation {
  animation: pulse-glow 2.2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.security-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 14px;
  flex-wrap: wrap;
}

.security-trust-note svg {
  color: var(--cta-green-dark);
}

/* ==========================================================================
   HERO SECTION (DOBRA 1)
   ========================================================================== */
.hero-section {
  padding: 48px 0 70px;
  background: radial-gradient(circle at top right, #FFF0F4 0%, #FFF8FA 70%);
  position: relative;
}

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

.hero-badge-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid var(--border-delicate);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #7A4B56;
}

.stars-icon {
  color: #FFB800;
  letter-spacing: 2px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  line-height: 1.22;
  color: #241D20;
  margin-bottom: 20px;
  font-weight: 800;
}

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

.hero-title span.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 9px;
  background: rgba(216, 107, 128, 0.25);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #4E4E4E;
  margin-bottom: 25px;
  line-height: 1.7;
}

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

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #333333;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: #E5F9EE;
  color: var(--cta-green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 900;
}

/* Mockup Tangível na Hero */
.hero-mockup-wrapper {
  position: relative;
}

.hero-mockup-card {
  position: relative;
  background: var(--bg-card);
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(216, 107, 128, 0.2);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.5s ease;
}

.hero-mockup-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-mockup-card img {
  border-radius: calc(var(--radius-lg) - 6px);
  width: 100%;
}

.floating-badge {
  position: absolute;
  background: #FFFFFF;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #2D2D2D;
  border: 1px solid var(--border-delicate);
  z-index: 5;
  animation: float 4s ease-in-out infinite;
}

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

.badge-bottom-right {
  bottom: -20px;
  right: -15px;
  animation-delay: 2s;
  background: linear-gradient(135deg, #FFFDF8 0%, #FFF3E6 100%);
  border-color: #F8DFC0;
}

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

/* ==========================================================================
   SEÇÃO 2: CONEXÃO E PROBLEMA (EMPATIA)
   ========================================================================== */
.problem-section {
  padding: 75px 0;
  background: #FFFFFF;
  position: relative;
}

.problem-box {
  max-width: 840px;
  margin: 0 auto;
  background: var(--bg-primary);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-lg);
  padding: 48px 45px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 38px;
}

.section-tag {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1.8px;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.35rem);
  color: #241D20;
  font-weight: 700;
  line-height: 1.3;
}

.problem-paragraphs {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.12rem;
  color: #444444;
  line-height: 1.8;
}

.problem-highlight {
  background: #FFF0F3;
  border-left: 4px solid var(--primary);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 500;
}

/* ==========================================================================
   SEÇÃO 3: APRESENTAÇÃO DA SOLUÇÃO (OS 3 MODELOS)
   ========================================================================== */
.solution-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 45px;
}

.model-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-delicate);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

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

.model-img-wrapper {
  position: relative;
  overflow: hidden;
  background: #FDF1F4;
  height: 320px;
}

.model-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.model-card:hover .model-img-wrapper img {
  transform: scale(1.07);
}

.model-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  padding: 6px 15px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.model-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.model-title {
  font-family: var(--font-heading);
  font-size: 1.38rem;
  color: #241D20;
  margin-bottom: 12px;
  font-weight: 700;
}

.model-desc {
  font-size: 0.96rem;
  color: #555555;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.model-features {
  list-style: none;
  font-size: 0.88rem;
  color: #3E3E3E;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-light);
}

.model-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   SEÇÃO 4: BENEFÍCIOS (GRID DE VALOR)
   ========================================================================== */
.benefits-section {
  padding: 85px 0;
  background: #FFFFFF;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 45px;
}

.benefit-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: #FFFFFF;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.benefit-icon {
  width: 58px;
  height: 58px;
  background: #FFFFFF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--primary);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-delicate);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  color: #241D20;
  margin-bottom: 10px;
  font-weight: 700;
}

.benefit-text {
  font-size: 0.96rem;
  color: #555555;
  line-height: 1.65;
}

/* ==========================================================================
   SEÇÃO DE PROVA SOCIAL: PLUGIN IDÊNTICO AO FACEBOOK COMMENTS
   ========================================================================== */
.fb-comments-section {
  padding: 85px 0;
  background: #F0F2F5;
}

.fb-comments-container {
  max-width: 820px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 30px 30px 38px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  font-family: var(--font-fb);
}

.fb-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--fb-border);
  margin-bottom: 22px;
}

.fb-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fb-logo-icon {
  width: 30px;
  height: 30px;
  fill: var(--fb-blue);
}

.fb-header-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fb-text-dark);
}

.fb-header-count {
  font-size: 0.92rem;
  color: var(--fb-text-secondary);
  font-weight: 500;
}

.fb-sort-selector {
  font-size: 0.88rem;
  color: var(--fb-text-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

/* Caixa Fake de Novo Comentário */
.fb-input-box {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.fb-avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #E4E6EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8D949E;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.fb-fake-input {
  flex-grow: 1;
  background: var(--fb-bg-bubble);
  border-radius: 20px;
  padding: 11px 18px;
  font-size: 0.92rem;
  color: #8D949E;
  border: 1px solid transparent;
  cursor: text;
}

/* Lista de Comentários */
.fb-comments-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.fb-comment-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fb-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
}

.fb-comment-content {
  flex-grow: 1;
  max-width: 100%;
}

.fb-bubble {
  background: var(--fb-bg-bubble);
  border-radius: 18px;
  padding: 13px 18px;
  display: inline-block;
  max-width: 100%;
  position: relative;
}

.fb-user-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fb-text-dark);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.fb-user-name:hover {
  text-decoration: underline;
}

.fb-verified-badge {
  color: var(--fb-blue);
  font-size: 0.85rem;
}

.fb-user-location {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fb-text-secondary);
}

.fb-comment-text {
  font-size: 0.93rem;
  color: var(--fb-text-dark);
  line-height: 1.48;
  margin-top: 4px;
}

/* Reação Flutuante no Balão */
.fb-bubble-reaction {
  position: absolute;
  bottom: -9px;
  right: 12px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2px 7px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fb-text-secondary);
  border: 1px solid #ECEFF2;
}

.reaction-icons {
  display: flex;
  align-items: center;
}

.reaction-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
}

.reaction-like {
  background: var(--fb-blue);
  color: white;
}

.reaction-love {
  background: #FA3E3E;
  color: white;
  margin-left: -4px;
}

/* Ações do Comentário */
.fb-comment-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 7px;
  margin-left: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fb-text-secondary);
}

.fb-action-link {
  color: var(--fb-text-secondary);
  cursor: pointer;
}

.fb-action-link:hover {
  text-decoration: underline;
}

.fb-time {
  font-weight: 400;
  color: #8A8D91;
}

/* Anexo de Foto no Comentário */
.fb-attached-image {
  margin-top: 10px;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--fb-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.fb-attached-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Respostas Aninhadas */
.fb-replies-container {
  margin-top: 14px;
  margin-left: 48px;
  border-left: 2px solid #E4E6EB;
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fb-more-comments-btn {
  width: 100%;
  background: none;
  border: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--fb-blue);
  padding: 18px 0 5px;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-fb);
}

.fb-more-comments-btn:hover {
  text-decoration: underline;
}

/* ==========================================================================
   SEÇÃO 5: ANCORAGEM DE PREÇO E OFERTA (HOTMART)
   ========================================================================== */
.offer-section {
  padding: 95px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-secondary) 100%);
  position: relative;
}

.offer-card-wrapper {
  max-width: 790px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 2px solid #F0C4CE;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.offer-ribbon {
  background: linear-gradient(90deg, #E65C78 0%, #C43B58 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.offer-body {
  padding: 42px 36px;
  text-align: center;
}

/* Barra de Escassez e Vagas */
.scarcity-bar-box {
  background: #FFF4E5;
  border: 1px solid #FFE2B8;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scarcity-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  color: #8C4E00;
}

.scarcity-track {
  width: 100%;
  height: 10px;
  background: #FFE3BD;
  border-radius: 6px;
  overflow: hidden;
}

.scarcity-fill {
  width: 88%;
  height: 100%;
  background: linear-gradient(90deg, #FF9800 0%, #E65100 100%);
  border-radius: 6px;
  animation: pulse-fill 3s ease infinite alternate;
}

@keyframes pulse-fill {
  0% { opacity: 0.9; }
  100% { opacity: 1; }
}

.value-stack-list {
  list-style: none;
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  background: #FFF9FA;
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px dashed #F2C7D1;
}

.value-stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.02rem;
  color: #333333;
}

.value-stack-item .item-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-stack-item .item-val {
  font-weight: 600;
  color: #888888;
  text-decoration: line-through;
}

.value-total-box {
  border-top: 2px solid #EAD2D8;
  padding-top: 15px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: #241D20;
}

.price-container {
  margin: 30px 0 25px;
}

.price-intro {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-crossed {
  font-size: 1.4rem;
  color: #999999;
  text-decoration: line-through;
  margin: 6px 0;
}

.price-main {
  font-size: 3.8rem;
  font-weight: 900;
  color: #241D20;
  line-height: 1;
  font-family: var(--font-body);
}

.price-main span.currency {
  font-size: 2.1rem;
  vertical-align: super;
  font-weight: 700;
}

.price-main span.badge-mxn {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 1px;
}

.price-details {
  font-size: 0.95rem;
  color: #666666;
  margin-top: 8px;
  font-weight: 500;
}

.hotmart-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hotmart-bg);
  border: 1px solid #FFD8CE;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #D3360E;
}

/* ==========================================================================
   SEÇÃO 7: GARANTIA (SELO OFICIAL DE 7 DIAS FORNECIDO PELO USUÁRIO)
   ========================================================================== */
.guarantee-section {
  padding: 85px 0;
  background: #FFFFFF;
}

.guarantee-box {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #FFFDF8 0%, #FFF4F7 100%);
  border-radius: var(--radius-lg);
  padding: 45px;
  border: 2px solid #F5D6DF;
  box-shadow: 0 12px 35px rgba(216, 107, 128, 0.12);
  position: relative;
}

/* Imagem do Selo de Garantia Real em Destaque */
.guarantee-seal-img-box {
  width: 175px;
  height: 175px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 12px 24px rgba(212, 163, 89, 0.38));
  transition: transform 0.4s ease;
}

.guarantee-seal-img-box:hover {
  transform: scale(1.06) rotate(2deg);
}

.guarantee-seal-img-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.guarantee-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.6vw, 1.9rem);
  color: #241D20;
  margin-bottom: 14px;
  font-weight: 700;
}

.guarantee-content p {
  font-size: 1.02rem;
  color: #4A4A4A;
  line-height: 1.75;
}

.guarantee-content strong {
  color: #241D20;
}

/* ==========================================================================
   SEÇÃO 8: FAQ (ACORDEÓN INTERATIVO MODERNO E SUAVE)
   ========================================================================== */
.faq-section {
  padding: 85px 0;
  background: var(--bg-primary);
}

.faq-wrapper {
  max-width: 780px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1.5px solid #F0D9E0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(216, 107, 128, 0.04);
}

.faq-item:hover {
  border-color: #E2A7B6;
  box-shadow: 0 6px 20px rgba(216, 107, 128, 0.08);
}

.faq-item.active {
  border-color: #D86B80;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(216, 107, 128, 0.12);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: #241D20;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.25s ease;
}

.faq-item.active .faq-question {
  color: #B94B62;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF0F4;
  color: #D86B80;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #F5D6DF;
}

.faq-toggle-icon svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.faq-item.active .faq-toggle-icon {
  background: #D86B80;
  color: #FFFFFF;
  border-color: #D86B80;
}

.faq-item.active .faq-toggle-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 24px;
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer-inner {
  padding: 0 24px 22px 24px;
  border-top: 1px solid #FAF0F3;
  padding-top: 14px;
}

.faq-answer p {
  font-size: 0.96rem;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   SEÇÃO 9: CTA FINAL & RESUMO DA OFERTA
   ========================================================================== */
.final-cta-section {
  padding: 95px 0 75px;
  background: radial-gradient(circle at center, #FFF0F4 0%, #FCE8EE 100%);
  text-align: center;
  position: relative;
}

.final-cta-box {
  max-width: 840px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 55px 42px;
  box-shadow: var(--shadow-lg);
  border: 2px solid #F0C4CE;
}

.recap-checklist {
  list-style: none;
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: var(--bg-primary);
  padding: 26px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-delicate);
}

.recap-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333333;
}

.recap-checklist .recap-icon {
  color: var(--cta-green-dark);
  font-size: 1.25rem;
}

.final-price-callout {
  margin: 28px 0 32px;
}

.final-price-callout .price-tag {
  font-size: 3.4rem;
  font-weight: 900;
  color: #241D20;
}

.payment-methods-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.payment-pill {
  background: #F8F8F8;
  border: 1px solid #EAEAEA;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 700;
  color: #555555;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.site-footer {
  background: #241D20;
  color: #BBBBBB;
  padding: 45px 0 32px;
  font-size: 0.88rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.disclaimer-text {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 0.78rem;
  color: #888888;
  line-height: 1.6;
}

/* ==========================================================================
   BOTÃO FLUTUANTE MOBILE (STICKY CTA)
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.14);
  z-index: 999;
  border-top: 1px solid var(--border-light);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

.mobile-sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}

.mobile-sticky-price {
  display: flex;
  flex-direction: column;
}

.mobile-sticky-price .label {
  font-size: 0.72rem;
  color: #888888;
  text-transform: uppercase;
  font-weight: 600;
}

.mobile-sticky-price .val {
  font-size: 1.45rem;
  font-weight: 900;
  color: #241D20;
}

.btn-cta-mobile {
  background: linear-gradient(180deg, #2EEB73 0%, var(--cta-green) 100%);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  text-align: center;
  flex-grow: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   TOAST DE NOTIFICAÇÃO DE VENDAS AO VIVO (PROVA SOCIAL)
   ========================================================================== */
.live-sales-toast {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #FFFFFF;
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 990;
  transform: translateX(-150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 350px;
}

.live-sales-toast.show {
  transform: translateX(0);
}

.toast-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFF0F4;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.toast-text {
  font-size: 0.88rem;
  color: #333333;
  line-height: 1.4;
}

.toast-time {
  font-size: 0.74rem;
  color: #888888;
  margin-top: 2px;
}

/* ==========================================================================
   RESPONSIVIDADE 100% PARA MOBILE & TABLET
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-badge-container,
  .rating-stars,
  .hero-checklist {
    justify-content: center;
    align-items: center;
  }
  
  .hero-checklist {
    align-items: flex-start;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-cta {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-mockup-wrapper {
    max-width: 560px;
    margin: 0 auto;
  }

  .models-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 35px 25px;
  }

  .guarantee-seal-img-box {
    width: 150px;
    height: 150px;
  }

  .mobile-sticky-bar {
    display: block;
  }
}

@media (max-width: 600px) {
  .top-bar {
    font-size: 0.82rem;
    padding: 9px 12px;
  }

  .hero-section {
    padding: 35px 0 50px;
  }

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

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .problem-box {
    padding: 32px 20px;
  }

  .offer-body {
    padding: 32px 18px;
  }

  .value-stack-list {
    padding: 18px 15px;
  }

  .value-stack-item {
    font-size: 0.92rem;
  }

  .final-cta-box {
    padding: 38px 20px;
  }

  .recap-checklist {
    padding: 20px 18px;
  }

  .recap-checklist li {
    font-size: 0.95rem;
  }

  .btn-cta {
    font-size: 1.05rem;
    padding: 16px 22px;
  }

  .price-main {
    font-size: 2.9rem;
  }

  .fb-comments-container {
    padding: 20px 14px;
    border-radius: 0;
  }

  .fb-replies-container {
    margin-left: 20px;
    padding-left: 10px;
  }

  .live-sales-toast {
    display: none;
  }
}
