/* ===================================================
   IMERSÃO CONSULTÓRIO LUCRATIVO — style.css
   Design System: Glassmorphism Premium + Dark OLED + Gradient Borders
   =================================================== */

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #202020;
  color: #f8f8f8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* === CSS VARIABLES === */
:root {
  --dark: #202020;
  --green: #5dd62c;
  --green-dim: rgba(93, 214, 44, 0.12);
  --green-glow: rgba(93, 214, 44, 0.3);
  --green-glow-strong: rgba(93, 214, 44, 0.5);
  --light: #f8f8f8;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-bg-light: rgba(32, 32, 32, 0.07);
  --glass-border-light: rgba(32, 32, 32, 0.12);
  --red: #ff4d4d;
  --text-muted: rgba(248, 248, 248, 0.6);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === TYPOGRAPHY === */
.section-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

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

.highlight {
  color: var(--green);
  position: relative;
}

.glow-text {
  text-shadow: 0 0 30px rgba(93, 214, 44, 0.6), 0 0 60px rgba(93, 214, 44, 0.3);
}

.highlight-dark {
  color: #202020;
}

/* === BUTTONS === */
.btn-cta {
  display: inline-block;
  background: var(--green);
  color: #0a1800;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 1.1rem 2.8rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 30px var(--green-glow), 0 0 0 0 var(--green-glow);
  position: relative;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px var(--green-glow-strong), 0 0 0 4px var(--green-dim);
  background: #6fe836;
}

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

.btn-cta-dark {
  background: var(--green);
  color: #0a1800;
}

.btn-cta-final {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  padding: 1.3rem 3.5rem;
}

.btn-cta-sticky {
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  display: block;
  text-align: center;
  border-radius: 100px;
}

.price-highlight {
  font-size: 1.1em;
  font-weight: 900;
}

/* === PULSE ANIMATION === */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 30px var(--green-glow), 0 0 0 0 var(--green-glow);
  }

  50% {
    box-shadow: 0 4px 30px var(--green-glow-strong), 0 0 0 12px transparent;
  }

  100% {
    box-shadow: 0 4px 30px var(--green-glow), 0 0 0 0 var(--green-glow);
  }
}

.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

/* === GLASSMORPHISM CARDS === */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.glass-card:hover {
  cursor: pointer;
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(93, 214, 44, 0.2);
  border-color: rgba(93, 214, 44, 0.25);
}

.glass-card-premium {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

/* === SCROLL ANIMATIONS === */
.animate-fade-up,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.animate-fade-up.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered delays for animate-fade-up */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.35s;
}

.delay-4 {
  transition-delay: 0.5s;
}

.delay-5 {
  transition-delay: 0.65s;
}

/* === SECTION SPACING === */
section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}


/* ===================================
/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  /* background: linear-gradient(160deg, #0a1405 0%, #101a09 45%, #1a1a1a 100%); */
  background-color: #121212;
  position: relative;
  overflow: hidden;
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  padding: 0rem 0;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 214, 44, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Two-column split */
.hero-split {
  display: flex;
  align-items: stretch;
  flex: 1;
}

/* LEFT column */
.hero-content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 3rem 5rem 15%;
  text-align: left;
}

/* Logo row — logo alone on its own row, large */
.hero-top-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  order: 1;
}

/* Reorder global: scarcity block goes below CTA */
.hero-headline {
  order: 2;
}

.hero-subheadline {
  order: 3;
}

.hero-price-anchor {
  order: 4;
}

.btn-cta-hero {
  order: 5;
}

