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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--cinza-texto);
  background: var(--branco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =============================================================
   CSS VARIABLES
============================================================= */
:root {
  /* Brand verde */
  --verde-principal: #1a6b3c;
  --verde-destaque:  #22c55e;
  --verde-escuro:    #14532d;
  --verde-fundo:     #f0fdf4;
  --verde-hover:     #145f35;

  /* Accent — amber/gold (use only for badges, small highlights) */
  --amarelo:         #f59e0b;
  --amarelo-hover:   #d97706;

  /* Dark backgrounds */
  --escuro:          #0f172a;
  --escuro-2:        #1e293b;
  --sage:            #94a3b8;
  --preto:           #0f172a;

  /* Text */
  --cinza-texto:     #0f172a;
  --cinza-medio:     #64748b;
  --cinza-claro:     #f8fafc;
  --branco:          #ffffff;

  /* Hard shadows (0 blur — Neo-Brutalist) */
  --sombra-hard:     4px 4px 0px 0px #0f172a;
  --sombra-hard-lg:  6px 6px 0px 0px #0f172a;
  --sombra-suave:    var(--sombra-hard);
  --sombra-card:     var(--sombra-hard);
  --sombra-hover:    var(--sombra-hard-lg);

  /* Borders */
  --borda-card:      2px solid #0f172a;
  --borda-radius:    8px;
  --borda-radius-lg: 12px;
  --transicao:       0.15s ease;
}

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

/* =============================================================
   TIPOGRAFIA
============================================================= */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  color: var(--cinza-texto);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); font-weight: 700; }

p { font-size: 1rem; color: var(--cinza-medio); }

.highlight        { color: var(--verde-principal); font-weight: inherit; }
.highlight-yellow { color: var(--amarelo);         font-weight: inherit; }

/* =============================================================
   BOTÕES — Neo-Brutalist Push
============================================================= */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--borda-radius);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--preto);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  text-align: center;
}

/* CTA principal — amarelo com texto escuro */
.btn--primary {
  background: #f59e0b;
  color: #0f172a;
  border-color: #92400e;
  box-shadow: var(--sombra-hard-lg);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  animation: btn-pulse-green 2.4s ease-in-out infinite;
}

.btn--primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0px 0px #92400e;
  background: #d97706;
  animation: none;
}

/* Botão básico — branco com borda verde */
.btn--dark-green {
  background: var(--branco);
  color: var(--verde-principal);
  border: 2px solid var(--verde-principal);
  box-shadow: 4px 4px 0px 0px var(--verde-principal);
}

.btn--dark-green:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0px 0px var(--verde-principal);
}

/* Botão premium — amarelo com texto escuro */
.btn--premium {
  background: #f59e0b;
  color: #0f172a;
  border: 2px solid #92400e;
  box-shadow: 4px 4px 0px 0px #92400e;
  animation: none;
}

.btn--premium:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0px 0px #92400e;
  background: #d97706;
}

.btn--secondary {
  background: transparent;
  color: var(--preto);
  border: 2px solid var(--preto);
  box-shadow: var(--sombra-hard);
}

.btn--secondary:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0px 0px var(--preto);
}

@keyframes btn-pulse-green {
  0%, 100% { box-shadow: 4px 4px 0px 0px var(--preto), 0 0 0 0 rgba(26,107,60,0.4); }
  50%       { box-shadow: 4px 4px 0px 0px var(--preto), 0 0 0 8px rgba(26,107,60,0); }
}

.btn--lg {
  padding: 20px 44px;
  font-size: 1.15rem;
}

.btn--full {
  width: 100%;
  display: block;
}

/* =============================================================
   SEÇÕES BASE
============================================================= */
.section {
  padding: 80px 0;
}

.section--white { background: var(--branco); }
.section--green-light { background: var(--verde-fundo); }

.section__title {
  margin-bottom: 16px;
}

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

