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

/* Style Tokens & Variables */
:root {
  --bg-primary: #FFF8F5;
  --bg-secondary: #FFFFFF;
  --color-primary: #FF69B4;
  --color-primary-dark: #FF1493;
  --color-primary-light: #FFC0CB;
  --color-text-main: #333333;
  --color-text-muted: #666666;
  --color-success: #25D366; /* WhatsApp Green */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 10px 30px rgba(255, 105, 180, 0.1);
  --shadow-medium: 0 15px 35px rgba(255, 105, 180, 0.18);
  --shadow-strong: 0 20px 45px rgba(255, 20, 147, 0.25);
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-btn: 30px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  background-color: var(--bg-primary);
  font-family: var(--font-body);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

p {
  font-size: 1.15rem; /* ~18.5px for easy reading */
  color: var(--color-text-muted);
}

/* Page Layout */
.container {
  width: 100%;
  max-width: 480px; /* Locked to mobile-like experience even on desktop */
  margin: 0 auto;
  background-color: var(--bg-primary);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05); /* Centered card feeling on desktop */
}

/* For larger desktop screens, show beautiful background patterns behind container */
@media (min-width: 481px) {
  body {
    background: linear-gradient(135deg, #FFE4E1 0%, #FFF5EE 100%);
    display: flex;
    justify-content: center;
  }
}

section {
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

/* Sticky Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 245, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 105, 180, 0.1);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 8px 20px;
  box-shadow: var(--shadow-soft);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  fill: var(--color-primary-dark);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-primary-dark);
  letter-spacing: -0.5px;
}

.header-whats-btn {
  background-color: var(--color-success);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.header-whats-btn:hover {
  transform: scale(1.1);
}

.header-whats-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: calc(50% - 220px); /* Position dynamically based on mobile view width */
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-secondary);
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255, 105, 180, 0.15);
  text-decoration: none;
  transition: var(--transition-smooth);
}

@media (max-width: 480px) {
  .floating-whatsapp {
    right: 20px;
  }
}

.floating-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.whatsapp-pulse {
  background: var(--color-success);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.whatsapp-pulse::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: var(--color-success);
  z-index: -1;
  animation: pulse-ring 1.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.whatsapp-pulse svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.whatsapp-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #333;
}

/* CTA Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 12px 20px;
  border-radius: var(--border-radius-btn);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 20, 147, 0.45);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary-dark);
}

.btn-secondary:hover {
  background: rgba(255, 20, 147, 0.05);
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 4s ease-in-out infinite;
}

/* Section Common Elements */
.section-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  letter-spacing: 1.5px;
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #2c0e1e;
  margin-bottom: 28px;
  position: relative;
  letter-spacing: 0.5px;
}

/* Specific Section Styles */

/* 1. Hero Section */
.hero-sec {
  padding-top: 20px;
  padding-bottom: 40px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-media-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-bottom: 24px;
}

.hero-media-wrapper img {
  width: 100%;
  display: block;
}

.hero-media-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 105, 180, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-play-btn {
  background: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.hero-play-btn:hover {
  transform: scale(1.1);
}

.hero-play-btn svg {
  width: 25px;
  height: 25px;
  fill: var(--color-primary-dark);
  margin-left: 4px;
}

.hero-text-content {
  text-align: center;
}

.hero-headline {
  font-size: 2.3rem; /* Big headings for high-impact readability */
  font-weight: 800;
  color: #2c0e1e;
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

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

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-rating-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: nowrap;
}

.hero-rating-top .stars-emoji {
  font-size: 0.9rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.hero-rating-top .rating-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #E51C75; /* Hot pink/magenta from the image */
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-headline .highlight-pink {
  color: #E51C75; /* Hot pink/magenta from the image */
  font-weight: 800;
}

.moms-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.overlapping-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -10px; /* Overlap effect */
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}

.overlapping-avatar:hover {
  transform: translateY(-3px);
  z-index: 10;
}

.moms-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: #3182ce; /* Exact blue color from the image */
}


/* 2. Product Presentation (O Que É) */
.product-sec {
  background-color: var(--bg-secondary);
}

