﻿/* ==========================================================================
   DUBY — ESTILOS POR SEÇÃO
   Cada bloco corresponde a um arquivo em /sections.
   Depende dos tokens e componentes de variables.css e base.css.
   ========================================================================== */

.container--narrow {
  max-width: 820px;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  width: 100vw;
  max-width: 100vw;
  height: var(--header-h);
  display: flex;
  align-items: center;
  overflow-x: hidden;
  /* !important para o fundo/blur surgirem suaves no scroll mesmo com reduce-motion */
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease) !important;
  border-bottom: 1px solid transparent;
}


@supports (overflow: clip) {
  .site-header {
    overflow-x: clip;
  }
}

.site-header.is-scrolled {
  background: rgba(3, 0, 20, 0.72);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border-light);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
}



.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav__link {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--text-primary);
}

.site-header__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1rem;
}

/* Botão hambúrguer */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile - drawer que abre abaixo do header, deslizando da direita */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100vw;
  height: calc(100dvh - var(--header-h));
  padding: 3rem 4rem;
  overflow-y: auto;
  background: rgba(3, 0, 20, 0.61);
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  border-bottom-left-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transform: translateX(100%);

  transition: all .3s ease-in-out !important;
  /*  
 visibility: hidden;
  opacity: 0;
transition:
    transform 0.38s var(--ease),
    opacity 0.38s var(--ease),
    visibility 0.38s var(--ease); */
}



.mobile-nav.is-open {
  transform: translateX(0);

}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mobile-nav__link {
  padding: 0.85rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  overflow-wrap: anywhere;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-dim);
  transition: color 0.2s var(--ease);
}

.mobile-nav__link:hover {
  color: var(--text-primary);
}

.mobile-nav .btn {
  width: 100%;
  min-width: 0;
  margin-top: 1rem;
  white-space: normal;
}

html.nav-locked,
body.nav-locked {
  overflow: hidden;
}

@media (max-width: 860px) {

  .site-nav,
  .site-header__cta {
    display: none;
  }

  .site-header__inner {
    gap: 0.75rem;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.section-hero {
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem));
}

.section-hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero__sub {
  max-width: 46ch;
}

.hero__actions {
  margin-top: 0.5rem;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__highlights svg {
  color: var(--brand-lavender);
}

.hero__visual {
  transform: perspective(1200px) rotateY(-4deg);
}

@media (max-width: 860px) {
  .section-hero .container {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    transform: none;
    margin-top: 1rem;
  }
}

/* ==========================================================================
   PROVA SOCIAL
   ========================================================================== */
.social-proof__label {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

.social-proof__stats {
  margin-bottom: 3rem;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
}

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

/* Logos */
.logo-marquee {
  border-top: 1px solid var(--border-dim);
  padding-top: 2.5rem;
}

.logo-marquee__track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4.5rem);
}

.logo-marquee__track img {
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(1) brightness(1.6);
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}

.logo-marquee__track img:hover {
  opacity: 1;
  filter: none;
}

/* ==========================================================================
   MARQUEE DE LOGOS (próprio, sem lib) — loop contínuo da esquerda p/ direita
   ========================================================================== */
.logo-marquee2 {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.logo-marquee2__track {
  display: flex;
  width: max-content;
  align-items: center;
  /* duration/iteration com !important para furar o reset global de
     prefers-reduced-motion (components.css) — o marquee deve rodar sempre */
  animation-name: logo-scroll-right;
  animation-timing-function: linear;
  animation-duration: 42s !important;
  animation-iteration-count: infinite !important;
  will-change: transform;
}

/* Largura fixa do card: evita que os SVGs (que só têm viewBox) colapsem no flex */
.logo-marquee2 .client-logo {
  flex: 0 0 auto;
  width: 168px;
  height: 5rem;
  margin: 0 0.85rem 0 0;
}

.logo-marquee2 .client-logo img {
  width: 100%;
  height: 2.25rem;
  max-height: none;
  object-fit: contain;
  /* !important para furar o transition-duration: 0.01ms do reset global */
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease) !important;
}