.section__sub {
  font-size: 1.05rem;
  margin-bottom: 48px;
}

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

/* =============================================================
   ANIMAÇÕES DE SCROLL
============================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in--delay {
  transition-delay: 0.2s;
}

/* =============================================================
   SCROLL HINT ARROW (hero → seção 2)
============================================================= */
.scroll-hint {
  display: flex;
  justify-content: center;
  padding: 8px 0 20px;
  background: var(--verde-fundo);
  color: var(--verde-principal);
}

.scroll-hint__arrow {
  animation: scroll-bounce 2s ease-in-out infinite;
}

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

/* =============================================================
   MARQUEE BAR — prova social charcoal
============================================================= */
.marquee-bar {
  background: var(--escuro);
  border-top: 2px solid var(--preto);
  border-bottom: 2px solid var(--preto);
  overflow: hidden;
  padding: 12px 0;
}

.marquee-bar__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee-scroll 36s linear infinite;
  width: max-content;
}

.marquee-bar__track span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0 !important;
  font-weight: 600 !important;
}

.marquee-check {
  color: var(--verde-destaque) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
}

.marquee-dot {
  color: var(--sage) !important;
  font-size: 1rem !important;
  opacity: 0.4;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================================
   SEÇÕES BASE
============================================================= */
.section--dark {
  background: var(--escuro);
  border-top: 2px solid var(--preto);
  border-bottom: 2px solid var(--preto);
}

/* =============================================================
   HERO
============================================================= */
.hero {
  background: #ffffff;
  padding: 0 0 60px;
  border-bottom: 2px solid var(--preto);
  position: relative;
  overflow: hidden;
}

/* Dot pattern overlay — very subtle */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #0f172a 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.04;
  pointer-events: none;
}

.hero__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 12px 0;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: flex;
  background: var(--verde-escuro);
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  padding: 6px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 auto 16px auto;
  width: fit-content;
  text-align: center;
  white-space: nowrap;
  border: 2px solid var(--preto);
  box-shadow: 3px 3px 0px 0px var(--preto);
}

.hero__headline {
  margin: 0 auto 20px auto;
  text-align: center;
  max-width: 900px;
  line-height: 1.2;
  font-size: unset;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__headline-main {
  font-size: clamp(1.9rem, 5.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--preto);
  letter-spacing: -0.03em;
}

.hero__headline-sub {
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  font-weight: 600;
  color: var(--escuro);
  line-height: 1.3;
}

.hero__sub {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 28px;
  max-width: 800px;
  text-align: center;
}

.hero__trust {
  font-size: 0.75rem;
  color: #555;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  opacity: 0.9;
}

.hero__bullets {
  list-style: none;
  margin: 0 auto 36px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--preto);
}

.check-icon {
  color: var(--verde-principal);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.check-icon--red {
  color: #dc2626;
  font-size: 0.9rem;
}

/* Seção de identificação com a dor */
.pain__id-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--cinza-texto);
  margin-bottom: 24px;
  line-height: 1.3;
}

.pain__id-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain__id-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--cinza-texto);
  line-height: 1.5;
}

.hero__media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--borda-radius-lg);
  overflow: hidden;
  box-shadow: 8px 8px 0px 0px var(--preto);
  border: 2px solid var(--preto);
  background: #000;
}

.hero__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Thumbnail / overlay do vídeo */
.video-thumb {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, #1b5e20 0%, #2e7d32 45%, #33691e 100%);
  transition: opacity 0.45s ease;
}

.video-thumb.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Imagem de fundo do thumbnail */
.video-thumb__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Escurecer imagem para legibilidade dos textos */
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.video-thumb__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 24px;
}

.video-thumb__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.video-thumb__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--branco);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-principal);
  animation: thumb-pulse 2.2s ease-out infinite;
  transition: transform 0.25s ease;
}

.video-thumb:hover .video-thumb__play {
  transform: scale(1.1);
  animation-play-state: paused;
}

