/* ================================================
   FUTECRAFT — style.css (redesign 2026-05-26)
   Cores da Copa Brasil: verde + amarelo + azul
   Cards sticker-style com offset shadow
   ================================================ */

/* === VARIÁVEIS === */
:root {
  /* superfícies */
  --c-bg:        #FFF8EC;
  --c-bg-alt:    #FFFFFF;
  --c-bg-tint:   #FFFBF1;
  --c-bg-dark:   #0B1220;

  /* primária — verde Brasil (mais escuro) */
  --c-green:     #15803D;
  --c-green-dk:  #166534;
  --c-green-dpr: #14532D;
  --c-green-lt:  #DCFCE7;

  /* CTA — amarelo canarinho */
  --c-yellow:    #FACC15;
  --c-yellow-dk: #A16207;
  --c-yellow-lt: #FEF9C3;

  /* secundária — azul Brasil */
  --c-blue:      #1D4ED8;
  --c-blue-dk:   #1E3A8A;
  --c-blue-lt:   #DBEAFE;

  /* compat: aliases que ainda aparecem em vários selectors */
  --c-navy:      var(--c-blue);
  --c-navy-dk:   var(--c-blue-dk);
  --c-navy-lt:   var(--c-blue-lt);
  --c-coral:     var(--c-yellow);
  --c-coral-dk:  var(--c-yellow-dk);
  --c-coral-lt:  var(--c-yellow-lt);
  --c-amber:     var(--c-yellow);
  --c-amber-dk:  var(--c-yellow-dk);

  /* texto / linhas */
  --c-text:      #0F172A;
  --c-text-md:   #475569;
  --c-text-lt:   #94A3B8;
  --c-border:    #E2E8F0;
  --c-border-dk: #0F172A;

  /* radii */
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  36px;

  /* sombras (sticker-style: offset sólida + soft) */
  --sh-card:    4px 4px 0 0 rgba(15,23,42,1);
  --sh-card-lg: 6px 6px 0 0 rgba(15,23,42,1);
  --sh-soft:    0 6px 18px rgba(15,23,42,0.08);
  --sh-soft-lg: 0 14px 38px rgba(15,23,42,0.12);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  0.22s;

  --max:       1120px;
  --ft-title:  'Outfit', system-ui, sans-serif;
  --ft-body:   'Plus Jakarta Sans', system-ui, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ft-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { font-family: inherit; }

/* === LAYOUT === */
.container  { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.section    { padding: 72px 0; }
.txt-center { text-align: center; }

/* === SECTION TAG (chip) === */
.section-tag {
  display: inline-block;
  background: var(--c-green-lt);
  color: var(--c-green-dpr);
  font-family: var(--ft-body);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--c-green);
  margin-bottom: 14px;
}

/* === SECTION TITLE === */
.section-title {
  font-family: var(--ft-title);
  font-weight: 900;
  font-size: clamp(2rem, 5.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: var(--c-text);
}

/* destaque (substitui o antigo .hl dourado) */
.hl { color: var(--c-coral); }
.text-gold { color: var(--c-coral); font-weight: 700; }

/* ================================================
   BOTÕES — sticker-style com offset shadow
   ================================================ */
.btn {
  display: inline-block;
  font-family: var(--ft-body);
  font-weight: 800;
  letter-spacing: 0.3px;
  border-radius: 999px;
  cursor: pointer;
  border: 2.5px solid var(--c-border-dk);
  text-align: center;
  text-transform: uppercase;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  font-size: 1rem;
  line-height: 1.15;
  padding: 16px 28px;
  background: var(--c-yellow);
  color: var(--c-text);
  box-shadow: 0 6px 0 0 var(--c-yellow-dk), 0 14px 28px rgba(250,204,21,0.42);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 0 var(--c-yellow-dk), 0 18px 34px rgba(250,204,21,0.5);
}
.btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 0 var(--c-yellow-dk), 0 8px 16px rgba(250,204,21,0.4);
}

.btn--hero {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  font-size: 1.08rem;
  padding: 19px 28px;
}
.btn--lg {
  font-size: 1.05rem;
  padding: 18px 32px;
}

/* ================================================
   HEADER — barra de urgência (azul Brasil)
   ================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--c-blue);
  border-bottom: 3px solid var(--c-border-dk);
  transition: box-shadow var(--dur) var(--ease);
}
.header.is-scrolled { box-shadow: 0 4px 0 0 rgba(15,23,42,0.18); }

.urgency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 10px 20px;
}
.urgency-bar__text {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}
.urgency-bar__timer {
  display: flex;
  align-items: center;
  gap: 4px;
}
.countdown__digit {
  background: var(--c-text);
  color: #fff;
  font-family: var(--ft-title);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  padding: 6px 11px;
  border-radius: 8px;
  min-width: 42px;
  text-align: center;
  letter-spacing: 1px;
  border: 2px solid #fff;
}
.countdown__sep {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  padding: 0 2px;
}

/* ================================================
   HERO — bloco verde com texto branco
   ================================================ */
.hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.10) 0%, transparent 50%),
    radial-gradient(circle at 82% 80%, rgba(255,255,255,0.08) 0%, transparent 55%),
    linear-gradient(165deg, var(--c-green-dk) 0%, var(--c-green-dpr) 100%);
  color: #fff;
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--c-border-dk);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero__logo {
  width: 100%;
  max-width: 170px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 6px 0 rgba(15,23,42,0.2));
}

