/* ==========================================================================
   PROPAGARE PRO MÍDIA — Proposta Comercial
   Design system: dark, cinematográfico, laranja como acento estratégico.
   ========================================================================== */

:root {
  /* Paleta */
  --bg-primary: #080808;
  --bg-secondary: #111111;
  --bg-card: #151515;
  --bg-card-elevated: #1a1a1a;
  --orange: #FF6A00;
  --orange-bright: #FF7A1A;
  --white: #FFFFFF;
  --gray-light: #B8B8B8;
  --gray-dark: #666666;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-orange: rgba(255, 106, 0, 0.35);

  /* Tipografia */
  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', 'Manrope', sans-serif;

  /* Ritmo */
  --slide-pad-x: clamp(24px, 6vw, 96px);
  --transition-base: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

/* ==========================================================================
   Deck / Scroll snap
   ========================================================================== */

.deck {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
  height: 100dvh; /* evita corte de conteúdo atrás da barra de endereço no mobile */
  scroll-behavior: smooth;
}

.slide {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.slide__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(90px, 12vh, 140px) var(--slide-pad-x);
}

.slide:nth-child(even) {
  background: var(--bg-secondary);
}

/* ==========================================================================
   Barra de progresso
   ========================================================================== */

.brand-mark {
  position: fixed;
  top: 28px;
  left: var(--slide-pad-x);
  z-index: 800;
  opacity: 0.85;
}

.brand-mark img {
  display: block;
  height: 20px;
  width: auto;
}

@media (max-width: 720px) {
  .brand-mark img {
    height: 16px;
  }
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  z-index: 900;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(255, 106, 0, 0.6);
}

/* ==========================================================================
   Navegação lateral
   ========================================================================== */

.side-nav {
  position: fixed;
  right: clamp(16px, 3vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-nav__item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gray-dark);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  justify-content: flex-end;
  transition: color 0.3s ease;
}

.side-nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-dark);
  transition: all 0.35s ease;
}

.side-nav__item:hover {
  color: var(--gray-light);
}

.side-nav__item.active {
  color: var(--orange);
}

.side-nav__item.active .side-nav__dot {
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.7);
  transform: scale(1.4);
}

@media (max-width: 720px) {
  .side-nav { display: none; }
}

/* ==========================================================================
   Botão voltar ao topo
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: clamp(16px, 3vw, 40px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.35s ease;
  z-index: 800;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--border-orange);
  color: var(--orange);
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.25);
}

/* ==========================================================================
   Tipografia comum
   ========================================================================== */

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
}

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.slide-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.slide-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--gray-light);
  max-width: 640px;
  font-weight: 400;
  line-height: 1.65;
}

.slide-header {
  margin-bottom: clamp(48px, 6vw, 72px);
}

/* ==========================================================================
   SLIDE 01 — HERO
   ========================================================================== */

.slide--hero {
  background: var(--bg-primary);
  align-items: center;
  text-align: left;
}

.bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

.bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 40%, black 0%, transparent 75%);
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.bg-glow--1 {
  width: 560px;
  height: 560px;
  background: rgba(255, 106, 0, 0.16);
  top: -180px;
  right: -160px;
}

.bg-glow--2 {
  width: 420px;
  height: 420px;
  background: rgba(255, 106, 0, 0.08);
  bottom: -140px;
  left: -100px;
}

.bg-glow--3 {
  width: 500px;
  height: 500px;
  background: rgba(255, 106, 0, 0.1);
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
}

.slide__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 var(--slide-pad-x);
}

.hero-logo {
  display: block;
  height: clamp(28px, 3.4vw, 38px);
  width: auto;
  margin-bottom: 28px;
}

.hero-greeting {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--gray-light);
  margin-bottom: 4px;
}

.hero-greeting strong {
  color: var(--orange-bright);
  font-weight: 700;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 22px 0 24px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 2.2vw, 24px);
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  max-width: 640px;
}