.video-thumb__play svg {
  margin-left: 5px; /* compensação óptica do ícone de play */
}

.video-thumb__hint {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes thumb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  60%  { box-shadow: 0 0 0 22px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* =============================================================
   SEÇÃO DOR
============================================================= */
.pain__quote {
  border: 2px solid var(--preto);
  padding: 20px 24px;
  margin-bottom: 48px;
  background: var(--branco);
  border-radius: var(--borda-radius);
  box-shadow: var(--sombra-hard);
}

.pain__quote p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cinza-texto);
  font-style: italic;
}

.pain__quote cite {
  font-size: 0.9rem;
  color: var(--preto);
  font-style: normal;
  font-weight: 700;
}

.pain__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Imagem da seção dor */
.pain__image {
  flex: 1;
}

.pain__img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--borda-radius);
  border: 2px solid var(--preto);
  box-shadow: var(--sombra-hard);
  display: block;
}

/* Fallback se a imagem não carregar */
.pain__image--fallback {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: var(--borda-radius-lg);
  min-height: 260px;
}

.pain__list {
  list-style: none;
}

.pain__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--cinza-texto);
}

.pain__list li:last-child {
  border-bottom: none;
}

.pain__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* =============================================================
   SEÇÃO AGITAÇÃO
============================================================= */
.agitation__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.agitation__text {
  font-size: 1.05rem;
  margin-top: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* =============================================================
   INTRODUÇÃO DA SOLUÇÃO
============================================================= */
.solution-intro__pause {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: #ddd;
}

.divider-icon {
  font-size: 1.5rem;
}

.solution-intro__text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 500;
  color: var(--cinza-texto);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.solution-intro__text strong {
  color: var(--verde-principal);
}

/* =============================================================
   VEJA POR DENTRO
============================================================= */
.inside__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.inside__card {
  background: var(--branco);
  border-radius: var(--borda-radius);
  overflow: hidden;
  border: 2px solid var(--preto);
  box-shadow: var(--sombra-hard);
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.inside__card:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0px 0px var(--preto);
}

/* Área de preview com imagem */
.inside__preview {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

/* Gradiente de fallback por card (mostrado enquanto imagem não existe) */
.inside__preview--1 { background: linear-gradient(135deg, #e8f5e9, #a5d6a7); }
.inside__preview--2 { background: linear-gradient(135deg, #e3f2fd, #90caf9); }
.inside__preview--3 { background: linear-gradient(135deg, #fff3e0, #ffcc80); }

.inside__preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inside__preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
}

.preview-tag {
  display: inline-block;
  background: rgba(255,255,255,0.9);
  color: var(--cinza-texto);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.inside__info {
  padding: 24px 28px;
}

.inside__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--verde-principal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 8px;
}

.inside__info h3 {
  margin-bottom: 8px;
}

.inside__info p {
  font-size: 0.95rem;
}

/* =============================================================
   O QUE INCLUI
============================================================= */
.includes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

.includes__card {
  background: var(--branco);
  border: 2px solid var(--preto);
  border-radius: var(--borda-radius);
  padding: 28px;
  box-shadow: var(--sombra-hard);
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.includes__card:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0px 0px var(--preto);
}

.includes__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.includes__card h3 {
  margin-bottom: 8px;
}

.includes__card p {
  font-size: 0.95rem;
}

/* =============================================================
   BENEFÍCIOS
============================================================= */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.benefits__card {
  background: var(--branco);
  border-radius: var(--borda-radius);
  border: 2px solid var(--preto);
  padding: 28px 20px;
  box-shadow: var(--sombra-hard);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.benefits__card:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0px 0px var(--preto);
}

.benefits__icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.benefits__card h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

/* =============================================================
   PROVA SOCIAL PREMIUM
============================================================= */
.social-proof {
  overflow: hidden;
}

/* --- Selo / Badge --- */
.sp-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 8px 18px 8px 10px;
  background: var(--branco);
  border: 2px solid var(--preto);
  border-radius: 50px;
  box-shadow: var(--sombra-hard);
}

.sp-badge__avatars {
  display: flex;
}

.sp-badge__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--branco);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.56rem;
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: -7px;
}

.sp-badge__avatar:first-child {
  margin-left: 0;
}

.sp-badge__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--cinza-texto);
  white-space: nowrap;
}

.sp-badge__text strong {
  color: var(--preto);
  font-weight: 700;
}

.sp-badge__icon {
  color: var(--preto);
  font-size: 0.75rem;
  line-height: 1;
}

/* --- Título --- */
.social-proof__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 52px;
}

/* --- Carrossel infinito --- */
.sp-carousel {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  padding: 12px 0 20px;
}

.sp-carousel__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: sp-scroll 32s linear infinite;
  will-change: transform;
}

