/* ════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════ */
:root {
  --c-bg: #080808;
  --c-surface: #101010;
  --c-surface2: #161616;
  --c-surface3: #1c1c1c;
  --c-border: rgba(255, 255, 255, .07);
  --c-border-md: rgba(255, 255, 255, .12);
  --c-text: #f2ede4;
  --c-muted: rgba(242, 237, 228, .42);
  --c-muted2: rgba(242, 237, 228, .22);
  --c-gold: #b08a55;
  --c-gold-dim: rgba(176, 138, 85, .18);
  --c-gold-glow: rgba(176, 138, 85, .08);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-card: 20px;

  --maxw: 1180px;
  --nav-h: 68px;

  --f-display: 'Outfit', system-ui, sans-serif;
  --f-body: 'Outfit', system-ui, sans-serif;

  --ease: cubic-bezier(.22, .68, 0, 1.2);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

ul {
  list-style: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════ */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
}

.sec {
  padding-block: 110px;
}

.sec + .sec {
  border-top: 1px solid var(--c-border);
}

/* ════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--c-gold);
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--c-gold);
  opacity: .65;
}

.display {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.sec-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.sec-lead {
  max-width: 480px;
  margin-top: 14px;
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.75;
}

.sec-head {
  margin-bottom: 60px;
}

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding-inline: 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: opacity .2s, transform .2s var(--ease), border-color .2s, background .2s;
}

.btn:hover {
  opacity: .84;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--solid {
  background: var(--c-text);
  color: var(--c-bg);
}

.btn--ghost {
  border: 1px solid var(--c-border-md);
  background: transparent;
  color: var(--c-text);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, .3);
}

.btn--gold {
  background: var(--c-gold);
  color: #0a0808;
}

.btn--lg {
  height: 56px;
  padding-inline: 36px;
  font-size: 14px;
}

/* ════════════════════════════════════════════
   NAV — MENU FLUTUANTE ARREDONDADO
════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 200;
  height: auto;
  display: flex;
  align-items: center;
  pointer-events: none;
}

#nav.scrolled {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}

.nav-inner {
  height: 64px;
  width: 90%;
  max-width: 90%;
  margin-inline: auto;
  padding: 0 18px 0 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  background: rgba(8, 8, 8, 0.459);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);

  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  pointer-events: auto;
}

.nav-logo {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--c-text);
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--c-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  color: rgba(242, 237, 228, 0.42);
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--c-text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-right .btn {
  height: 48px;
  padding-inline: 30px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .02em;
}

.nav-right .btn--solid {
  background: #F4F4F2;
  color: #050505;
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--c-text);
  transition: transform .3s, opacity .3s;
}

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

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

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

/* Mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  padding-top: 96px;
  background: rgba(5,5,5,.97);
  backdrop-filter: blur(20px);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--c-text);
  transition: color .2s;
}

.nav-mobile a:hover {
  color: var(--c-gold);
}

@media (max-width: 768px) {
  #nav {
    top: 12px;
  }

  #hero {
    padding-top: 120px;
  }

  .nav-inner {
    height: 56px;
    padding: 0 14px 0 20px;
    border-radius: 999px;
  }

  .nav-logo {
    font-size: 20px;
  }

  .nav-links,
  .nav-burger {
    display: none;
  }

  .nav-right .btn.mobile-cta {
    display: inline-flex;
    height: 40px;
    padding-inline: 18px;
    font-size: 11px;
  }

  .nav-mobile {
    top: 0;
    padding-top: 90px;
  }
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
  padding-top: 140px;
  padding-bottom: 60px;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at 30% 40%, rgba(176, 138, 85, .06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-ghost {
  position: absolute;
  right: -2%;
  bottom: -5%;
  color: rgba(255, 255, 255, .018);
  font-family: var(--f-display);
  font-size: clamp(120px, 18vw, 2600px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-title {
  margin-bottom: 28px;
  font-size: clamp(52px, 8.5vw, 116px);
}

.hero-title em {
  color: var(--c-gold);
  font-style: normal;
  font-weight: 600;
}

.hero-sub {
  max-width: 480px;
  margin-bottom: 40px;
  color: var(--c-muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* ════════════════════════════════════════════
   TICKER
════════════════════════════════════════════ */
.ticker-section {
  overflow: hidden;
  padding-block: 18px;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: ticker 45s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  flex-shrink: 0;
  align-items: baseline;
  gap: 7px;
  padding-inline: 44px;
  color: var(--c-muted);
  font-size: 15px;
  letter-spacing: .04em;
}

.ticker-item strong {
  color: var(--c-text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.ticker-sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-inline: 2px;
  border-radius: 50%;
  background: var(--c-border-md);
  vertical-align: middle;
}

/* ════════════════════════════════════════════
   DIAGNÓSTICO — STICKY LEFT
════════════════════════════════════════════ */

.diag-section {
  position: relative;
}

.diag-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.25fr);
  gap: 80px;
  align-items: start;
}