.product-desc {
  text-align: center;
  margin-bottom: 30px;
}

/* Swipe Gallery */
.gallery-container {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.gallery-wrapper {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}

.gallery-slide {
  min-width: 100%;
  flex-shrink: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.gallery-slide img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-slide:hover img {
  transform: scale(1.06);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #E2E8F0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background-color: var(--color-primary);
  width: 24px;
  border-radius: 10px;
}

/* Features Grid */
.icon-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.icon-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--bg-primary);
  padding: 16px;
  border-radius: var(--border-radius-md);
  border: 1px dashed rgba(255, 105, 180, 0.25);
}

.feature-icon-circle {
  background-color: var(--bg-secondary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.feature-item-text {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text-main);
}

.objection-pill {
  background-color: rgba(255, 20, 147, 0.05);
  border: 1px solid rgba(255, 20, 147, 0.15);
  border-radius: 50px;
  padding: 12px 20px;
  text-align: center;
  font-weight: 600;
  color: var(--color-primary-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* 3. Benefits Section */
.benefits-sec {
  background-color: var(--bg-primary);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.benefit-card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--color-primary);
  transition: var(--transition-smooth);
}

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

.benefit-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-main);
}

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

/* 4. How It Works Section */
.how-sec {
  background-color: var(--bg-secondary);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-badge {
  background: var(--color-primary-dark);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 20, 147, 0.3);
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-img-box {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4; /* Force vertical portrait aspect ratio */
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: 12px;
}

.step-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop and cover vertically */
  display: block;
}

/* Video Placeholder Style */
.unboxing-video-placeholder {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9/16;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background-color: #000;
  position: relative;
  box-shadow: var(--shadow-medium);
  margin-top: 12px;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.video-play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
}

.video-play-icon {
  background: rgba(255, 20, 147, 0.9);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
  animation: pulse-glow 2s infinite;
}

.video-play-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 3px;
}

.video-play-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  text-align: center;
}

/* 5. Reviews / Social Proof */
.reviews-sec {
  background-color: var(--bg-primary);
}

.testimonial-card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 105, 180, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary-light);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-main);
}

.testimonial-meta {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.testimonial-comment {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.review-metric-box {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 20, 147, 0.05) 100%);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-top: 25px;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.metric-label {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* 6. FAQ Accordion */
.faq-sec {
  background-color: var(--bg-secondary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 105, 180, 0.1);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-main);
  padding-right: 10px;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background: #FFF;
}

.faq-answer-inner {
  padding: 18px 20px;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255, 105, 180, 0.08);
}

.faq-item.active {
  box-shadow: var(--shadow-soft);
}

.faq-item.active .faq-question h3 {
  color: var(--color-primary-dark);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

/* 7. Ingredients & Transparency + Guarantee */
.transparency-sec {
  background-color: var(--bg-primary);
}

.transparency-table-wrapper {
  overflow-x: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.08);
  margin-bottom: 30px;
  border: 1px solid rgba(255, 105, 180, 0.15);
  background: transparent;
  padding: 8px;
}

.ingredients-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  background: transparent;
  min-width: 320px;
}

.ingredients-table th {
  background-color: transparent;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 12px 10px;
  border-bottom: 2px solid rgba(255, 105, 180, 0.15);
}

.ingredients-table tbody tr {
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(255, 105, 180, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  cursor: pointer;
}

.ingredients-table tbody tr:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 8px 20px rgba(255, 20, 147, 0.15);
  background-color: #fffafc;
}

.ingredients-table td {
  padding: 16px 12px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  vertical-align: middle;
  transition: color 0.2s;
}

.ingredients-table tbody tr:hover td {
  color: var(--color-text-main);
}

/* Rounded corners for the row backgrounds */
.ingredients-table tbody td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-left: 4px solid var(--color-primary-light);
}

.ingredients-table tbody tr:hover td:first-child {
  border-left: 4px solid var(--color-primary);
}

.ingredients-table tbody td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.ingredients-table td strong {
  color: var(--color-text-main);
  font-weight: 700;
  font-size: 1rem;
}