.sp-carousel:hover .sp-carousel__track {
  animation-play-state: paused;
}

@keyframes sp-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Cards do carrossel --- */
.sp-card {
  flex-shrink: 0;
  width: 280px;
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

/* Larguras variadas para parecer mais natural */
.sp-card:nth-child(1),
.sp-card:nth-child(6)  { width: 300px; }

.sp-card:nth-child(2),
.sp-card:nth-child(7)  { width: 255px; }

.sp-card:nth-child(3),
.sp-card:nth-child(8)  { width: 320px; }

.sp-card:nth-child(4),
.sp-card:nth-child(9)  { width: 275px; }

.sp-card:nth-child(5),
.sp-card:nth-child(10) { width: 290px; }

.sp-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================================
   BÔNUS
============================================================= */
.bonus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.bonus__card {
  background: var(--branco);
  border-radius: var(--borda-radius);
  padding: 28px;
  border: 2px solid var(--preto);
  box-shadow: var(--sombra-hard);
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.bonus__card:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0px 0px var(--preto);
}

.bonus__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--preto);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

.bonus__icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.bonus__card h3 {
  margin-bottom: 8px;
}

.bonus__card p {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.bonus__value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--verde-principal);
}

.bonus__today-tag {
  display: inline-block;
  background: #fff3e0;
  color: #e65100;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.bonus__pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.bonus__old {
  font-size: 0.85rem;
  color: var(--cinza-medio);
}

.bonus__old s {
  color: #c0392b;
}

.bonus__free {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--verde-principal);
}

/* =============================================================
   ANCORAGEM DE PREÇO
============================================================= */
.anchor__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.anchor__inner h2 {
  margin-bottom: 36px;
}

.anchor__list {
  list-style: none;
  border-radius: var(--borda-radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.anchor__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: var(--branco);
  font-size: 0.95rem;
  color: var(--cinza-texto);
}

.anchor__list li:nth-child(even) {
  background: var(--cinza-claro);
}

.anchor__list li:last-child {
  border-bottom: none;
}

.anchor__price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--cinza-medio);
}

.anchor__price--strike {
  color: #c0392b;
}

.anchor__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fef3c7;
  border-radius: var(--borda-radius);
  margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.anchor__total-price s {
  color: #c0392b;
  font-size: 1.2rem;
}

.anchor__transition {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--verde-principal);
}

/* =============================================================
   OFERTA
============================================================= */
.offer__top-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  margin: 0 auto 16px;
  background: var(--preto);
  border: 2px solid var(--preto);
  border-radius: 6px;
  padding: 6px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.offer__social-proof {
  text-align: center;
  font-size: 0.9rem;
  color: var(--cinza-medio);
  margin-top: 8px;
  margin-bottom: 40px;
}

.offer__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 0;
  align-items: stretch;
}

.offer__card {
  background: var(--branco);
  border-radius: var(--borda-radius);
  padding: 36px;
  border: 2px solid var(--preto);
  box-shadow: var(--sombra-hard);
  position: relative;
  transition: transform var(--transicao), box-shadow var(--transicao);
  flex: 1;
}