/* Movimento contínuo da esquerda para a direita */
@keyframes logo-scroll-right {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Só pausa no hover (desktop) e no toque (mobile, via .is-paused) */
.logo-marquee2:hover .logo-marquee2__track,
.logo-marquee2.is-paused .logo-marquee2__track {
  animation-play-state: paused;
}

/* ==========================================================================
   PROVA SOCIAL — VÍDEO (Rede Andrade)
   Vídeo vertical à esquerda + texto à direita no desktop.
   ========================================================================== */
.section-proof-video {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.proof-video {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 880px) {
  .proof-video {
    grid-template-columns: 0.82fr 1.18fr;
  }
}

/* --- Player do vídeo --- */
.proof-video__media {
  margin: 0;
}

/* Palco: segura o player + o brilho "ambient" que vaza para fora da moldura */
.proof-video__stage {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  isolation: isolate;
}

/* Ambient / efeito cinema: frames borrados desenhados atrás do vídeo */
.proof-video__ambient {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110%;
  height: 106%;
  /* translateZ(0) força camada própria de composição: o blur não repinta a página */
  transform: translate(-50%, -50%) scale(1.03) translateZ(0);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  filter: blur(26px) saturate(1.35);
  transition: opacity 0.45s var(--ease);
  will-change: opacity;
}

.proof-video__ambient.is-on {
  opacity: 0.7;
}

.proof-video__player {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card), var(--inset-highlight);
}

.proof-video__player::after {
  /* brilho sutil no topo enquanto o vídeo ainda não está tocando */
  content: "";
  position: absolute;
  inset: -40% -40% auto -40%;
  height: 70%;
  background: radial-gradient(45% 60% at 50% 0%, rgba(124, 58, 237, 0.28) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.6s var(--ease);
}

.proof-video__player.is-playing::after {
  opacity: 0;
}

.proof-video__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  background: var(--bg-card);
}

/* Gradiente inferior + selo do case (somem ao tocar) */
.proof-video__shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 0, 20, 0.78) 100%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s var(--ease);
}

.proof-video__tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  background: rgba(3, 0, 20, 0.55);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s var(--ease);
}

.proof-video__player.is-playing .proof-video__shade,
.proof-video__player.is-playing .proof-video__tag {
  opacity: 0;
  pointer-events: none;
}

/* --- Botão de play --- */
.proof-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding: 0;
  padding-left: 4px;
  /* compensa o triângulo para centralizar opticamente */
  color: #14091f;
  background: var(--gradient-primary);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 32px rgba(124, 58, 237, 0.5);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.proof-video__play:hover {
  transform: scale(1.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 16px 40px rgba(124, 58, 237, 0.65);
}

.proof-video__play:active {
  transform: scale(0.98);
}

.proof-video__play svg {
  position: relative;
  z-index: 1;
}

.proof-video__play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(186, 156, 255, 0.6);
  animation: proof-video-pulse 2.4s var(--ease) infinite;
}

.proof-video__player.is-playing .proof-video__play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

@keyframes proof-video-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-video__play-ring {
    animation: none;
  }
}

/* --- Controles customizados --- */
.pv-controls {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 1.75rem 0.7rem 0.7rem;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 0, 20, 0.85) 100%);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.proof-video__stage.pv-show .pv-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pv-ctl {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  padding: 0;
  color: var(--text-primary);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.15s var(--ease);
}

.pv-ctl:hover {
  color: var(--brand-lavender);
  background: rgba(255, 255, 255, 0.12);
}

.pv-ctl:active {
  transform: scale(0.92);
}

.pv-ico {
  display: block;
}

.pv-ico--pause,
.pv-ico--mute {
  display: none;
}

.proof-video__player.is-playing .pv-ico--play {
  display: none;
}

.proof-video__player.is-playing .pv-ico--pause {
  display: block;
}

.proof-video__player.is-muted .pv-ico--vol {
  display: none;
}