.diag-sticky {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
  align-self: start;
}

.diag-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.diag-block {
  width: 100%;
}

.diag-col-title {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--c-muted);
  margin-bottom: 24px;
  letter-spacing: .02em;
}

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

.symptom-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  min-height: 104px;
  padding: 26px 28px 26px 30px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 2px solid rgba(176, 138, 85, .35);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.7;
  transition: border-color .25s, background .25s, transform .25s var(--ease-out);
}

.symptom-item:hover {
  border-left-color: var(--c-gold);
  background: var(--c-surface2);
  transform: translateY(-2px);
  box-shadow: inset 3px 0 18px rgba(176, 138, 85, .08);
}

.symptom-item::before {
  content: '“';
  font-family: var(--f-display);
  font-size: 86px;
  font-weight: 300;
  color: var(--c-gold);
  opacity: .22;
  line-height: .75;
  margin-top: 4px;
  flex-shrink: 0;
  transition: opacity .25s ease, color .25s ease, text-shadow .25s ease, transform .25s var(--ease-out);
}

.symptom-item:hover::before {
  opacity: .9;
  color: var(--c-gold);
  text-shadow: 0 0 18px rgba(176, 138, 85, .45);
  transform: scale(1.04);
}

.real-diag {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.real-diag-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  min-height: 136px;
  padding: 30px 32px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background .25s, border-color .25s, transform .25s var(--ease-out);
}

.real-diag-item:hover {
  background: var(--c-surface2);
  border-color: var(--c-border-md);
  transform: translateY(-2px);
  box-shadow: inset 0 0 24px rgba(176, 138, 85, .045);
}

.rdi-num {
  font-family: var(--f-display);
  font-size: 78px;
  font-weight: 300;
  color: rgba(176, 138, 85, .22);
  line-height: .9;
  letter-spacing: -.04em;
  transition: color .25s ease, opacity .25s ease, text-shadow .25s ease, transform .25s var(--ease-out);
}

.real-diag-item:hover .rdi-num {
  color: var(--c-gold);
  opacity: .95;
  text-shadow: 0 0 20px rgba(176, 138, 85, .42);
  transform: translateX(2px) scale(1.03);
}

.rdi-text {
  position: relative;
  z-index: 2;
  align-self: center;
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.75;
}

.rdi-text strong {
  color: var(--c-text);
  font-weight: 500;
}

/* ════════════════════════════════════════════
   DIFERENCIAIS — UM CARD POR VEZ
════════════════════════════════════════════ */

.diff-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;

  min-height: 170px;
  padding: 36px 42px;

  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: none; /* remove borda lateral */
  border-radius: var(--r-card);

  overflow: hidden;
  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s var(--ease-out);
  /* remove box-shadow lateral */
}

.diff-card:hover {
  background: var(--c-surface2);
  border-color: var(--c-border-md);
  transform: translateY(-2px);
  /* remove box-shadow lateral */
}

.diff-n {
  font-family: var(--f-display);
  font-size: 86px;
  font-weight: 300;
  color: rgba(176, 138, 85, .22);
  line-height: .85;
  letter-spacing: -.05em;

  transition:
    color .25s ease,
    opacity .25s ease,
    text-shadow .25s ease,
    transform .25s var(--ease-out);
}

.diff-card:hover .diff-n {
  color: var(--c-gold);
  opacity: .95;
  text-shadow: 0 0 22px rgba(176, 138, 85, .42);
  transform: translateX(3px) scale(1.03);
}

.diff-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: .01em;
  margin-bottom: 8px;
}

.diff-body {
  max-width: 680px;
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.75;
}

/* Apenas borda inferior animada */
.diff-line {
  position: absolute;
  left: 42px;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  opacity: .85;
  box-shadow: 0 0 16px rgba(176, 138, 85, .45);
  transition: width .45s var(--ease-out);
}

.diff-card:hover .diff-line {
  width: calc(100% - 84px);
}

.diff-grid {
  display: flex;
  flex-direction: column;
  gap: 18px; /* Aumentei de 18px para 28px para mais espaço */
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

/* ════════════════════════════════════════════
   FLUXO — Cards separados com efeito hover
════════════════════════════════════════════ */
.flow-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px; /* aumenta o espaçamento entre os cards */
}