.offer__card:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0px 0px var(--preto);
}

/* Plano Básico — texto preto */
.offer__card:not(.offer__card--featured) h3,
.offer__card:not(.offer__card--featured) .offer__features li,
.offer__card:not(.offer__card--featured) .offer__price-label {
  color: #111111;
}

.offer__card--featured {
  border: 2px solid var(--preto);
  box-shadow: var(--sombra-hard-lg);
  background: var(--branco);
}

.offer__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #0f172a;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 20px;
  border-radius: 6px;
  border: 2px solid #92400e;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.offer__card-header {
  margin-bottom: 20px;
  text-align: center;
}

.offer__card-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.offer__features {
  list-style: none;
  margin-top: 24px;
}

.offer__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--cinza-texto);
  margin-bottom: 10px;
}

.offer__features li small {
  color: var(--cinza-medio);
  font-size: 0.82rem;
}

.offer__price {
  text-align: center;
  margin-bottom: 20px;
}

.offer__price-anchor {
  display: block;
  font-size: 0.82rem;
  color: var(--cinza-medio);
  margin-bottom: 2px;
}

.offer__price-anchor s {
  color: #c0392b;
  font-weight: 600;
}

.offer__price-label {
  display: block;
  font-size: 0.82rem;
  color: var(--cinza-medio);
  margin-top: 4px;
}

.offer__price-installment {
  display: block;
  font-size: 0.8rem;
  color: var(--cinza-medio);
  margin-top: 2px;
}

.offer__price-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--verde-principal);
  line-height: 1.1;
}

.offer__price-value--basic {
  color: #111111;
}

/* Banner de upsell no card básico */
.offer__upsell-hint {
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.offer__upsell-hint-badge {
  display: inline-block;
  background: #f59e0b;
  color: #111111;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 3px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.offer__upsell-hint p {
  font-size: 0.88rem;
  color: #e5e7eb;
  margin: 0;
  line-height: 1.4;
}

.offer__upsell-hint p strong {
  color: #f59e0b;
}

.offer__upsell-hint-arrow {
  font-size: 1.1rem;
  color: #f59e0b;
  animation: bounce-down 1.4s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

/* --- Urgência entre planos --- */
.offer__urgency-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: center;
  flex-shrink: 0;
}

.offer__urgency-desktop::before,
.offer__urgency-desktop::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: #f59e0b;
  opacity: 0.5;
}

.offer__urgency-desktop span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff8e1;
  border: 1.5px solid #f59e0b;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: #92400e;
  font-weight: 500;
  white-space: nowrap;
}

.offer__urgency-desktop span strong {
  font-weight: 700;
  color: #92400e;
}

/* --- Card subtitle --- */
.offer__card-subtitle {
  font-size: 0.82rem;
  color: var(--cinza-medio);
  margin-top: 4px;
  font-weight: 400;
}

/* --- Linha "sem bônus" no básico --- */
.offer__features--basic .offer__features-no {
  color: #aaa;
}
.no-icon {
  color: #ccc;
  font-size: 0.8rem;
}

/* --- Bloco de itens inclusos (premium) --- */
.offer__includes {
  margin-top: 28px;
  margin-bottom: 20px;
}

.offer__includes-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cinza-medio);
  margin-bottom: 10px;
}

.offer__includes-main {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cinza-claro);
  border: 2px solid var(--preto);
  border-radius: var(--borda-radius);
  padding: 12px 14px;
  margin-bottom: 10px;
}

.offer__includes-main-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.offer__includes-main-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.offer__includes-main-text strong {
  font-size: 0.95rem;
  color: var(--preto);
}

.offer__includes-main-text span {
  font-size: 0.78rem;
  color: var(--cinza-medio);
}

.offer__includes-divider {
  text-align: center;
  margin: 10px 0 8px;
  position: relative;
}