/* Badges for table columns */
.age-badge {
  background-color: rgba(255, 105, 180, 0.06);
  border: 1px solid rgba(255, 105, 180, 0.2);
  color: var(--color-primary-dark);
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(255, 105, 180, 0.03);
}

.time-badge {
  background-color: #fff0f5;
  border: 1px solid rgba(255, 20, 147, 0.15);
  color: #ff1493;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.82rem;
  white-space: nowrap;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(255, 20, 147, 0.03);
}

/* Guarantee Card */
.guarantee-card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--color-primary-light);
  position: relative;
}

.guarantee-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 105, 180, 0.1);
  border-radius: 50%;
}

.guarantee-badge svg {
  width: 50px;
  height: 50px;
  fill: var(--color-primary-dark);
}

.guarantee-title {
  font-size: 1.4rem;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.guarantee-text {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

/* Shipping Calculator Style */
.shipping-box {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  margin-top: 20px;
}

.shipping-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shipping-inputs {
  display: flex;
  gap: 10px;
}

.shipping-inputs input {
  flex-grow: 1;
  border: 1px solid #E2E8F0;
  padding: 12px;
  border-radius: 50px;
  font-size: 1rem;
  text-align: center;
}

.shipping-btn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.shipping-btn:hover {
  background-color: var(--color-primary-dark);
}

.shipping-result {
  margin-top: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-success);
  display: none;
}

/* 8. Pricing Section */
.pricing-sec {
  background-color: var(--bg-secondary);
}

/* Countdown Timer Styling */
.countdown-banner-wrapper {
  margin-bottom: 25px;
  text-align: center;
  width: 100%;
}

.countdown-banner {
  background: linear-gradient(135deg, #FF007F 0%, #FF69B4 100%);
  border-radius: 24px;
  padding: 20px 16px;
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.countdown-header {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.clock-icon {
  width: 20px;
  height: 20px;
  fill: white;
}

.countdown-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.countdown-box-item {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 10px 14px;
  min-width: 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.countdown-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.85rem;
  color: white;
  line-height: 1.1;
}

.countdown-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

.countdown-colon {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.85rem;
  color: white;
  line-height: 1.1;
  animation: flash 1s infinite;
}

.countdown-disclaimer {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
  margin-top: 10px;
  line-height: 1.4;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Pricing Section Cards */
.pricing-cards-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 25px;
  width: 100%;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
  border: 2px solid #E2E8F0;
  position: relative;
  transition: var(--transition-smooth);
  text-align: left;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.pricing-card.recommended {
  border: 2px solid var(--color-primary-dark);
  box-shadow: var(--shadow-medium);
}

.badge-recommended {
  position: absolute;
  top: -14px;
  right: 24px;
  background-color: #FFD700;
  color: #333;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-title-offer {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.card-title-offer.vip-title {
  color: var(--color-primary-dark);
}

.card-subtitle-offer {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.price-box {
  margin-bottom: 20px;
}

.price-old {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 2px;
}

.price-new-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #1A202C;
  line-height: 1;
}

.price-new-amount.vip-price {
  color: var(--color-primary-dark);
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.05rem;
  color: #4A5568;
}

.pricing-list-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-success);
  flex-shrink: 0;
  margin-top: 4px;
}

.pricing-list-item.no-benefit {
  color: #A0AEC0;
  text-decoration: line-through;
}

.pricing-list-item.no-benefit svg {
  fill: #A0AEC0;
}

.card-bottom-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  font-weight: 500;
}

/* Button variants for pricing */
.pricing-card .btn {
  width: 100%;
}

.btn-outline-dark {
  background: transparent;
  color: #1A202C;
  border: 2px solid #1A202C;
}

.btn-outline-dark:hover {
  background: rgba(26, 32, 44, 0.05);
}

/* Payment Badges */
.payment-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.payment-badges svg {
  height: 25px;
  opacity: 0.7;
}

/* 10. Upgrade / Upsell Pop-up */
.modal-content.upsell-modal-content {
  background: #E51C75 !important; /* Exact solid magenta from the user screenshot */
  color: white !important;
  max-width: 390px !important;
  width: 100%;
  border-radius: 28px !important;
  padding: 35px 24px 25px !important;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35) !important;
}

.modal-content.upsell-modal-content .modal-close {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 2rem;
  font-weight: 300;
  top: 15px;
  right: 15px;
  transition: color 0.2s;
  background: transparent !important;
  border: none !important;
}

.modal-content.upsell-modal-content .modal-close:hover {
  color: #ffffff !important;
}

.upsell-badge {
  background-color: #000000;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 6px 18px;
  border-radius: 50px;
  display: inline-block;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.upsell-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.1;
}

.upsell-price-box {
  margin-bottom: 16px;
}

.upsell-price {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: #FFC107; /* Bright gold-yellow from screenshot */
  line-height: 1;
}

.upsell-sub {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
}

.upsell-includes-card {
  background: white;
  border-radius: 24px;
  padding: 22px 20px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.upsell-includes-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  color: #A0AEC0;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.upsell-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.upsell-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2D3748;
  font-size: 0.95rem;
  font-weight: 600;
}

.tick-circle {
  background-color: #FFC107; /* Gold yellow from screenshot */
  color: #2D3748;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.btn-upsell-primary {
  background-color: #FFC107; /* Gold yellow button */
  color: #1A202C;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50px; /* Fully rounded pill shape */
  height: 56px;
  width: 100%;
  border: none;
  cursor: pointer;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.35);
}