.hero-scarcity {
  order: 6;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.hero-scarcity-bottom {
  order: 7;
}

.hero-logo {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
}

.hero-logo-img {
  height: auto;
  width: 190px;
}

/* Meta bar — sits below logo */
.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta-sep {
  opacity: 0.25;
}

/* RIGHT column — photo */
.hero-photo-wrap {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  /* display: flex; */
  align-items: flex-end;
}

.hero-photo {
  width: 70%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}



/* Slim scarcity bar */
.hero-scarcity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.hero-scarcity-bar {
  width: 240px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-scarcity-label {
  font-size: 0.82rem;
  color: rgba(255, 120, 100, 0.9);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-scarcity-fill {
  height: 100%;
  background: linear-gradient(90deg, #cc1500 0%, #ff3322 35%, #ff6644 50%, #ff3322 65%, #cc1500 100%);
  border-radius: 100px;
  animation: scarcityPulse 2s ease-in-out infinite;
}

.hero-scarcity-text {
  font-size: 0.75rem;
  color: rgba(255, 120, 100, 0.85);
  letter-spacing: 0.01em;
  font-weight: 600;
}

/* Headline */
.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  color: var(--light);
}

/* Subheadline */
.hero-subheadline {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 0 1.5rem;
}

/* Price anchor */
.hero-price-anchor {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

/* CTA — full width block */
.btn-cta-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 1.1rem 2rem;
}

/* Fine print below CTA */
.hero-scarcity-bottom {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}



.hero-cta {
  margin-bottom: 1.5rem;
}

.cta-micro {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.875rem;
  letter-spacing: 0.01em;
}

/* Hero info pills */
.hero-info-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.hero-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: rgba(93, 214, 44, 0.08);
  border: 1px solid rgba(93, 214, 44, 0.25);
  color: var(--green);
}

.hero-info-pill.pill-warn {
  background: rgba(255, 77, 77, 0.07);
  border-color: rgba(255, 77, 77, 0.25);
  color: #ff7070;
}

/* Countdown */
.countdown-wrapper {
  margin-bottom: 2.5rem;
}

.countdown-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  min-width: 70px;
}

.countdown-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  transition: transform 0.2s ease;
}

.countdown-num.flip {
  transform: scale(1.15);
}

.countdown-unit {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.countdown-sep {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.countdown-big .countdown-item {
  min-width: 90px;
  padding: 1rem 1.5rem;
}

.countdown-big .countdown-num {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.hero-card-float {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  animation: float 4s ease-in-out infinite;
}

.hero-stat-float {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(93, 214, 44, 0.08);
  border: 1px solid rgba(93, 214, 44, 0.25);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  animation: float 4s ease-in-out 1s infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-icon-wrap {
  color: var(--green);
}

.hero-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
}

.hero-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.2rem;
}

/* Wave */
.hero-wave {
  width: 100%;
  line-height: 0;
  margin-top: 4rem;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ===================================
   PAIN SECTION
   =================================== */
.pain-section {
  background: #101010;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}

.pain-item:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 214, 44, 0.3);
}

.pain-icon {
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 800;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.pain-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.pain-transition {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}

.pain-transition-bar {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93, 214, 44, 0.4), transparent);
  min-width: 60px;
}

.pain-transition-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.5;
  max-width: 500px;
  color: var(--light);
}

.pain-transition-text strong {
  color: var(--green);
}

/* ===================================
   PROMISE SECTION
   =================================== */
.promise-section {
  background: #202020;
}

.promise-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(93, 214, 44, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.promise-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(93, 214, 44, 0.1);
  border: 1px solid rgba(93, 214, 44, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}

.glass-card:hover .card-icon {
  background: rgba(93, 214, 44, 0.18);
}

.glass-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 0.75rem;
}

.glass-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===================================
   LEARN SECTION
   =================================== */
.learn-section {
  background: #f8f8f8;
}