.offer__includes-divider::before,
.offer__includes-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: #d0d0d0;
}

.offer__includes-divider::before { left: 0; }
.offer__includes-divider::after  { right: 0; }

.offer__includes-divider span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cinza-medio);
  background: var(--verde-fundo);
  padding: 0 8px;
  position: relative;
  z-index: 1;
}

.offer__includes-bonus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #ececec;
  gap: 8px;
}

.offer__includes-bonus:last-of-type {
  border-bottom: none;
}

.offer__includes-bonus-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--cinza-texto);
  flex: 1;
  min-width: 0;
}

.offer__includes-bonus-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.offer__includes-bonus-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  flex-shrink: 0;
}

.offer__includes-bonus-price s {
  font-size: 0.72rem;
  color: #aaa;
}

.offer__free-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  color: #2e7d32;
  letter-spacing: 0.04em;
}

/* Bloco plataforma exclusiva */
.offer__platform {
  position: relative;
  margin: 12px 0 8px;
  background: #fef9ee;
  border-radius: var(--borda-radius);
  border: 2px solid #f59e0b;
  padding: 12px 14px;
}

.offer__platform-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: #f59e0b;
  color: #0f172a;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1.5px solid #92400e;
}

.offer__platform-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer__platform-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.offer__platform-info div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.offer__platform-info strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
}

.offer__platform-info span {
  font-size: 0.75rem;
  color: #64748b;
}

.offer__value-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fef3c7;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.offer__value-total s {
  color: #c0392b;
  font-size: 0.95rem;
}

/* --- Preço "hoje apenas" --- */
.offer__price-today {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cinza-medio);
  margin-bottom: 2px;
  text-align: center;
}

/* --- Trust row abaixo do CTA --- */
.offer__trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--cinza-medio);
}

/* =============================================================
   FAIXA DE GARANTIA (antes da oferta)
============================================================= */
.guarantee-strip {
  padding: 32px 0;
  border-top: 2px solid var(--preto);
  border-bottom: 2px solid var(--preto);
}

.guarantee-strip__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
  background: var(--verde-fundo);
  border: 2px solid var(--verde-principal);
  border-radius: var(--borda-radius);
  padding: 24px 28px;
  box-shadow: var(--sombra-hard);
}

.guarantee-strip__icon {
  font-size: 2.6rem;
  flex-shrink: 0;
  line-height: 1;
}

.guarantee-strip__text {
  flex: 1;
}

.guarantee-strip__text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cinza-texto);
  margin-bottom: 6px;
}

.guarantee-strip__text p {
  font-size: 0.9rem;
  color: var(--cinza-medio);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 639px) {
  .guarantee-strip__inner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 12px;
  }

  .guarantee-strip__icon {
    font-size: 2rem;
  }
}

/* =============================================================
   GARANTIA
============================================================= */
.guarantee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--verde-fundo);
  border-radius: var(--borda-radius);
  padding: 48px 40px;
  border: 2px solid var(--verde-principal);
  box-shadow: var(--sombra-hard-lg);
}

.guarantee__icon {
  font-size: 4rem;
}

.guarantee__content h2 {
  margin-bottom: 16px;
}

.guarantee__content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.guarantee__content p:last-child {
  margin-bottom: 0;
}

/* =============================================================
   FAQ
============================================================= */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  margin-top: 40px;
}

.faq__item {
  background: var(--branco);
  border-radius: var(--borda-radius);
  border: 2px solid var(--preto);
  margin-bottom: 12px;
  box-shadow: var(--sombra-hard);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--cinza-texto);
  text-align: left;
  transition: color var(--transicao);
}

.faq__question:hover {
  color: var(--preto);
}

.faq__question[aria-expanded="true"] {
  color: var(--preto);
}

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--preto);
  transition: transform var(--transicao);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__answer.open {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================================
   FOOTER
============================================================= */
.footer {
  background: var(--escuro);
  border-top: 2px solid var(--preto);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__brand strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--branco);
}