.hero__badge {
  display: inline-block;
  background: var(--c-amber);
  color: var(--c-text);
  border: 2.5px solid var(--c-border-dk);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 3px 3px 0 0 rgba(15,23,42,1);
}

.hero__title {
  font-family: var(--ft-title);
  font-weight: 900;
  font-size: clamp(2.5rem, 7.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  color: #fff;
}
.hero__title-gold {
  color: var(--c-amber);
  display: block;
  -webkit-text-stroke: 0;
}

.hero__sub {
  font-size: clamp(1rem, 2.4vw, 1.14rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  line-height: 1.65;
  font-weight: 500;
}

.hero .btn--hero { margin: 0 auto 16px; }

.hero__micro {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  font-weight: 500;
}

/* ================================================
   CARROSSEL DE MODELOS — bloco cream
   ================================================ */
.carousel-section {
  background: var(--c-bg);
  padding: 72px 0 64px;
  overflow: hidden;
  border-bottom: 4px solid var(--c-border-dk);
}
.carousel-section .section-title { color: var(--c-blue-dk); }
.carousel-section__sub {
  color: var(--c-text-md);
  font-size: 0.95rem;
  max-width: 620px;
  margin: 6px auto 0;
  line-height: 1.6;
  font-weight: 500;
}

.carousel {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.carousel__row { overflow: hidden; width: 100%; }
.carousel__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.carousel__row--ltr .carousel__track { animation: scroll-ltr 46s linear infinite; }
.carousel__row--rtl .carousel__track { animation: scroll-rtl 46s linear infinite; }
.carousel:hover .carousel__track { animation-play-state: paused; }

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

.carousel__item {
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  margin-right: 14px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  border: 2.5px solid var(--c-border-dk);
  box-shadow: 4px 4px 0 0 rgba(15,23,42,1);
}
.carousel__item img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================
   COMO FUNCIONA — bloco navy claro com cards branco
   ================================================ */
.how-it-works {
  background: var(--c-navy);
  color: #fff;
  border-bottom: 4px solid var(--c-border-dk);
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245,158,11,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.how-it-works .container { position: relative; z-index: 1; }
.how-it-works .section-title { color: #fff; }
.how-it-works .section-tag {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 44px;
}
.step-card {
  background: #fff;
  color: var(--c-text);
  border: 2.5px solid var(--c-border-dk);
  border-radius: var(--r-md);
  padding: 34px 26px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 5px 5px 0 0 rgba(15,23,42,1);
  transition: transform var(--dur) var(--ease);
}
.step-card:hover { transform: translateY(-3px); }
.step-card__num {
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: var(--ft-title);
  font-weight: 900;
  font-size: 4.4rem;
  line-height: 1;
  color: var(--c-amber);
  opacity: 0.18;
  letter-spacing: -2px;
  user-select: none;
}
.step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--c-coral-lt);
  border-radius: 50%;
  font-size: 1.8rem;
  margin-bottom: 14px;
  border: 2px solid var(--c-coral);
}
.step-card h3 {
  font-family: var(--ft-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 6px;
}
.step-card p {
  font-size: 0.92rem;
  color: var(--c-text-md);
  line-height: 1.65;
  font-weight: 500;
}

/* ================================================
   PROVA SOCIAL — bloco cream com carrossel
   ================================================ */
.social-proof {
  background: var(--c-bg-alt);
  overflow: hidden;
  border-bottom: 4px solid var(--c-border-dk);
}
.proof__lead {
  font-size: 1.04rem;
  color: var(--c-text-md);
  margin-bottom: 10px;
  font-weight: 500;
}
.proof__context {
  font-size: 0.93rem;
  color: var(--c-text-md);
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.proof-carousel {
  overflow: hidden;
  margin-top: 8px;
  padding: 12px 0 18px;
}
.proof-carousel__track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: proof-scroll 28s linear infinite;
  will-change: transform;
}
.proof-carousel:hover .proof-carousel__track { animation-play-state: paused; }

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

.proof-carousel__item {
  flex-shrink: 0;
  width: 220px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  border: 2.5px solid var(--c-border-dk);
  box-shadow: 4px 4px 0 0 rgba(15,23,42,1);
}
.proof-carousel__item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ================================================
   POR QUE AS CRIANÇAS AMAM — bloco cream alt
   ================================================ */
.why-section {
  background: var(--c-bg);
  border-bottom: 4px solid var(--c-border-dk);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.why-card {
  background: #fff;
  border: 2.5px solid var(--c-border-dk);
  border-radius: var(--r-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: 4px 4px 0 0 rgba(15,23,42,1);
  transition: transform var(--dur) var(--ease);
}
.why-card:hover { transform: translateY(-3px); }
.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--c-green-lt);
  border: 2px solid var(--c-green);
  border-radius: 50%;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.why-card h3 {
  font-family: var(--ft-title);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--c-text-md);
  line-height: 1.6;
  font-weight: 500;
}

/* alterna cor do ícone nos cards (visual mais brincalhão) */
.why-card:nth-child(2) .why-card__icon { background: var(--c-yellow-lt); border-color: var(--c-yellow); }
.why-card:nth-child(3) .why-card__icon { background: var(--c-blue-lt);   border-color: var(--c-blue);   }
/* 4º volta pro verde — fechando o ciclo verde→amarelo→azul→verde da bandeira */

/* ================================================
   OFERTA / CHECKOUT — bloco branco com 3 cards
   ================================================ */
.offer {
  background: var(--c-bg-alt);
  border-bottom: 4px solid var(--c-border-dk);
}
.offer .section-title { color: var(--c-text); }
.offer__urgency {
  font-size: 0.88rem;
  color: var(--c-coral-dk);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.plans {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 46px auto 0;
  max-width: 880px;
  align-items: stretch;
}

.plan-card {
  background: #fff;
  border: 3px solid var(--c-green);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 6px 6px 0 0 var(--c-green-dpr);
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--dur) var(--ease);
}
.plan-card:hover { transform: translateY(-3px); }

/* card do meio (Craques da Copa): stripe AZUL */
.plan-card--mid {
  border-color: var(--c-blue);
  box-shadow: 6px 6px 0 0 var(--c-blue-dk);
}
/* card top (Pack Completo / MAIS VENDIDO): stripe AMARELO + glow amarelo */
.plan-card--top {
  border-color: var(--c-yellow);
  border-width: 4px;
  box-shadow:
    8px 8px 0 0 var(--c-yellow-dk),
    0 0 0 6px rgba(250,204,21,0.22),
    0 22px 50px rgba(161,98,7,0.35);
  position: relative;
  z-index: 2;
}
/* badge "MAIS VENDIDO" — azul Brasil pra contrastar com card amarelo */
.plan-card--top .plan-card__badge {
  background: var(--c-blue);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 1.8px;
  padding: 6px 16px;
  border-width: 2.5px;
  box-shadow: 3px 3px 0 0 var(--c-border-dk);
  animation: badgePulse 1.6s ease-in-out infinite;
  position: relative;
  top: -2px;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1) rotate(-2deg); }
  50%      { transform: scale(1.08) rotate(2deg); }
}

.plan-card__top {
  background: var(--c-green-lt);
  padding: 26px 24px 20px;
  text-align: center;
  border-bottom: 2.5px solid var(--c-border-dk);
}
/* top section colorida por variante */
.plan-card--mid .plan-card__top { background: var(--c-blue-lt); }
.plan-card--top .plan-card__top { background: var(--c-yellow-lt); }

.card__logo {
  width: 100%;
  max-width: 84px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
}

.plan-card__badge {
  display: inline-block;
  background: var(--c-amber);
  color: var(--c-text);
  border: 2px solid var(--c-border-dk);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  box-shadow: 2px 2px 0 0 rgba(15,23,42,1);
  text-transform: uppercase;
}

.plan-card__name {
  font-family: var(--ft-title);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--c-green-dpr);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.plan-card--mid .plan-card__name { color: var(--c-blue-dk); }
.plan-card--top .plan-card__name { color: var(--c-yellow-dk); }

.plan-card__subtitle {
  font-size: 0.85rem;
  color: var(--c-text-md);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.45;
}

.plan-card__desc {
  font-size: 0.85rem;
  color: var(--c-text-md);
  line-height: 1.6;
  font-weight: 500;
}

.plan-card__body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-card__price-block {
  text-align: center;
  margin-bottom: 22px;
}
.plan-card__from {
  font-size: 0.85rem;
  color: var(--c-text-lt);
  margin-bottom: 4px;
  font-weight: 600;
}
.plan-card__from s { color: var(--c-text-lt); }
.plan-card__value {
  font-family: var(--ft-title);
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--c-green-dpr);
  letter-spacing: -2px;
}
.plan-card__value span { font-size: 1.8rem; }

.plan-card__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  flex: 1;
}
.plan-card__list li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text);
}