.learn-section .section-headline {
  color: #202020;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.learn-card {
  background: rgba(32, 32, 32, 0.04);
  border: 1px solid rgba(32, 32, 32, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.learn-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(93, 214, 44, 0.15);
  border-color: rgba(93, 214, 44, 0.4);
}

.learn-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(93, 214, 44, 0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.learn-icon {
  margin-bottom: 1rem;
}

.learn-card p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: #3a3a3a;
}

.learn-card strong {
  color: #101010;
}

/* ===================================
   FOR WHOM SECTION
   =================================== */
.forwhom-section {
  background: #101010;
}

.forwhom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.forwhom-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.forwhom-title.yes {
  color: var(--green);
}

.forwhom-title.no {
  color: var(--red);
}

.forwhom-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.forwhom-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.icon-yes {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

.icon-no {
  color: var(--red);
  font-weight: 800;
  flex-shrink: 0;
}

/* ===================================
   AUTHORITY SECTION
   =================================== */
.authority-section {
  background: linear-gradient(160deg, #141414 0%, #181818 50%, #111 100%);
}

.authority-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(93, 214, 44, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.expert-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.expert-photo-wrap {
  position: relative;
}

.expert-photo {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 3/4;
  border: 1px solid rgba(93, 214, 44, 0.2);
}

.expert-photo-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(93, 214, 44, 0.15);
  pointer-events: none;
}

.expert-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.expert-name {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--light);
}

.expert-role {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Credential tag list */
.expert-credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.expert-credentials li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.5;
}

.expert-bio {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.expert-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.expert-stat {
  display: flex;
  flex-direction: column;
}

.expert-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.expert-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Testimonials */
.testimonials-wrapper {
  margin-top: 4rem;
}

.testimonials-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--green-dim);
  border: 1px solid rgba(93, 214, 44, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--green);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
}

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

.testimonials-nav {
  display: none;
  /* hidden on desktop, shown on mobile */
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.testimonial-nav-btn {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: background var(--transition), border-color var(--transition);
}

.testimonial-nav-btn:hover {
  background: var(--green-dim);
  border-color: rgba(93, 214, 44, 0.3);
}

/* ===================================
   EVENT SECTION
   =================================== */
.event-section {
  background: #f8f8f8;
}

.event-section .section-headline {
  color: #202020;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 3rem auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(93, 214, 44, 0.8), rgba(93, 214, 44, 0.2));
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 40px 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.timeline-time {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  text-align: right;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid #f8f8f8;
  box-shadow: 0 0 0 4px rgba(93, 214, 44, 0.3);
  justify-self: center;
}

.break-dot {
  background: #ccc;
  box-shadow: 0 0 0 4px rgba(200, 200, 200, 0.3);
}

.timeline-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #202020;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.88rem;
  color: #666;
}

.timeline-item.break .timeline-content h4 {
  color: #888;
}

.timeline-item.break .timeline-time {
  color: #aaa;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(32, 32, 32, 0.05);
  border: 1px solid rgba(32, 32, 32, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: transform var(--transition), border-color var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 214, 44, 0.4);
}

.info-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.info-value {
  font-size: 0.93rem;
  color: #202020;
  font-weight: 600;
  line-height: 1.4;
}

/* ===================================
   PRICE SECTION
   =================================== */
.price-section {
  background: #121212;
  position: relative;
}

.price-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 0;
  pointer-events: none;
}

.price-section>* {
  position: relative;
  z-index: 1;
}

.price-spotlight {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 214, 44, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.price-card {
  max-width: 600px;
  margin: 3rem auto 0;
  text-align: center;
}

.price-card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.price-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.price-logo {
  height: 48px;
  width: auto;
  margin: 0 auto;
}

.price-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.price-date-badge {
  display: inline-block;
  background: rgba(93, 214, 44, 0.1);
  border: 1px solid rgba(93, 214, 44, 0.25);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
}

.price-includes {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--light);
}

.pi-icon {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #0a1800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.price-wrap {
  text-align: center;
  margin-bottom: 2rem;
}

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

.price-real {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 40px rgba(93, 214, 44, 0.4);
}

.price-real span {
  font-size: 1.3em;
}

.price-anchor {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.5;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
  background: linear-gradient(160deg, #101010 0%, #111 100%);
}

.faq-list {
  max-width: 750px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

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

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer.open {
  max-height: 1000px;
  padding-top: 1rem;
}

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

/* ===================================
   SCARCITY BAR (Hero)
   =================================== */
.scarcity-bar {
  max-width: 480px;
  margin: 0 auto 2rem;
}

.scarcity-fill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.scarcity-progress {
  height: 100%;
  background: linear-gradient(90deg, #3da81c, var(--green));
  border-radius: 100px;
  animation: scarcityPulse 2s ease-in-out infinite;
}

@keyframes scarcityPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.75;
  }
}

.scarcity-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.scarcity-highlight {
  color: var(--green);
  font-weight: 700;
}

/* ===================================
   COMPARE GRID (Dor Section)
   =================================== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}



.compare-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-title.bad {
  color: #ff4d4d;
}

.compare-title.good {
  color: var(--green);
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ===================================
   TESTIMONIALS MINI SECTION
   =================================== */
.testimonials-mini-section {
  background: linear-gradient(160deg, #141414 0%, #181818 50%, #111 100%);
}

/* ===================================
   PILLAR CARDS (Conteúdo Section)
   =================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.pillar-card {
  background: rgba(32, 32, 32, 0.04);
  border: 1px solid rgba(32, 32, 32, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pillar-card:hover {
  cursor: pointer;
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(93, 214, 44, 0.15);
  border-color: rgba(93, 214, 44, 0.4);
}

.pillar-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(93, 214, 44, 0.1);
  border: 1px solid rgba(93, 214, 44, 0.2);
  border-radius: 100px;
  display: inline-block;
  padding: 0.25rem 0.875rem;
  margin-bottom: 1rem;
}

.pillar-icon {
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #202020;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555;
}

.pillar-card strong {
  color: #202020;
}

/* Checklist block */
.checklist-block {
  background: rgba(93, 214, 44, 0.04);
  border: 1px solid rgba(93, 214, 44, 0.15);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
}

.checklist-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #202020;
  margin-bottom: 1.5rem;
  text-align: center;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.875rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: #3a3a3a;
  font-weight: 500;
}

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

/* ===================================
   FORMAT GRID (Event Section)
   =================================== */
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.25rem;
  margin: 3rem 0;
}

.format-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(32, 32, 32, 0.04);
  border: 1px solid rgba(32, 32, 32, 0.08);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), border-color var(--transition);
}