.hero-text {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray-light);
  text-transform: uppercase;
}

.hero-tag__line {
  width: 32px;
  height: 1px;
  background: var(--orange);
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: var(--slide-pad-x);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

.scroll-cue__line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gray-dark), transparent);
  animation: scrollCuePulse 2.4s ease-in-out infinite;
}

@keyframes scrollCuePulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ==========================================================================
   SLIDE 02 — Stats + Chips
   ========================================================================== */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.stat-card {
  background: var(--bg-card);
  padding: clamp(28px, 3.5vw, 40px) clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-card__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--orange);
  letter-spacing: -0.02em;
}

.stat-card__label {
  font-size: 13px;
  color: var(--gray-light);
  letter-spacing: 0.02em;
}

.modules {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
}

.modules__text {
  flex: 1;
  min-width: 0;
}

.modules__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--white);
  margin-bottom: 20px;
}

.modules__illustration {
  flex-shrink: 0;
  width: clamp(160px, 20vw, 220px);
  height: auto;
  opacity: 0.9;
}

@media (max-width: 860px) {
  .modules {
    flex-direction: column;
    align-items: flex-start;
  }
  .modules__illustration {
    display: none;
  }
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-light);
  transition: all 0.3s ease;
}

.chip:hover {
  border-color: var(--border-orange);
  color: var(--white);
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.12);
}

/* ==========================================================================
   SLIDE 03 — Timeline
   ========================================================================== */

.timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Linha de conexão vertical + ponto animado percorrendo as etapas */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 1px;
  background: linear-gradient(180deg,
    transparent,
    rgba(255, 106, 0, 0.4) 8%,
    rgba(255, 106, 0, 0.4) 92%,
    transparent);
  pointer-events: none;
}

.timeline::after {
  content: "";
  position: absolute;
  left: 46px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px 2px rgba(255, 106, 0, 0.7);
  animation: timelineTravel 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes timelineTravel {
  0%, 100% { top: 4%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  96% { opacity: 0; }
  50% { top: 92%; }
}

.timeline__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(22px, 2.8vw, 32px) 0;
  border-top: 1px solid var(--border-subtle);
  align-items: baseline;
}

.timeline__item:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.timeline__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}

.timeline__body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 21px);
  margin-bottom: 8px;
}

.timeline__body p {
  color: var(--gray-light);
  font-size: 14px;
  line-height: 1.6;
  max-width: 620px;
}

@media (max-width: 640px) {
  .timeline::before,
  .timeline::after {
    left: 26px;
  }
  .timeline__item {
    grid-template-columns: 56px 1fr;
  }
  .timeline__number {
    font-size: 26px;
  }
}

/* ==========================================================================
   SLIDE 04 — Referência
   ========================================================================== */

.reference {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.reference__video {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.reference__caption {
  font-size: 12.5px;
  color: var(--gray-dark);
}

.reference__breakdown-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--white);
  margin-bottom: 16px;
}

.reference-table-wrap {
  max-height: 340px;
  overflow-y: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--bg-card);
}

.reference-table {
  width: 100%;
  border-collapse: collapse;
}

.reference-table thead th {
  position: sticky;
  top: 0;
  background: var(--bg-card-elevated);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-dark);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1;
}

.reference-table tbody td {
  padding: 12px 16px;
  font-size: 12.5px;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border-subtle);
  line-height: 1.5;
}

.reference-table tbody tr:last-child td {
  border-bottom: none;
}

.reference-table tbody tr:hover td {
  color: var(--white);
}

.reference-table td.col-time {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  font-size: 11.5px;
}

.reference-table thead th.col-time {
  width: 90px;
}

.reference-table thead th.col-scene {
  width: 130px;
}

.reference-table tbody td:nth-child(2) {
  color: var(--white);
  font-weight: 600;
}

