/* System Design - Obsidian Tech / Gold Premium */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-color: #0b0914; /* Deep Royal Violet/Indigo */
  --bg-gradient: radial-gradient(circle at 50% 20%, #17122e 0%, #0b0914 80%);
  --card-bg: rgba(26, 21, 48, 0.55);
  --card-border: 1px solid rgba(251, 191, 36, 0.15); /* Vibrant Amber/Gold */
  --card-border-hover: 1px solid rgba(251, 191, 36, 0.45);
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --text-highlight: #fbbf24; /* Bright Gold */
  --accent-color: #f59e0b; /* Amber */
  --accent-hover: #fbbf24;
  --accent-glow: rgba(245, 158, 11, 0.35);
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --max-width: 1000px;
  --max-width-narrow: 720px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography & Visuals */
h1, h2, h3 {
  font-family: var(--font-serif);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

p strong {
  color: #ffffff;
}

.highlight {
  color: var(--text-highlight);
  text-shadow: 0 0 15px rgba(223, 168, 87, 0.15);
}

.badge-highlight {
  background-color: var(--accent-color);
  color: #0b0914; /* Dark violet */
  padding: 0.1rem 0.5rem;
  margin: 0.15rem 0.15rem;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  line-height: 1.2;
  vertical-align: middle;
}

/* Page Components & Sections */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  width: 100%;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 2.25rem 0; /* Mais compacto e sem delongas */
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

/* Entrance Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { transition-delay: 0.15s; animation-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; animation-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; animation-delay: 0.45s; }

/* Hero Section (VSL immediately below headline) */
.hero {
  padding: 3rem 0 1.75rem 0;
  text-align: center;
  position: relative;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-logo {
  height: 85px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: screen; /* dissolves black background instantly */
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.35));
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 50%;
}

.product-logo:hover {
  transform: scale(1.08) rotate(3deg);
  filter: drop-shadow(0 0 16px rgba(251, 191, 36, 0.5));
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 2.25rem auto;
  line-height: 1.5;
}

/* VSL Player Container */
.video-wrapper {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 2.5rem auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 255, 255, 0.06);
  border: 5px solid #ffffff; /* Solid White Block Border */
  background-color: #000000;
  aspect-ratio: 16 / 9;
}

#player {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Interceptor blocks links & exit but lets JS handle clicks */
.click-interceptor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  cursor: pointer;
  background: transparent;
}

.custom-pause-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  background: rgba(8, 8, 10, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-pause-overlay.show {
  opacity: 1;
}

.pause-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  padding: 0 1.5rem;
}

.play-icon-glow {
  width: 68px;
  height: 68px;
  background-color: var(--text-highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px var(--accent-glow);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-icon-glow svg {
  width: 28px;
  height: 28px;
  fill: #000000;
  margin-left: 4px;
}

.pause-message {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 500;
  max-width: 450px;
  line-height: 1.35;
}

/* Main CTA Button */
.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--text-highlight) 0%, var(--accent-color) 100%);
  color: #0d0b14;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.1rem 2.25rem;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  animation: pulseGlow 2.5s infinite ease-in-out;
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 25%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: sweepShimmer 4s infinite linear;
}

@keyframes sweepShimmer {
  0% { left: -75%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-hover) 100%);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
  color: #0d0b14;
}

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

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

@keyframes pulseGlow {
  0% {
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
  }
  100% {
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
  }
}

/* Comparison Section (Violista Comum vs. Diferenciado) */
.comparison-section {
  background-color: rgba(13, 10, 24, 0.4);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2.25rem 0;
}

.comparison-card {
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.comparison-card.common {
  border-left: 4px solid #ef4444; /* red indicator */
}

.comparison-card.elite {
  border-left: 4px solid #10b981; /* green indicator */
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.03);
}

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

.comparison-card.common:hover {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 12px 35px rgba(239, 68, 68, 0.08);
}

.comparison-card.elite:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.1);
}

.card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background-color: rgba(16, 185, 129, 0.1);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.comparison-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.card-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.45;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e2e8f0;
}

.icon-bad {
  color: #ef4444;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}

.icon-good {
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}

/* Narrative Quote */
.narrative-quote {
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.85) 0%, rgba(13, 10, 24, 0.85) 100%);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 12px;
  padding: 2.25rem;
  max-width: 800px;
  margin: 2.5rem auto 0 auto;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  animation: quoteGlowPulse 4s infinite ease-in-out;
}

@keyframes quoteGlowPulse {
  0%, 100% {
    border-color: rgba(251, 191, 36, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
  50% {
    border-color: rgba(251, 191, 36, 0.35);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.04);
  }
}

.narrative-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #f1f5f9;
  margin-bottom: 1rem;
  font-weight: 400; /* Prevent bold/thick look on dark background */
}

.quote-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-highlight);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Method Section */
.section-title {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pillar-card {
  background-color: var(--card-bg);
  border: var(--card-border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border: var(--card-border-hover);
  box-shadow: 0 12px 28px rgba(251, 191, 36, 0.08);
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(251, 191, 36, 0.4);
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-weight: 700;
}

.pillar-icon-wrapper {
  margin-bottom: 1.25rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.15);
}

.pillar-icon-wrapper img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.pillar-icon-wrapper img[src*="capa-modulo-forma-de-mao"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Offer Section (Obsidian Glass Box) */
.offer-section {
  background-color: rgba(13, 10, 24, 0.3);
}

.offer-card {
  background-color: var(--card-bg);
  border: var(--card-border);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  box-shadow: 0 25px 55px rgba(0,0,0,0.8);
  max-width: 800px;
  margin: 0 auto;
}

.offer-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.offer-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-highlight);
  background-color: rgba(251, 191, 36, 0.05);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(251, 191, 36, 0.18);
  margin-bottom: 0.75rem;
}