.format-item:hover {
  cursor: pointer;
  transform: translateY(-3px);
  border-color: rgba(93, 214, 44, 0.3);
}

.format-icon {
  width: 52px;
  height: 52px;
  background: rgba(93, 214, 44, 0.08);
  border: 1px solid rgba(93, 214, 44, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.format-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: #202020;
  margin-bottom: 0.3rem;
}

.format-value {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.4;
}

/* price-includes-title */
.price-includes-title {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* ===================================
   FOMO SECTION
   =================================== */
.fomo-section {
  background: #f8f8f8;
}

.fomo-list {
  max-width: 680px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fomo-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 77, 77, 0.04);
  border: 1px solid rgba(255, 77, 77, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--transition);
}

.fomo-item:hover {
  border-color: rgba(255, 77, 77, 0.25);
}

.fomo-icon {
  color: #ff4d4d;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.fomo-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.fomo-item strong {
  color: #202020;
}

/* Scarcity badge final section */
.scarcity-badge-final {
  display: inline-block;
  background: rgba(93, 214, 44, 0.12);
  border: 1px solid rgba(93, 214, 44, 0.35);
  border-radius: 100px;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.03em;
}

/* ===================================
   URGENCY SECTION
   =================================== */

.urgency-section {
  background: #202020;
  text-align: center;
}

.urgency-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(93, 214, 44, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 0 2rem;
  text-align: center;
}

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

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-links {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--green);
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(248, 248, 248, 0.3);
  max-width: 680px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(248, 248, 248, 0.25);
}

/* ===================================
   STICKY CTA (Mobile)
   =================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(93, 214, 44, 0.2);
  padding: 0.875rem 1.25rem;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===================================
   RESPONSIVE — TABLET
   =================================== */