.flow-step {
  position: relative;
  padding: 44px 32px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  transition: 
    background .25s ease,
    border-color .25s ease,
    transform .25s var(--ease-out),
    box-shadow .25s ease;
}

.flow-step:hover {
  background: var(--c-surface2);
  border-color: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(196,160,98,.25); /* glow ao redor */
}

.flow-n {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .04);
  font-size: 66px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.08em;
  transition:
    color .25s ease,
    opacity .25s ease,
    text-shadow .25s ease,
    transform .25s var(--ease-out);
}

.flow-step:hover .flow-n {
  color: var(--c-gold);
  opacity: 1;
  text-shadow: 0 0 22px rgba(196,160,98,.45);
  transform: scale(1.05);
}

.flow-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.flow-body {
  color: var(--c-muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.flow-step::after {
  content: '';
  position: absolute;
  top: 44px;
  right: 0;
  width: 1px;
  height: 36px;
  background: var(--c-border-md);
}

.flow-step:last-child::after {
  display: none;
}

/* ════════════════════════════════════════════
   PORTFÓLIO
════════════════════════════════════════════ */
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.port-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  background: var(--c-surface);
  cursor: pointer;
}

.port-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
}

.port-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.port-card:hover .port-media img {
  transform: scale(1.05);
}

.port-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #141414 0%, #0e0e0e 100%);
}

.port-placeholder svg {
  opacity: .15;
}

.port-placeholder span {
  color: var(--c-muted2);
  font-size: 11px;
}

.port-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  background: linear-gradient(to top, rgba(5, 5, 5, .9) 0%, rgba(5, 5, 5, .15) 45%, transparent 65%);
  opacity: 0;
  transition: opacity .35s;
}

.port-card:hover .port-overlay {
  opacity: 1;
}

.port-tag {
  margin-bottom: 5px;
  color: var(--c-gold);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.port-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.port-role {
  margin-top: 3px;
  color: var(--c-muted);
  font-size: 12px;
}

.port-label {
  display: none;
  padding: 14px 16px;
  border-top: 1px solid var(--c-border);
}

.port-label .port-tag {
  margin-bottom: 2px;
}

.port-label .port-name {
  font-size: 13.5px;
}

/* ════════════════════════════════════════════
   PLANOS
════════════════════════════════════════════ */
.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 32px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  background: var(--c-surface);
  transition: border-color .3s, transform .3s var(--ease-out), background .3s;
}

.plan-card:hover {
  border-color: var(--c-border-md);
}

.plan-card.featured {
  border-color: rgba(176, 138, 85, .35);
  background: var(--c-surface2);
}

.plan-card.featured:hover {
  border-color: rgba(176, 138, 85, .55);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 4px 14px;
  border-radius: 20px;
  background: var(--c-gold);
  color: #0a0808;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.plan-tier {
  margin-bottom: 6px;
  color: var(--c-gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.plan-name {
  margin-bottom: 4px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.04em;
}

.plan-desc {
  margin-bottom: 22px;
  color: var(--c-muted);
  font-size: 13px;
}

.plan-qty {
  margin-bottom: 6px;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.06em;
}

.plan-qty sub {
  color: var(--c-muted);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 400;
  vertical-align: baseline;
  letter-spacing: 0;
}

.plan-div {
  width: 100%;
  height: 1px;
  margin-block: 24px;
  background: var(--c-border);
}

.plan-features {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--c-muted);
  font-size: 13.5px;
}

.plan-features li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 5px;
  height: 1px;
  margin-top: 11px;
  background: var(--c-gold);
  opacity: .7;
}

.plan-card .btn {
  width: 100%;
}

/* ════════════════════════════════════════════
   FAQ — Cards individuais
════════════════════════════════════════════ */
.faq-list {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px; /* espaçamento entre cards */
}

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 20px 24px;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.faq-item:hover {
  background: var(--c-surface2);
  border-color: var(--c-gold);
  box-shadow: 0 0 18px rgba(196,160,98,.2);
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  color: var(--c-text);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  transition: color .2s;
}

.faq-btn:hover {
  color: var(--c-gold);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--c-border-md);
  border-radius: 50%;
  color: var(--c-muted);
  font-size: 17px;
  transition: transform .35s var(--ease), border-color .25s, color .25s;
}

.faq-item.is-open .faq-icon {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: rotate(45deg);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease-out);
  margin-top: 12px; /* separa o conteúdo do botão */
}

.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}

.faq-body-inner {
  overflow: hidden;
}