.offer-header h3 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}

.offer-header .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.offer-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-check {
  color: var(--text-highlight);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
}

.detail-text p {
  font-size: 1rem;
  margin-bottom: 0;
  color: #e4e4e7;
}

/* FOMO block */
.fomo-block {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: rgba(239, 68, 68, 0.02);
  border-left: 3px solid rgba(239, 68, 68, 0.35);
  border-radius: 4px;
  text-align: left;
}

.fomo-title {
  color: #f87171;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.fomo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fomo-list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.45;
}

.fomo-list li::before {
  content: '⚠';
  color: #f87171;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Pricing box */
.price-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 450px;
  margin: 0 auto;
}

.price-anchor {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.price-anchor span {
  text-decoration: line-through;
}

.price-main {
  font-family: var(--font-serif);
  font-size: 3.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-main small {
  font-size: 1.85rem;
  font-weight: 500;
}

.price-period {
  font-size: 1.05rem;
  color: var(--text-highlight);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.price-box .btn-cta {
  width: 100%;
  font-size: 1.25rem;
  padding: 1.25rem 2.5rem;
}

.cta-subtext {
  font-size: 0.82rem;
  color: #a1a1aa;
  margin-top: 0.75rem;
  display: block;
}

/* Guarantee & Security */
.security-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sec-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.guarantee-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 680px;
  margin: 2.5rem auto 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
}

.guarantee-badge {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-highlight);
  font-weight: 700;
  border: 1px solid var(--text-highlight);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
}

.guarantee-text h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.guarantee-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Creator Section (Sincere Bio) */
.creator-section {
  background: relative;
}

.creator-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.creator-img-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.creator-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.creator-text h2 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.creator-title {
  font-size: 1rem;
  color: var(--text-highlight);
  font-weight: 600;
  display: block;
  margin-bottom: 1.5rem;
}

.creator-text p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #e4e4e7;
}

/* FAQ Accordion */
.faq-section {
  background-color: rgba(13, 10, 24, 0.2);
}

.faq-list {
  max-width: 720px;
  margin: 2rem auto 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0;
}

.faq-question:hover {
  color: var(--text-highlight);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding-right: 1.5rem;
}

.faq-answer p {
  padding-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--text-highlight);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
  animation: floatBreathing 3s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.08) rotate(5deg) translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background-color: #20ba5a;
  animation-play-state: paused;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

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

/* Sticky CTA for Mobile */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(11, 9, 20, 0.96);
  border-top: 1px solid rgba(251, 191, 36, 0.15);
  padding: 0.65rem 1rem;
  z-index: 98;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta.show {
  transform: translateY(0);
}

.sticky-cta .btn-cta {
  width: 100%;
  max-width: 440px;
  padding: 0.8rem 1.25rem;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

/* Footer & Disclaimer */
footer {
  padding: 3rem 0 1.5rem 0;
  background-color: #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  font-size: 0.78rem;
  color: #71717a;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-link {
  color: #a1a1aa;
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--text-highlight);
  text-decoration: underline;
}

.footer-disclaimer {
  max-width: 780px;
  margin: 1.25rem auto 0 auto;
  line-height: 1.4;
  opacity: 0.5;
  font-size: 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1.25rem;
}

/* Media Queries */
@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .creator-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .creator-img-wrapper {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 2.75rem 0;
  }

  .hero {
    padding: 3.5rem 0 1.5rem 0;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .comparison-card {
    padding: 1.75rem 1.25rem;
  }

  .pillar-card {
    padding: 1.75rem 1.25rem;
  }

  .narrative-quote {
    padding: 1.5rem;
    margin: 2rem 0 0 0;
  }

  .narrative-quote p {
    font-size: 1.05rem;
  }

  /* Compact offer section for 768px */
  .offer-card {
    padding: 1.75rem 1.25rem;
  }

  .detail-text p {
    font-size: 0.92rem;
  }

  .fomo-block {
    padding: 1.15rem 1rem;
    margin: 1.5rem 0;
  }

  .fomo-list li {
    font-size: 0.88rem;
  }

  .price-box {
    padding: 1.5rem 1.25rem;
  }

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

  .price-main small {
    font-size: 1.65rem;
  }

  .price-period {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .price-box .btn-cta {
    font-size: 1.15rem;
    padding: 1rem 1.25rem;
  }

  .guarantee-block {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.65rem;
  }

  .video-wrapper {
    margin-bottom: 1.75rem;
  }

  .btn-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
  }

  /* Compact offer section for 576px */
  .offer-card {
    padding: 1.5rem 1rem;
  }

  .detail-text p {
    font-size: 0.88rem;
  }

  .fomo-block {
    padding: 1rem 0.85rem;
    margin: 1.25rem 0;
  }

  .fomo-list li {
    font-size: 0.82rem;
  }

  .price-box {
    padding: 1.25rem 1rem;
  }

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

  .price-main small {
    font-size: 1.45rem;
  }

  .price-period {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .price-box .btn-cta {
    font-size: 1.1rem;
    padding: 0.9rem 1rem;
  }

  .play-icon-glow {
    width: 56px;
    height: 56px;
  }

  .play-icon-glow svg {
    width: 22px;
    height: 22px;
  }

  .pause-message {
    font-size: 1rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Soft Keyword Highlights */
.neon-negative {
  color: #f87171; /* Soft flat coral red, no fatigue */
  font-weight: 700;
}

.neon-positive {
  color: #34d399; /* Soft flat emerald green */
  font-weight: 700;
}