@media (max-width: 900px) {

  /* Hero split → stack vertically */
  .hero-split {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .hero-content {
    padding: 1rem 1rem 1rem;
    text-align: center;
  }

  .hero-logo-img {
    margin: 0 auto;
  }

  .hero-logo {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-info-pills {
    justify-content: center;
  }

  .scarcity-bar {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-scarcity {
    justify-content: center;
  }

  .countdown {
    justify-content: center;
  }

  .hero-photo-wrap {
    flex: none;
    width: 100%;
    max-height: 40vh;
    justify-content: center;
  }

  .hero-photo {
    object-position: top center;
    width: 55%;
    height: 100%;
  }

  .hero-photo-glow {
    display: none;
  }

  .expert-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .expert-photo-wrap {
    width: 200px;
    margin: 0 auto;
  }

  .expert-stats {
    justify-content: center;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
    overflow: hidden;
    position: relative;
  }

  .testimonials-nav {
    display: flex;
  }

  .forwhom-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 90px;
  }

  .timeline-item {
    grid-template-columns: 80px 40px 1fr;
  }

}

/* ===================================
   RESPONSIVE — MAIOR QUE FULL HD (4K / 2K)
   =================================== */
@media (min-width: 1921px) {
  .hero-section {
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url('images/bg-4k.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
  }

  .price-section {
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)),
      url('images/bg-section-price-4k.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

/* ===================================
   RESPONSIVE — FULL HD (até 1920px)
   Usa bg-fullhd.webp como background do hero
   =================================== */
@media (max-width: 1920px) {
  .hero-section {
    background-image: url('images/bg-fullhd.webp');
    background-color: #121212;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
  }

  .price-section {
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)),
      url('images/bg-section-price.webp');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}


/* ===================================
   RESPONSIVE — MOBILE
   =================================== */
@media (max-width: 640px) {
  section {
    padding: 4rem 0;
  }

  .hero-section {
    padding: 0;
    min-height: auto;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('images/bg-fullhd.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
  }

  .hero-scarcity {
    justify-content: center;
    align-items: center;
  }

  .hero-scarcity-bar {
    width: 200px;
    height: 8px;
  }

  .hero-scarcity-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
  }

  /* Centraliza foto e sobe o conteúdo */
  .hero-photo-wrap picture {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-photo {
    margin: 0 auto;
  }

  .hero-content {
    margin-top: -2.5rem;
    display: flex;
    flex-direction: column;
  }

  /* ── Reorder mobile hero: scarcity vai abaixo do CTA ── */
  .hero-top-row {
    order: 1;
  }

  .hero-headline {
    order: 2;
  }

  .hero-subheadline {
    order: 3;
  }

  .hero-price-anchor {
    order: 4;
  }

  .btn-cta-hero {
    order: 5;
  }

  .hero-scarcity {
    order: 6;
    margin-bottom: 0.25rem;
    margin-top: 0.5rem;
    align-items: center;
  }

  .hero-scarcity-bottom {
    order: 7;
  }

  /* Barra de escassez: full width abaixo do CTA */
  .hero-scarcity-bar {
    width: 100%;
    max-width: 320px;
    height: 8px;
  }

  /* Badge "Sem Replay · Sem Gravação" como pill */
  .hero-scarcity-bottom {
    display: block;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0.45rem 1.1rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.03em;
    margin-top: 0.5rem;
    align-self: center;
  }
}

/* ─── Ajustes finos para celulares pequenos (max-width: 480px) ─── */
@media (max-width: 480px) {
  .btn-cta {
    font-size: 0.85rem;
    padding: 1rem 1.5rem;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  .btn-cta-final {
    font-size: 0.95rem;
    padding: 1.1rem 1.75rem;
  }

  .price-section {
    background-image: url('images/bg-section-price.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
  }

  .hero-badge {
    font-size: 0.7rem;
  }

  .countdown {
    gap: 0.3rem;
  }

  .countdown-item {
    min-width: 55px;
    padding: 0.6rem 0.5rem;
  }

  .countdown-sep {
    font-size: 1.4rem;
  }

  .hero-visual {
    gap: 0.75rem;
  }

  .hero-card-float,
  .hero-stat-float {
    padding: 0.75rem 1rem;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .promise-cards {
    grid-template-columns: 1fr;
  }

  .learn-grid {
    grid-template-columns: 1fr;
  }

  .forwhom-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .testimonials-nav {
    display: flex;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    left: 75px;
  }

  .timeline-item {
    grid-template-columns: 65px 30px 1fr;
    gap: 0.5rem;
  }

  .timeline-time {
    font-size: 0.72rem;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .glass-card-premium {
    padding: 2rem 1.5rem;
  }

  .trust-badges {
    gap: 0.75rem;
  }

  .sticky-cta {
    display: block;
  }

  .expert-card {
    gap: 2rem;
  }

  .forwhom-col {
    padding: 1.5rem;
  }

  .btn-cta {
    display: block;
    text-align: center;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .countdown-big .countdown-item {
    min-width: 48px;
    padding: 0.5rem 0.4rem;
  }

  .countdown-big .countdown-num {
    font-size: 1.4rem;
  }

  .countdown-big .countdown-label {
    font-size: 0.5rem;
  }

  .countdown-big .countdown-sep {
    font-size: 1.2rem;
    margin: 0 -2px;
  }
}

/* ===================================
   ACCESSIBILITY — REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .pulse {
    animation: none !important;
  }

  .animate-fade-up,
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =====================================================
   ✨ MODERNIZAÇÃO PREMIUM — Dark OLED + Gradient Edition
   ===================================================== */

/* ─── Novos tokens de design ─── */
:root {
  --gradient-green: linear-gradient(135deg, #7fee4a 0%, #5dd62c 55%, #3fbf8a 100%);
  --gradient-green-h: linear-gradient(90deg, #5dd62c 0%, #80eb40 100%);
  --gradient-gold: linear-gradient(90deg, #ffd700, #ff9500, #ffd700);
  --glow-green-sm: 0 0 20px rgba(93, 214, 44, 0.2);
  --glow-green-md: 0 0 40px rgba(93, 214, 44, 0.3);
}

/* ─── Gradient Text nos highlights ─── */
.highlight {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  display: inline;
}

/* Hero headline: glow mantém cor sólida */
.glow-text {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--green) !important;
  background-clip: unset !important;
  color: var(--green);
  text-shadow: 0 0 30px rgba(93, 214, 44, 0.6), 0 0 60px rgba(93, 214, 44, 0.3);
}

/* Highlight inline no preço: sólido */
.hero-price-anchor .highlight,
.price-date-badge {
  background: none;
  -webkit-text-fill-color: var(--green);
  color: var(--green);
}

/* ─── Grain texture nas seções dark ─── */
.pain-section,
.forwhom-section,
.authority-section,
.faq-section {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* ─── Glass Cards: mais profundidade ─── */
.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.glass-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(93, 214, 44, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ─── Shimmer na barra de escassez ─── */
@keyframes shimmer-bar {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-scarcity-fill {
  background: linear-gradient(90deg, #cc1500 0%, #ff3322 35%, #ff6644 50%, #ff3322 65%, #cc1500 100%);
  background-size: 200% auto;
  animation: shimmer-bar 2.5s linear infinite;
}

/* ─── Hero meta: glass pills ─── */
.hero-meta-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.25rem 0.65rem;
}

/* ─── Compare Grid: accent top border ─── */
.compare-col.compare-bad {
  border-top: 2px solid rgba(255, 77, 77, 0.5);
}

.compare-col.compare-good {
  border-top: 2px solid rgba(93, 214, 44, 0.55);
}

/* ─── Testimonials: aspas decorativas ─── */
.testimonial-card {
  position: relative;
  padding-top: 2.75rem;
}

.testimonial-text {
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5.5rem;
  line-height: 0;
  color: rgba(93, 214, 44, 0.18);
  position: absolute;
  top: 1.5rem;
  left: -0.25rem;
  pointer-events: none;
  z-index: 0;
}

.testimonial-avatar {
  border: none;
  outline: 2px solid rgba(93, 214, 44, 0.5);
  outline-offset: 2px;
  box-shadow: 0 0 20px rgba(93, 214, 44, 0.15);
  font-size: 0.85rem;
  font-weight: 800;
}

.testimonial-stars {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* ─── Pillar Cards: gradient top + hover aprimorado ─── */
.pillar-card {
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(93, 214, 44, 0.6) 30%, rgba(93, 214, 44, 0.6) 70%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-card:hover {
  box-shadow: 0 16px 48px rgba(93, 214, 44, 0.1), 0 0 0 1px rgba(93, 214, 44, 0.12);
}

/* ─── ForWhom: lateral accent + icon badges ─── */
.forwhom-yes.glass-card {
  border-left: 3px solid rgba(93, 214, 44, 0.5);
}

.forwhom-no.glass-card {
  border-left: 3px solid rgba(255, 77, 77, 0.4);
}

.icon-yes {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(93, 214, 44, 0.12);
  border: 1px solid rgba(93, 214, 44, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  margin-top: 1px;
}

.icon-no {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  margin-top: 1px;
}

/* ─── Authority: stats gradiente + foto glow pulsante ─── */
.expert-stat-num {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.4rem;
  text-shadow: none;
}

@keyframes photo-pulse {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(93, 214, 44, 0.12), 0 0 0 1px rgba(93, 214, 44, 0.2);
  }

  50% {
    box-shadow: 0 0 70px rgba(93, 214, 44, 0.28), 0 0 0 1px rgba(93, 214, 44, 0.38);
  }
}

.expert-photo {
  animation: photo-pulse 5s ease-in-out infinite;
  border: 1px solid rgba(93, 214, 44, 0.25);
}

/* Credentials: mini badges */
.expert-credentials li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  transition: background var(--transition), border-color var(--transition);
}

.expert-credentials li:hover {
  background: rgba(93, 214, 44, 0.06);
  border-color: rgba(93, 214, 44, 0.2);
}

/* ─── Event Section: format icons + timeline ─── */
.format-icon {
  background: linear-gradient(145deg, rgba(93, 214, 44, 0.14), rgba(93, 214, 44, 0.04));
  box-shadow: 0 4px 16px rgba(93, 214, 44, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(93, 214, 44, 0.22);
}

.timeline-dot {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 4px rgba(93, 214, 44, 0.15), 0 0 18px rgba(93, 214, 44, 0.28);
}

/* ─── Price Card: gradient border ─── */
.price-card.glass-card-premium {
  background:
    linear-gradient(145deg, rgba(15, 15, 15, 0.97) 0%, rgba(8, 8, 8, 0.95) 100%) padding-box,
    linear-gradient(135deg, rgba(93, 214, 44, 0.65) 0%, rgba(93, 214, 44, 0.06) 50%, rgba(93, 214, 44, 0.45) 100%) border-box;
  border: 1px solid transparent;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 0 transparent;
}

.price-real {
  filter: drop-shadow(0 0 28px rgba(93, 214, 44, 0.5));
}

.pi-icon {
  background: linear-gradient(135deg, #5dd62c, #3da81c);
  box-shadow: 0 2px 10px rgba(93, 214, 44, 0.35);
}

/* ─── Checklist icons: gradient ─── */
.check-icon {
  background: linear-gradient(135deg, #5dd62c, #3da81c);
  box-shadow: 0 2px 8px rgba(93, 214, 44, 0.28);
}

/* ─── FOMO: accent lateral + icon círculo ─── */
.fomo-item {
  border: 1px solid rgba(255, 77, 77, 0.1);
  border-left: 3px solid rgba(255, 77, 77, 0.4);
}

.fomo-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(255, 77, 77, 0.07);
  border: 1px solid rgba(255, 77, 77, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
  color: #ff4d4d;
}

/* ─── Urgência: aurora animated background ─── */
@keyframes aurora-bg {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.urgency-section {
  background: linear-gradient(-45deg, #080808, #0f1f08, #071510, #0d0d0d) !important;
  background-size: 400% 400% !important;
  animation: aurora-bg 14s ease infinite;
}

.urgency-gradient {
  background:
    radial-gradient(ellipse at 25% 0%, rgba(93, 214, 44, 0.2) 0%, transparent 52%),
    radial-gradient(ellipse at 75% 100%, rgba(63, 191, 138, 0.1) 0%, transparent 52%);
}

/* Countdown: gradient numbers */
.countdown-num {
  background: var(--gradient-green-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.countdown-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(93, 214, 44, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ─── Scarcity badge final: pulse + glow ─── */
.scarcity-badge-final {
  box-shadow: 0 0 30px rgba(93, 214, 44, 0.12);
  animation: pulse 2.5s ease-in-out infinite;
}

/* ─── Seções dark: backgrounds aprimorados ─── */
.pain-section {
  background-color: #0c0c0c;
}

.forwhom-section {
  background-color: #0d0d0d;
}

.faq-section {
  background: linear-gradient(170deg, #0a0a0a 0%, #0e0e0e 100%);
}

/* ─── Botão CTA: gradient + sombra mais rica ─── */
.btn-cta {
  background: linear-gradient(135deg, #5dd62c 0%, #4ec025 100%);
  box-shadow: 0 4px 30px rgba(93, 214, 44, 0.35), 0 0 0 0 transparent;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #70e83c 0%, #5dd62c 100%);
  box-shadow: 0 8px 40px rgba(93, 214, 44, 0.5), 0 0 0 4px rgba(93, 214, 44, 0.1);
}

/* ─── Section headlines: espaçamento ─── */
.section-headline {
  letter-spacing: -0.03em;
}

/* ─── Pain transition: aprimorado ─── */
.pain-transition-text strong {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── prefers-reduced-motion: novas animações ─── */
@media (prefers-reduced-motion: reduce) {
  .hero-scarcity-fill {
    animation: none !important;
    background: var(--green) !important;
  }

  .urgency-section {
    animation: none !important;
  }

  .expert-photo {
    animation: none !important;
  }

  .scarcity-badge-final {
    animation: none !important;
  }
}