.reference__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray-dark);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .reference {
    grid-template-columns: 1fr;
  }
  .reference-table-wrap {
    max-height: 300px;
  }
}

/* ==========================================================================
   SLIDE 05 — Planos
   ========================================================================== */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 36px) clamp(24px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.plan-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.plan-card--featured {
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-orange);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.08), 0 20px 60px rgba(255, 106, 0, 0.08);
  transform: scale(1.04);
  z-index: 1;
}

.plan-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.14), 0 24px 70px rgba(255, 106, 0, 0.14);
}

.plan-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.35);
}

.plan-card__header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.plan-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 14px;
}

.plan-card--featured .plan-card__name {
  color: var(--orange-bright);
}

.plan-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 14px;
}

.plan-card__price .currency {
  font-size: 0.42em;
  font-weight: 700;
  color: var(--gray-light);
  margin-right: 4px;
  vertical-align: middle;
}

.plan-card__desc {
  font-size: 13.5px;
  color: var(--gray-light);
  line-height: 1.6;
}

.plan-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  flex: 1;
}

.plan-card__list li {
  font-size: 13.5px;
  color: var(--white);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.plan-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 1px;
  background: var(--orange);
}

.plan-card__note {
  font-size: 12.5px;
  color: var(--gray-dark);
  line-height: 1.55;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.plan-card__note--highlight {
  color: var(--orange-bright);
  font-weight: 600;
}

@media (max-width: 980px) {
  .plans {
    grid-template-columns: 1fr;
  }
  .plan-card--featured {
    transform: none;
    order: -1;
  }
  .plan-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ==========================================================================
   SLIDE 06 — Tabela comparativa
   ========================================================================== */

.scroll-hint {
  display: none;
}

.table-wrap {
  position: relative;
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 720px) {
  .scroll-hint {
    display: block;
    font-size: 12px;
    color: var(--gray-dark);
    margin-bottom: 12px;
  }

  /* Fade indicando que há mais colunas fora da tela */
  .table-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 28px;
    background: linear-gradient(90deg, transparent, var(--bg-card));
    pointer-events: none;
  }
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--bg-card);
}

.compare-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-align: center;
  padding: 20px 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.compare-table thead th.col-feature {
  text-align: left;
  color: var(--gray-dark);
}

.compare-table thead th.col-featured {
  color: var(--orange-bright);
}

.compare-table tbody td {
  text-align: center;
  padding: 16px;
  font-size: 13.5px;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border-subtle);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table td.col-feature {
  text-align: left;
  color: var(--white);
  font-weight: 500;
}

.compare-table td.col-featured {
  background: rgba(255, 106, 0, 0.05);
  color: var(--white);
  font-weight: 600;
  border-left: 1px solid rgba(255, 106, 0, 0.18);
  border-right: 1px solid rgba(255, 106, 0, 0.18);
}

.compare-table td.muted {
  color: var(--gray-dark);
}

.check {
  color: var(--orange);
  font-weight: 700;
  font-size: 15px;
}

/* ==========================================================================
   SLIDE 07 — Fechamento
   ========================================================================== */

.slide--closing {
  background: var(--bg-primary);
  position: relative;
}

.slide--closing .bg-canvas {
  opacity: 0.35;
}

.slide--closing .slide__inner {
  position: relative;
  z-index: 2;
}

.terms {
  margin-bottom: clamp(56px, 7vw, 88px);
}

.terms__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 18px);
  margin-bottom: 28px;
}

.terms__split {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  margin-bottom: 28px;
}

.terms__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.terms__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--orange);
  letter-spacing: -0.02em;
}

.terms__label {
  font-size: 13.5px;
  color: var(--gray-light);
  max-width: 260px;
}

.terms__divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-subtle);
}

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

.terms__notes p {
  font-size: 12.5px;
  color: var(--gray-dark);
  line-height: 1.7;
  max-width: 780px;
}