.plan-card__tag {
  display: inline-block;
  background: var(--c-amber);
  border: 2px solid var(--c-border-dk);
  color: var(--c-text);
  font-size: 0.66rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 0 rgba(15,23,42,1);
}

.offer__micro {
  font-size: 0.82rem;
  color: var(--c-text-md);
  text-align: center;
  font-weight: 500;
}

/* garantia */
.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--c-green-lt);
  border: 2.5px solid var(--c-green);
  border-radius: var(--r-md);
  padding: 18px 20px;
  text-align: left;
  box-shadow: 3px 3px 0 0 var(--c-green-dpr);
}
.guarantee__icon { font-size: 1.9rem; flex-shrink: 0; }
.guarantee strong {
  display: block;
  font-family: var(--ft-title);
  font-weight: 800;
  font-size: 0.96rem;
  color: var(--c-green-dpr);
  margin-bottom: 3px;
}
.guarantee p {
  font-size: 0.83rem;
  color: var(--c-text-md);
  line-height: 1.55;
}

/* ================================================
   PLAYERS SHOWCASE — chips de craques no card mid
   ================================================ */
.players-showcase {
  background: #fff;
  border: 2px solid var(--c-blue);
  border-radius: var(--r-sm);
  padding: 12px 14px 14px;
  margin-top: 12px;
}
.players-showcase__title {
  font-family: var(--ft-title);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--c-blue-dk);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  margin-bottom: 10px;
}
.players-showcase__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.player-chip {
  background: var(--c-blue-lt);
  border: 1.5px solid var(--c-blue);
  color: var(--c-blue-dk);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.5;
}