.btn-upsell-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.btn-upsell-secondary {
  background: rgba(255, 255, 255, 0.18); /* Translucent pill button from screenshot */
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px; /* Fully rounded pill shape */
  height: 52px;
  width: 100%;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-upsell-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* VIP Card obsession highlight badge */
.vip-highlight-text {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.12) 0%, rgba(255, 105, 180, 0.04) 100%);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 30px;
  border: 1.5px dashed var(--color-primary);
  display: inline-block;
  margin-bottom: 15px;
  animation: pulse-border 2.5s infinite;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* Stripe Payment Mock Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 400px;
  border-radius: var(--border-radius-lg);
  padding: 30px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
  animation: slide-up 0.3s ease-out;
}

.modal-close {
  position: absolute;
  top: 15px; right: 15px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #639; /* Stripe purple style colors */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stripe-form-group {
  margin-bottom: 16px;
  text-align: left;
}

.stripe-form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 6px;
}

.stripe-input {
  width: 100%;
  border: 1px solid #E2E8F0;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
}

.stripe-pay-btn {
  background-color: #635bff;
  color: white;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  width: 100%;
  height: 55px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.2s;
  box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
}

.stripe-pay-btn:hover {
  background-color: #4b45cc;
}

.stripe-secure-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* 9. Footer */
footer {
  background-color: #2c0e1e;
  color: #FFC0CB;
  padding: 40px 20px;
  text-align: center;
  border-top: 3px solid var(--color-primary-dark);
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 12px;
}