.proof-video__player.is-muted .pv-ico--mute {
  display: block;
}

.pv-time {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(244, 240, 255, 0.85);
  font-variant-numeric: tabular-nums;
}

.pv-track {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 6px;
  margin-inline: 0.2rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  touch-action: none;
}

.pv-track__buffer,
.pv-track__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: inherit;
}

.pv-track__buffer {
  background: rgba(255, 255, 255, 0.28);
}

.pv-track__fill {
  background: var(--gradient-primary);
}

.pv-track__thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s var(--ease);
  pointer-events: none;
}

.pv-track:hover .pv-track__thumb,
.pv-track.is-dragging .pv-track__thumb,
.pv-track:focus-visible .pv-track__thumb {
  transform: translate(-50%, -50%) scale(1);
}

.pv-track:focus-visible {
  outline: 2px solid var(--brand-lavender);
  outline-offset: 4px;
}

/* --- Coluna de texto --- */
.proof-video__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.proof-video__lead {
  max-width: 52ch;
}

.proof-video__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  margin: 0.25rem 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border-light);
}

.proof-video__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.proof-video__stats strong {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proof-video__stats span {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.proof-video__actions {
  margin-top: 0.5rem;
}

@media (max-width: 520px) {
  .proof-video__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .proof-video__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .proof-video__actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   PROBLEMA
   ========================================================================== */
.problem__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-lavender);
  margin-bottom: 0.85rem;
}

.problem__question {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-primary);
  margin: 0;
}

/* ==========================================================================
   FUNCIONALIDADES
   ========================================================================== */
.feature__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.feature__index {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brand-lavender);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(186, 156, 255, 0.25);
  border-radius: var(--radius-pill);
}

.feature__benefit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

.feature__benefit::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.features__filters {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 600px) {
  .features__filters {
    flex-direction: column;
  }
}

/* ==========================================================================
   COMO FUNCIONA (timeline)
   ========================================================================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: step;
}

.timeline__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.timeline__step {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-lavender);
  background: rgba(186, 156, 255, 0.1);
  border: 1px solid rgba(186, 156, 255, 0.25);
  border-radius: var(--radius-md);
}

.timeline__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timeline__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}

.timeline__meta strong {
  color: var(--text-secondary);
  font-weight: 600;
}

@media (max-width: 540px) {
  .timeline__item {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================================================
   RESULTADOS
   ========================================================================== */
.result {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.result__value {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
}

/* --- Destaque: 3 métricas maiores --- */
.results__grid--hero {
  margin-bottom: clamp(1.5rem, 3vw, 2.75rem);
}

.results__grid--hero .result {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  gap: 0.8rem;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.16) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(186, 156, 255, 0.32);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(186, 156, 255, 0.16);
}

.results__grid--hero .result__value {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
}

.results__grid--hero .result .heading-sm {
  font-size: 1.25rem;
}

/* --- 6 cards menores, em bloco mais estreito (não ocupam toda a largura) --- */
.results__more {
  margin-inline: auto;
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .results__more { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .results__more { grid-template-columns: 1fr; }
}

/* Compacta os cards secundários */
.results__more .result-card,
.results__more .testimonial-card {
  padding: 1.2rem;
}

.results__more .result-card div {
  width: 2.25rem;
  height: 2.25rem;
}

.results__more .result-card h3 {
  margin-top: 0.85rem;
  font-size: 1.02rem;
  line-height: 1.4;
}

.results__more .result-card p,
.results__more .testimonial-card blockquote {
  font-size: 0.82rem;
  line-height: 1.5rem;
}

.results__more .testimonial-card figcaption {
  margin-top: 1rem;
  padding-top: 0.85rem;
}

.results__note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.testimonial__quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial__author span {
  display: flex;
  flex-direction: column;
}

.testimonial__author strong {
  font-size: 0.95rem;
}

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

.testimonial__avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #14091f;
  background: var(--gradient-primary);
  border-radius: 50%;
}