.faq-body-inner p {
  max-width: 640px;
  color: var(--c-muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.test-card {
  display: flex;
  flex-direction: column;
  padding: 36px 30px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  background: var(--c-surface);
  transition: border-color .3s;
}

.test-card:hover {
  border-color: var(--c-border-md);
}

.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.test-stars span {
  color: var(--c-gold);
  font-size: 12px;
}

.test-text {
  flex: 1;
  margin-bottom: 28px;
  color: var(--c-muted);
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-border-md);
  border-radius: 50%;
  background: var(--c-surface3);
  color: var(--c-gold);
  font-size: 15px;
  font-weight: 700;
}

.test-name {
  font-size: 14px;
  font-weight: 600;
}

.test-role {
  margin-top: 1px;
  color: var(--c-muted);
  font-size: 12px;
}

/* ════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════ */
#cta-final {
  position: relative;
  overflow: hidden;
  padding-block: 130px;
  text-align: center;
}

#cta-final::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(176, 138, 85, .07) 0%, transparent 65%);
  pointer-events: none;
  transform: translateX(-50%);
}

#cta-final .wrap {
  position: relative;
  z-index: 2;
}

#cta-final .eyebrow {
  justify-content: center;
}

#cta-final .sec-title {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 18px;
}

#cta-final p {
  max-width: 400px;
  margin-inline: auto;
  margin-bottom: 40px;
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  padding-block: 30px;
  border-top: 1px solid var(--c-border);
}

.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.foot-logo {
  color: var(--c-muted);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.foot-copy {
  color: var(--c-muted2);
  font-size: 12px;
}

/* ════════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 4px 24px rgba(34, 197, 94, .3);
  transition: transform .25s var(--ease), box-shadow .25s;
}

.wa-float:hover {
  box-shadow: 0 8px 32px rgba(34, 197, 94, .45);
  transform: scale(1.1);
}

.wa-float svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* ════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .18s; }
.reveal.delay-3 { transition-delay: .26s; }
.reveal.delay-4 { transition-delay: .34s; }
.reveal.delay-5 { transition-delay: .42s; }

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (min-width: 1025px) {
  .plan-card.featured {
    transform: translateY(-12px);
  }
}

@media (max-width: 1024px) {
  .diag-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .diag-sticky {
    position: static;
  }

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

  .flow-step::after {
    display: none;
  }

  .premium-card {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 44px 40px;
  }

  .plans-row,
  .test-grid {
    grid-template-columns: 1fr;
  }

  .plans-row {
    gap: 14px;
  }

  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 62px;
  }

  .wrap {
    padding-inline: 20px;
  }

  .sec {
    padding-block: 80px;
  }

  .nav-links,
  .nav-burger {
    display: none;
  }

  .nav-right .btn {
    display: none;
  }

  .nav-right .btn.mobile-cta {
    display: inline-flex;
    height: 40px;
    padding-inline: 18px;
    font-size: 11px;
  }

  .nav-right {
    gap: 8px;
  }

  .hero-title {
    font-size: clamp(44px, 12vw, 68px);
  }

  .hero-ghost {
    display: none;
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* DIFERENCIAIS MOBILE */
  .diff-grid {
    display: flex;
    flex-direction: column;
    gap: 18px; /* espaçamento entre os cards */
    border-radius: var(--r-md);
  }

  .diff-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 28px 24px;
  }

  .diff-n {
    font-size: 68px;
  }

  .diff-title {
    font-size: 18px;
  }

  .diff-body {
    font-size: 14.5px;
  }

  .diff-line {
    left: 24px;
  }

  .diff-card:hover .diff-line {
    width: calc(100% - 48px);
  }

  .flow-wrap {
    grid-template-columns: 1fr;
    border-radius: var(--r-md);
  }

  .flow-step {
    border-left: 1px solid var(--c-border-md);
  }

  .diag-layout {
    gap: 32px;
  }

  .real-diag-item {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 24px 22px;
  }

  .rdi-num {
    font-size: 52px;
    line-height: 1;
  }

  .port-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .port-label {
    display: block;
  }

  .port-overlay {
    display: none;
  }

  .premium-card {
    padding: 32px 24px;
  }

  .prem-title {
    font-size: 30px;
  }

  .premium-intro > .btn {
    display: none;
  }

  .prem-mobile-cta {
    display: inline-flex;
    width: 100%;
  }

  .test-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .test-grid::-webkit-scrollbar {
    display: none;
  }

  .test-card {
    flex: 0 0 calc(88vw - 40px);
    scroll-snap-align: start;
  }

  .foot-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