.footer-shipping-banner {
  background: rgba(255, 105, 180, 0.15);
  border: 1px solid rgba(255, 105, 180, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  display: inline-block;
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-link {
  color: #FFC0CB;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-text {
  font-size: 0.85rem;
  color: rgba(255, 192, 203, 0.7);
  margin-bottom: 15px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-badge {
  background-color: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Scroll Animations CSS */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Keyframes */
@keyframes shine {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

@keyframes pulse-ring {
  0% { transform: scale(0.35); opacity: 1; }
  80%, 100% { transform: scale(1.6); opacity: 0; }
}

@keyframes pulse-glow {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 20, 147, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 20, 147, 0); }
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 0, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 127, 0); }
}

@keyframes slide-up {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* 11. Sales Toast Notification */
.sales-toast {
  position: fixed;
  bottom: 20px;
  left: calc(50% - 220px);
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 250px;
  width: calc(100% - 32px);
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
  pointer-events: none;
}

@media (max-width: 480px) {
  .sales-toast {
    left: 16px;
    width: auto;
  }
}

.sales-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.sales-toast-user {
  font-size: 0.78rem;
  color: #718096;
  font-weight: 500;
  text-align: left;
}

.sales-toast-user strong {
  color: #2d3748;
}

.sales-toast-action {
  font-size: 0.78rem;
  font-weight: 700;
  color: #E51C75; /* Pink/magenta text like in the image */
  text-align: left;
}

.sales-toast-proof {
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1px;
  text-align: left;
}

.sales-toast-stars {
  color: #FFC107;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
}

.sales-toast-verified {
  color: #2ECC71; /* fresh green for verified */
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* 12. VSL Unmute Overlay */
.hero-media-wrapper {
  position: relative;
}

.vsl-unmute-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10;
  border-radius: var(--border-radius-lg);
}

.unmute-badge {
  background-color: #E53E3E; /* Red/coral color matching the screenshot */
  border: 2px solid white;
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(229, 62, 62, 0.4);
  animation: pulse-glow-red 2s infinite;
}

.unmute-top {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
  text-transform: none;
}

.unmute-bottom {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
}

.unmute-icon {
  width: 45px;
  height: 45px;
  fill: white;
}

@keyframes pulse-glow-red {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.6); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(229, 62, 62, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 62, 62, 0); }
}

/* 13. Author / Quem Criou o Método Section */
.author-section {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 30px 20px;
  box-shadow: var(--shadow-soft);
  margin-top: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 105, 180, 0.1);
  text-align: left;
}

.author-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.author-image-box {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.author-image-box img {
  width: 100%;
  display: block;
}

.author-info-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.author-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: #718096;
  letter-spacing: 0.5px;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.2;
}

.author-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.author-quote-card {
  background-color: #FFF5F7; /* Very light pink background */
  border-left: 3px solid var(--color-primary-dark);
  border-radius: 0 16px 16px 0;
  padding: 16px 20px;
  margin-top: 10px;
}

.author-quote-card p {
  font-style: italic;
  font-size: 1.05rem;
  color: #2D3748;
  line-height: 1.5;
  font-weight: 500;
}

.author-highlight-note {
  background-color: rgba(255, 20, 147, 0.05);
  border: 1px solid rgba(255, 20, 147, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-align: center;
  margin-top: 20px;
  line-height: 1.4;
}

/* Mobile responsive layout optimizations for headlines and copy text alignment */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.8rem !important;
    text-align: center !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
    line-height: 1.25;
  }
  
  .section-title {
    font-size: 1.55rem !important;
    text-align: center !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: #2c0e1e;
  }

  .section-tag {
    text-align: center !important;
    margin-bottom: 8px;
  }
  
  .hero-text-content {
    text-align: center !important;
  }

  .hero-sub {
    text-align: center !important;
    font-size: 1.1rem !important;
  }

  .product-desc p {
    text-align: center !important;
  }
  
  .step-card p {
    text-align: center !important;
  }
  
  .benefit-card {
    text-align: center !important;
  }
  
  .benefit-header {
    justify-content: center !important;
  }
  
  .testimonial-card {
    text-align: center !important;
  }
  
  .testimonial-header {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
  }
}

/* Featured Single Image Layout */
.featured-image-container {
  width: 100%;
  max-width: 440px;
  margin: 20px auto 25px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.08);
  border: 1px solid rgba(255, 105, 180, 0.15);
  transition: transform 0.3s ease;
}

.featured-image-container:hover {
  transform: scale(1.02);
}

.featured-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Feedback Video styling */
.feedback-video-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 24px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 105, 180, 0.15);
}

.feedback-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* Feedback Slider/Carousel container styling */
.feedback-slider-container {
  width: 100%;
  max-width: 340px; /* Mobile screenshot aspect ratio */
  margin: 0 auto 30px;
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.feedback-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.feedback-slide-item {
  min-width: 100%;
  box-sizing: border-box;
}

.feedback-slide-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Dots indicator */
.feedback-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 15px;
}

.fs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background-color 0.3s;
}

.fs-dot.active {
  background-color: var(--color-primary);
}