/* ================================================
   FAQ — accordion
   ================================================ */
.faq {
  background: var(--c-bg);
  border-bottom: 4px solid var(--c-border-dk);
}
.faq__list {
  max-width: 680px;
  margin: 44px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: #fff;
  border: 2.5px solid var(--c-border-dk);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 4px 4px 0 0 rgba(15,23,42,1);
  transition: transform var(--dur) var(--ease);
}
.faq__item.is-open { transform: translate(-1px, -1px); }
.faq__btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-family: var(--ft-body);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--c-text);
  text-align: left;
  gap: 16px;
  transition: background var(--dur) var(--ease);
}
.faq__btn:hover { background: var(--c-bg-tint); }
.faq__icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-coral);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--dur) var(--ease);
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease);
}
.faq__answer p {
  padding: 0 22px 22px;
  font-size: 0.9rem;
  color: var(--c-text-md);
  line-height: 1.72;
  font-weight: 500;
}
.faq__item.is-open .faq__answer { max-height: 320px; }

/* ================================================
   CTA FINAL — bloco amarelo Brasil grande
   ================================================ */
.final-cta {
  background: var(--c-yellow);
  padding: 90px 0;
  text-align: center;
  color: var(--c-text);
  border-bottom: 4px solid var(--c-border-dk);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.45) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(15,95,46,0.10)  0%, transparent 55%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta .section-title { color: var(--c-text); }
.final-cta .hl { color: var(--c-green-dpr); }
.final-cta__sub {
  color: var(--c-text-md);
  font-size: 1.04rem;
  max-width: 520px;
  margin: 0 auto 34px;
  line-height: 1.62;
  font-weight: 600;
}
/* botão dentro do final-cta vira verde Brasil — pop forte no fundo amarelo */
.final-cta .btn {
  background: var(--c-green);
  color: #fff;
  box-shadow: 0 6px 0 0 var(--c-green-dpr), 0 14px 28px rgba(15,95,46,0.32);
}
.final-cta .btn:hover {
  box-shadow: 0 8px 0 0 var(--c-green-dpr), 0 18px 34px rgba(15,95,46,0.4);
}
.final-cta .btn:active {
  box-shadow: 0 2px 0 0 var(--c-green-dpr), 0 8px 16px rgba(15,95,46,0.3);
}
.final-cta__micro {
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--c-text-md);
  font-weight: 600;
}