/* ==========================================================================
   PLANOS
   ========================================================================== */
.plans__grid {
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.plan--featured {
  transform: translateY(-8px);
}

@media (max-width: 600px) {
  .plan--featured {
    transform: none;
  }
}

.plan__tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #14091f;
  background: var(--gradient-primary);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

.plan__head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.plan__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.plan__scope {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-dim);
}

.plan__amount {
  font-size: 1.85rem;
  font-weight: 600;
}

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

.plan__setup {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.plan__setup strong {
  color: var(--text-primary);
}

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex-grow: 1;
}

.plan__features li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-lavender);
  box-shadow: 0 0 8px rgba(186, 156, 255, 0.6);
}

.plans__note {
  margin-top: 2.5rem;
  font-size: 0.88rem;
  max-width: 620px;
  margin-inline: auto;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}

.faq__item[open] {
  border-color: rgba(186, 156, 255, 0.35);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--brand-lavender);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

.faq__icon::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}

.faq__icon::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px;
}

.faq__item[open] .faq__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__answer {
  padding: 0 1.4rem 1.3rem;
  color: var(--text-secondary);
}

.faq__answer p {
  margin: 0;
  line-height: 1.65;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final__card {
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

.cta-final__sub {
  max-width: 52ch;
}

.cta-final__actions {
  justify-content: center;
  margin-top: 0.5rem;
}

.cta-final__reassure {
  font-size: 0.85rem;
  margin: 0.5rem 0 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-soft);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* impede o logo de esticar/centralizar na coluna */
  gap: 1rem;
  max-width: 280px;
}

.site-footer__brand img {
  height: 24px;
  width: auto;
  align-self: flex-start;
}

.site-footer__brand p {
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer__title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
}

.site-footer__col a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}

.site-footer__col a:hover {
  color: var(--text-primary);
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.site-footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.site-footer__social a:hover {
  color: var(--text-primary);
  border-color: rgba(186, 156, 255, 0.4);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

.site-footer__bottom p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 460px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   HOVER UNIFICADO DOS CARDS
   Realce de fundo claro + transição suave (entrada/saída), sem borda.
   O !important na transição fura o reset global de prefers-reduced-motion.
   ========================================================================== */
.card,
.problem-card,
.result-card,
.testimonial-card,
.pricing-card,
.module-feature,
.process-step,
.faq-item,
.difference-list article {
  transition: all 0.2s ease-in-out !important;
}

.card:hover,
.problem-card:hover,
.result-card:hover,
.testimonial-card:hover,
.pricing-card:hover,
.module-feature:hover,
.process-step:hover,
.faq-item:hover,
.difference-list article:hover {
  background-color: rgba(255, 255, 255, 0.07) !important;
  transform: none !important;
}

/* Remove a borda lavanda e o glow dos hovers antigos */
.card:hover,
.problem-card:hover {
  border-color: var(--border-light) !important;
}
.card:hover {
  box-shadow: none !important;
}

/* Mantém o plano em destaque elevado mesmo no hover */
.plan--featured:hover {
  transform: translateY(-8px) !important;
}

/* ==========================================================================
   DIFERENCIAL — ícone do header + símbolo 3D flutuante
   ========================================================================== */
.site-header__logo--icon img {
  height: 30px !important;
  width: auto !important;
}

.difference-media--symbol {
  position: relative;
  max-width: 26rem;
  display: grid;
  place-items: center;
}

/* Glow colorido atrás do símbolo */
.difference-media__glow {
  position: absolute;
  inset: 6%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.55) 0%, rgba(229, 156, 255, 0.22) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.difference-media__symbol {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 22rem;
  /* Flutua em loop (subindo/descendo). duration/iteration com !important
     para furar o reset global de prefers-reduced-motion. */
  animation-name: duby-float;
  animation-timing-function: ease-in-out;
  animation-duration: 4.5s !important;
  animation-iteration-count: infinite !important;
  will-change: transform;
}

@keyframes duby-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