.footer__brand p {
  font-size: 0.85rem;
  color: #999;
  margin-top: 6px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__links a {
  font-size: 0.85rem;
  color: #aaa;
  text-decoration: none;
  transition: color var(--transicao);
}

.footer__links a:hover {
  color: var(--verde-destaque);
}

.footer__copy {
  font-size: 0.8rem;
  color: #666;
}

/* =============================================================
   FAIXA DE URGÊNCIA
============================================================= */
.urgency-bar {
  background: #f59e0b;
  color: #0f172a;
  text-align: center;
  padding: 10px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #92400e;
}

/* =============================================================
   NOTIFICAÇÃO DE VENDA
============================================================= */
.sales-notif {
  position: fixed;
  bottom: 20px;
  left: 16px;
  background: #ffffff;
  border-radius: var(--borda-radius);
  border: 2px solid var(--preto);
  box-shadow: var(--sombra-hard);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px 14px 14px;
  max-width: 320px;
  width: calc(100vw - 32px);
  z-index: 999;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
  pointer-events: none;
}

.sales-notif.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sales-notif__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  flex-shrink: 0;
}

.sales-notif__content {
  flex: 1;
  min-width: 0;
}

.sales-notif__name {
  font-size: 0.88rem;
  color: #111;
  margin: 0 0 2px;
  font-weight: 700;
}

.sales-notif__city {
  font-weight: 400;
  color: #555;
}

.sales-notif__action {
  font-size: 0.82rem;
  color: #444;
  margin: 0 0 4px;
}

.sales-notif__time {
  font-size: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.sales-notif__dot {
  color: #2e7d32;
  font-size: 0.7rem;
}

.sales-notif__close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1rem;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
}

.sales-notif__close:hover {
  color: #555;
}

/* =============================================================
   MOBILE — BASE (até 639px) — prioridade máxima
============================================================= */
@media (max-width: 639px) {
  /* Seções: menos respiro vertical */
  .section {
    padding: 52px 0;
  }

  /* Hero: compacto e centrado */
  .hero {
    padding: 0 0 44px;
  }

  .hero__inner {
    padding: 44px 16px 0;
  }

  .hero__headline-main {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
  }

  .hero__headline-sub {
    font-size: clamp(0.95rem, 4.5vw, 1.15rem);
  }

  /* CTA: full-width no mobile */
  .btn--lg {
    width: 100%;
    display: block;
    padding: 18px 20px;
    font-size: 1rem;
  }

  .hero__trust {
    font-size: 0.72rem;
  }

  .hero__bullets {
    text-align: left;
    align-items: flex-start;
    padding: 0 4px;
  }

  /* Vídeo: altura controlada no mobile */
  .hero__video-wrapper {
    aspect-ratio: 9 / 14;
  }

  /* Pain section: compacto */
  .pain__quote p {
    font-size: 1rem;
  }

  .pain__id-label {
    font-size: 1.1rem;
  }

  /* Grids: coluna única */
  .includes__grid,
  .inside__grid,
  .bonus__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Benefits: 2 colunas no mobile */
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .benefits__card {
    padding: 20px 14px;
  }

  /* Oferta: coluna única */
  .offer__grid {
    flex-direction: column;
    gap: 20px;
  }

  .offer__card {
    padding: 28px 20px;
  }

  /* FAQ: padding menor */
  .faq__question {
    padding: 16px 18px;
    font-size: 0.93rem;
  }

  .faq__answer p {
    padding: 0 18px 16px;
  }

  /* Garantia: compacta */
  .guarantee__inner {
    padding: 36px 24px;
  }

  /* Seções: títulos menores */
  h2 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  h3 {
    font-size: clamp(1rem, 4vw, 1.15rem);
  }

  /* Cards com sombra menor no mobile (economiza espaço visual) */
  .inside__card,
  .includes__card,
  .benefits__card,
  .bonus__card,
  .faq__item {
    box-shadow: 3px 3px 0px 0px var(--preto);
  }

  /* Notificação de venda: mais compacta */
  .sales-notif {
    padding: 12px 32px 12px 12px;
    max-width: calc(100vw - 24px);
    left: 12px;
    bottom: 12px;
  }
}