.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.closing-cta__logo {
  display: block;
  height: 22px;
  width: auto;
  margin-bottom: 10px;
}

.closing-cta__tag {
  font-size: 12px;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.closing-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 28px);
  margin-bottom: 28px;
  max-width: 560px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(255, 106, 0, 0.25);
  transition: all 0.35s ease;
}

.cta-button:hover {
  box-shadow: 0 10px 40px rgba(255, 106, 0, 0.4);
  transform: translateY(-2px);
}

.legal-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 11.5px;
  color: var(--gray-dark);
  letter-spacing: 0.02em;
}

.reveal-active .legal-footer {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--transition-base), transform 0.8s var(--transition-base);
}

.reveal-active .legal-footer.in-view {
  opacity: 1;
  transform: translateY(0);
}

.legal-footer__divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-dark);
}

@media (max-width: 480px) {
  .legal-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .legal-footer__divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .terms__split {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .terms__divider {
    width: 100%;
    height: 1px;
  }
}

/* ==========================================================================
   Animações de entrada (IntersectionObserver toggles .in-view)

   Importante: por padrão TODO o conteúdo é visível (opacity:1), mesmo sem
   JavaScript. O estado "escondido antes de animar" só é aplicado quando o
   body já tem a classe .reveal-active — que o script.js adiciona no início
   da sua execução. Assim, se o JS falhar ou demorar no dispositivo do
   usuário (rede lenta, bloqueador, navegador interno de apps), o conteúdo
   nunca fica invisível — na pior das hipóteses, aparece sem animação.
   ========================================================================== */

.reveal-active .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--transition-base), transform 0.8s var(--transition-base);
}

.reveal.in-view .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

/* Blocos "reveal" que não têm filhos .reveal-item (ex.: tabela comparativa)
   animam a si mesmos diretamente. */
.reveal-active .table-wrap.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--transition-base), transform 0.8s var(--transition-base);
}

.reveal-active .table-wrap.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal.in-view .reveal-item:nth-child(1) { transition-delay: 0.02s; }
.reveal.in-view .reveal-item:nth-child(2) { transition-delay: 0.1s; }
.reveal.in-view .reveal-item:nth-child(3) { transition-delay: 0.18s; }
.reveal.in-view .reveal-item:nth-child(4) { transition-delay: 0.26s; }
.reveal.in-view .reveal-item:nth-child(5) { transition-delay: 0.34s; }
.reveal.in-view .reveal-item:nth-child(6) { transition-delay: 0.42s; }

/* stat/plan/timeline grids reveal their children individually */
.reveal-active .stats-row.reveal .stat-card,
.reveal-active .plans.reveal .plan-card,
.reveal-active .timeline.reveal .timeline__item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--transition-base), transform 0.8s var(--transition-base);
}

.stats-row.reveal.in-view .stat-card:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stats-row.reveal.in-view .stat-card:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stats-row.reveal.in-view .stat-card:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }

.plans.reveal.in-view .plan-card:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.plans.reveal.in-view .plan-card:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.plans.reveal.in-view .plan-card:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }

.timeline.reveal.in-view .timeline__item:nth-child(1) { transition-delay: 0.03s; opacity: 1; transform: translateY(0); }
.timeline.reveal.in-view .timeline__item:nth-child(2) { transition-delay: 0.09s; opacity: 1; transform: translateY(0); }
.timeline.reveal.in-view .timeline__item:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.timeline.reveal.in-view .timeline__item:nth-child(4) { transition-delay: 0.21s; opacity: 1; transform: translateY(0); }
.timeline.reveal.in-view .timeline__item:nth-child(5) { transition-delay: 0.27s; opacity: 1; transform: translateY(0); }
.timeline.reveal.in-view .timeline__item:nth-child(6) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsividade geral
   ========================================================================== */

@media (max-width: 720px) {
  .slide__inner {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .chip {
    font-size: 12px;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }
}