/* ================================================
   FOOTER — slate escuro
   ================================================ */
.footer {
  background: var(--c-bg-dark);
  padding: 48px 0;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer__logo-img {
  width: 100%;
  max-width: 130px;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
}
.footer__copy {
  font-size: 0.85rem;
  font-weight: 500;
}
.footer__disclaimer {
  font-size: 0.72rem;
  max-width: 490px;
  line-height: 1.65;
  margin-top: 2px;
  color: rgba(255,255,255,0.4);
}
.footer__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.footer__links a {
  font-size: 0.78rem;
  font-weight: 600;
  transition: color var(--dur) var(--ease);
  color: rgba(255,255,255,0.7);
}
.footer__links a:hover { color: var(--c-amber); }

.footer__legal {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  text-align: center;
  max-width: 540px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal-grid > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal-grid > *.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-grid > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-grid > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-grid > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-grid > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-grid > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-grid > *:nth-child(6) { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  .carousel__track,
  .proof-carousel__track { animation: none; }
  .reveal-grid > *       { opacity: 1; transform: none; transition: none; }
  .btn, .pulse-cta       { transition: none; animation: none; }
}

/* ================================================
   PULSE CTA — animação suave nos botões de oferta
   ================================================ */
@keyframes pulseCta {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.025); }
  100% { transform: scale(1); }
}
.pulse-cta {
  animation: pulseCta 1.8s ease-in-out infinite;
}
.pulse-cta:hover { animation: none; }

/* ================================================
   NOTIFICAÇÃO DE VENDAS (popup canto inferior)
   ================================================ */
.sales-notif {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 9000;
  background: #fff;
  border: 2.5px solid var(--c-border-dk);
  border-left: 5px solid var(--c-green);
  border-radius: var(--r-sm);
  box-shadow: 4px 4px 0 0 rgba(15,23,42,0.9);
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  max-width: 240px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.38s ease, transform 0.38s ease;
}
.sales-notif.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sales-notif__icon {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.sales-notif__body { flex: 1; min-width: 0; }
.sales-notif__label {
  display: block;
  font-family: var(--ft-title);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--c-green-dpr);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.sales-notif__msg {
  font-size: 0.7rem;
  color: var(--c-text-md);
  line-height: 1.4;
  font-weight: 500;
}

/* ================================================
   RESPONSIVE — tablet 640px+
   ================================================ */
@media (min-width: 640px) {
  .steps__grid          { grid-template-columns: repeat(3, 1fr); }
  .carousel__item       { width: 195px; height: 195px; }
  .proof-carousel__item { width: 260px; }
  .proof-carousel__item img { height: 400px; }
  .why__grid            { grid-template-columns: repeat(4, 1fr); }
}

/* ================================================
   RESPONSIVE — desktop 960px+
   ================================================ */
@media (min-width: 960px) {
  .section              { padding: 100px 0; }
  .carousel__item       { width: 220px; height: 220px; }
  .proof-carousel__item { width: 280px; }
  .proof-carousel__item img { height: 430px; }

  .plans     { flex-direction: row; align-items: center; max-width: 1080px; gap: 28px; }
  .plan-card { flex: 1; align-self: stretch; }
  /* destaca o "MAIS VENDIDO" — maior, levemente elevado, sombra azul mais agressiva */
  .plan-card--top {
    transform: scale(1.06);
    transform-origin: center;
    z-index: 3;
  }
  .plan-card--top:hover { transform: scale(1.08) translateY(-3px); }
}

/* ================================================
   RESPONSIVE — mobile pequeno <420px
   ================================================ */
@media (max-width: 420px) {
  .hero                  { padding: 52px 0 70px; }
  .hero__title           { font-size: 2.5rem; }
  .btn--hero             { font-size: 0.98rem; padding: 17px 22px; }
  .plan-card__value      { font-size: 3rem; }
  .plan-card__value span { font-size: 1.6rem; }
  .carousel__item        { width: 148px; height: 148px; }
  .proof-carousel__item  { width: 185px; }
  .proof-carousel__item img { height: 280px; }
  .countdown__digit      { font-size: 1.05rem; padding: 4px 9px; min-width: 36px; }
  .urgency-bar__text     { font-size: 0.78rem; }
  .urgency-bar           { gap: 6px 10px; padding: 8px 14px; }
  .hero__logo            { max-width: 130px; }
  .card__logo            { max-width: 70px; }
  .footer__logo-img      { max-width: 110px; }
  .sales-notif           { bottom: 14px; left: 14px; max-width: 84vw; }
}