/* =============================================================
   TABLET (min-width: 640px)
============================================================= */
@media (min-width: 640px) {
  .includes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inside__grid {
    gap: 24px;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================================
   DESKTOP (min-width: 900px)
============================================================= */
@media (min-width: 900px) {
  .hero {
    padding: 0 0 80px;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    padding-top: 80px;
  }

  .hero__text {
    flex: 1;
    max-width: 520px;
  }

  .hero__media {
    flex: 1;
  }

  .hero__sub {
    max-width: 100%;
  }

  .includes__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .inside__grid {
    flex-direction: row;
  }

  .inside__card {
    flex: 1;
  }

  .offer__grid {
    flex-direction: row;
    align-items: stretch;
  }

  .offer__urgency-desktop {
    flex-direction: column;
    width: auto;
  }

  .offer__urgency-desktop::before,
  .offer__urgency-desktop::after {
    width: 1.5px;
    height: 40px;
    flex: unset;
  }

  .bonus__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bonus__card:last-child:nth-child(4n+1) {
    grid-column: 2 / 4;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .guarantee__inner {
    flex-direction: row;
    text-align: left;
  }

  .guarantee__icon {
    flex-shrink: 0;
  }
}

/* =============================================================
   POPUP DE UPGRADE
============================================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  background: var(--branco);
  border-radius: 20px;
  padding: 40px 32px 32px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.popup-overlay.active .popup-modal {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f3f4f6;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-medio);
  transition: background var(--transicao), color var(--transicao);
  line-height: 1;
}

.popup-close:hover {
  background: #e5e7eb;
  color: var(--cinza-texto);
}

.popup-badge {
  display: inline-block;
  background: #fff3e0;
  color: #e65100;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

.popup-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 8px;
  line-height: 1.25;
}

.popup-subtitle {
  font-size: 0.9rem;
  color: var(--cinza-medio);
  margin-bottom: 20px;
  line-height: 1.5;
}

.popup-price {
  text-align: center;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--verde-fundo);
  border-radius: var(--borda-radius);
}

.popup-price-old {
  display: block;
  font-size: 0.85rem;
  color: var(--cinza-medio);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.popup-price-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--verde-principal);
  line-height: 1.1;
}

.popup-price-label {
  display: block;
  font-size: 0.78rem;
  color: var(--cinza-medio);
  margin-top: 4px;
}

.popup-features {
  list-style: none;
  margin-bottom: 24px;
}

.popup-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--cinza-texto);
  margin-bottom: 8px;
}

.popup-btn-primary {
  margin-bottom: 12px;
  animation: btn-pulse 2.8s ease-in-out infinite;
}

.popup-btn-secondary {
  width: 100%;
  background: none;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #4b5563;
  cursor: pointer;
  text-align: center;
  padding: 12px;
  transition: all var(--transicao);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.popup-btn-secondary:hover {
  border-color: #9ca3af;
  color: #1f2937;
  background: #f9fafb;
}

/* =============================================================
   PREFERS-REDUCED-MOTION — Acessibilidade + Performance
============================================================= */
@media (prefers-reduced-motion: reduce) {
  .btn--primary          { animation: none; }
  .scroll-hint__arrow    { animation: none; }
  .section-arrow svg     { animation: none; }
  .video-thumb__play     { animation: none; }
  .sp-badge              { animation: none; }
  .sp-carousel__track    { animation-play-state: paused; }
  .fade-in               { transition: none; opacity: 1; transform: none; }
}
