﻿:root {
  --black: #01040B;
  --navy: #283B4A;
  --steel: #587585;
  --mist: #7B939F;
  --silver: #B6C1C7;
  --snow: #E1E7E7;
  --white: #FFFFFF;
  --gold: #d1b072;
  --green-wa: #25D366;
  --font: 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--snow);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html {
  /* allow natural overflow; layout fixes applied to address root causes */
}

/* ── ACCESSIBILITY: focus-visible and reduced-motion */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(225, 231, 231, 0.85);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* ─── TIPOGRAFIA ─── */
.t-display {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  font-stretch: condensed;
}
.t-headline { font-weight: 900; letter-spacing: -0.03em; line-height: 1.0; text-transform: uppercase; }
.t-label { font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.72rem; color: var(--mist); }
.t-body { font-weight: 400; line-height: 1.7; color: var(--silver); }
.t-caption { font-size: 0.8rem; color: var(--mist); font-weight: 400; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ─── GLASS ─── */
.glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(88,117,133,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.35s ease, background 0.35s ease;
}
.glass:hover {
  border-color: rgba(88,117,133,0.32);
  background: rgba(255,255,255,0.05);
}
.glass-strong {
  background: rgba(40,59,74,0.12);
  border: 1px solid rgba(88,117,133,0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ─── BOTÕES ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--snow);
  color: var(--black);
}
.btn-primary:hover { background: var(--white); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(225,231,231,0.15); }
.btn-secondary {
  background: transparent;
  color: var(--snow);
  border: 1px solid rgba(88,117,133,0.4);
}
.btn-secondary:hover { border-color: var(--mist); background: rgba(88,117,133,0.08); transform: translateY(-1px); }
.btn-wa {
  background: var(--green-wa);
  color: var(--white);
}
.btn-wa:hover { background: #1db954; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(37,211,102,0.2); }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(1,4,11,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(88,117,133,0.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

/* Marca oficial "ELIAS" usada na navbar e no rodapé */
.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;

  /*
    O SVG oficial possui fundo preto.
    O modo screen integra o preto ao fundo da página e preserva
    o lettering branco, inclusive quando a navbar está transparente.
  */
  mix-blend-mode: screen;
}

.brand-logo--nav {
  width: 165px;
  height: auto;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--mist);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--snow); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--snow); transition: var(--transition); }
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: rgba(1,4,11,0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  border-bottom: 1px solid rgba(88,117,133,0.2);
  flex-direction: column; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--snow); text-decoration: none; font-weight: 500; font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 12px 0; border-bottom: 1px solid rgba(88,117,133,0.1); }


@media (max-width: 768px) {
  .brand-logo--nav {
    width: 150px;
  }

  .brand-logo--footer {
    width: 185px;
  }
}

@media (max-width: 360px) {
  .brand-logo--nav {
    width: 138px;
  }

  .brand-logo--footer {
    width: 170px;
  }
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .nav-inner { justify-content: space-between; gap: 12px; }
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 68px; /* base: reserve navbar space */
  background: var(--black);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 54%;  /* rosto levemente à esquerda do centro */
  display: block;
}
/* Degradê esquerda: texto legível sem apagar o rosto */
.hero-overlay-left {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    270deg,
    rgba(1,4,11,0.96) 0%,
    rgba(1,4,11,0.85) 25%,
    rgba(1,4,11,0.50) 52%,
    rgba(1,4,11,0.12) 72%,
    transparent 100%
  );
  pointer-events: none;
}
/* Degradê inferior: ancora stats */
.hero-overlay-bottom {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top,
    rgba(1,4,11,0.95) 0%,
    rgba(1,4,11,0.40) 18%,
    transparent 45%
  );
  pointer-events: none;
}
.hero-credential {
  position: absolute; top: 96px; left: 32px; z-index: 3;
  padding: 10px 16px; border-radius: 8px;
  border: 1px solid rgba(88,117,133,0.20);
  background: rgba(1,4,11,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: left;
  opacity: 0;
  animation: wordmark-rise 0.7s ease 1.2s forwards;
}
.hero-cred-tag  { font-size: 0.6rem; color: var(--mist); text-transform: uppercase; letter-spacing: 0.12em; }
.hero-cred-name { font-size: 0.85rem; font-weight: 700; color: var(--snow); margin-top: 3px; }
.hero-cred-crn  { font-size: 0.62rem; color: var(--steel); margin-top: 2px; }
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; padding-bottom: 80px;
  display: flex;
  justify-content: flex-end;  /* conteúdo à direita */
}
.hero-content {
  max-width: 560px;
  width: 100%;
}
/* Animação de entrada: cada elemento vem da direita */
.hero-content .hero-eyebrow { opacity: 0; transform: translateX(32px); }
.hero-content .hero-title   { opacity: 0; transform: translateX(40px); }
.hero-content .hero-sub     { opacity: 0; transform: translateX(32px); }
.hero-content .hero-actions { opacity: 0; transform: translateX(24px); }
.hero-content .hero-stats   { opacity: 0; transform: translateX(24px); }
/* Estado animado — adicionado via JS após load */
.hero-content.hero-animated .hero-eyebrow {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.6s ease 0.1s, transform 0.7s cubic-bezier(0.34,1.2,0.64,1) 0.1s;
}
.hero-content.hero-animated .hero-title {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.7s ease 0.25s, transform 0.8s cubic-bezier(0.34,1.15,0.64,1) 0.25s;
}
.hero-content.hero-animated .hero-sub {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.65s ease 0.45s, transform 0.75s cubic-bezier(0.34,1.1,0.64,1) 0.45s;
}
.hero-content.hero-animated .hero-actions {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.6s ease 0.6s, transform 0.7s cubic-bezier(0.34,1.1,0.64,1) 0.6s;
}
.hero-content.hero-animated .hero-stats {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.6s ease 0.75s, transform 0.7s cubic-bezier(0.34,1.1,0.64,1) 0.75s;
}

/* Desktop two-column hero layout */
@media (min-width: 1024px) {
  /* Desktop: add a bit more top offset to clear fixed navbar */
  #hero { min-height: 82vh; padding-top: 92px; }
  .hero-inner.hero-grid {
    display: grid;
    /* photo maior para presença premium: favor photo 58% / text 42% */
    grid-template-columns: 58% 42%;
    gap: 20px; /* aproximar foto e texto */
    align-items: start;
    justify-content: center;
    padding-bottom: 70px;
  }
  .hero-col-photo { position: relative; z-index: 1; }
    .hero-photo {
      position: relative;
      /* aumentar levemente a altura útil da foto sem cortar demais */
      height: calc(88vh - 160px);
      overflow: hidden;
      border-radius: 14px;
      box-shadow: 0 34px 90px rgba(1,4,11,0.66);
    }
  .hero-photo img {
    width:100%; height:100%; object-fit:cover;
    /* enquadramento levemente à esquerda com rosto centralizado e sem corte incômodo */
    object-position: 30% 52%; display:block;
    transform: scale(1.02);
  }
  /* place credential as badge over photo bottom-left */
  .hero-credential { position: absolute; left: 20px; bottom: 20px; top: auto; opacity: 1; z-index: 5; }
  .hero-col-content { padding: 8px 0 8px 12px; }
  .hero-content { max-width: 680px; }
  .hero-sub { max-width: 560px; }
  .hero-actions { margin-top: 8px; }
  .hero-stats { margin-top: 18px; }
}

/* Hero benefit chips and specialties */
.hero-benefits { display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.benefit-chip {
  display:inline-block; padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,0.03); border:1px solid rgba(88,117,133,0.12);
  color: var(--snow); font-size:0.85rem; font-weight:600;
}

/* Specialties line under photo (desktop only) */
.hero-specialties { display:none; margin-top:14px; gap:12px; color:var(--mist); font-size:0.85rem; }
.hero-specialties span { margin-right:12px; padding:6px 0; opacity:0.9 }

@media (min-width:1024px) {
  .hero-actions { flex-wrap: nowrap; align-items: center; }
  .hero-benefits { margin-top:12px; flex-wrap: nowrap; align-items: center; }
  /* hide specialties: causes visual noise and misalignment */
  .hero-specialties { display: none !important; }
}

@media (max-width:1024px) {
  .hero-credential,
  .hero-specialties {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
  }
}

@media (max-width:1023px) {
  .hero-benefits { justify-content:flex-start; }
  .hero-specialties { display:none; }
}

/* Ensure no horizontal scroll on small viewports when switching */
@media (max-width: 1023px) {
  #hero {
    padding-top: 92px;
    width: 100%;
    overflow: hidden;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    min-width: 0;
    align-items: flex-start;
  }
  .hero-col-photo,
  .hero-col-content,
  .hero-actions,
  .hero-stats,
  .hero-content {
    min-width: 0;
  }
  .hero-col-photo {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 520px;
  }
  .hero-col-photo .hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }
  .hero-col-photo .hero-photo img,
  .hero-col-photo,
  .hero-inner,
  .hero-content,
  .hero-actions,
  .hero-stats {
    min-width: 0;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0 16px;
  }
  .hero-sub {
    max-width: 100%;
  }
  .hero-actions {
    width: 100%;
    gap: 12px;
    justify-content: flex-start;
  }
  .hero-actions a {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
  }
  .hero-stats > div {
    min-width: 0;
    flex: 1 1 120px;
  }
  .hero-credential {
    display: none !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    visibility: hidden !important;
  }
  .hero-specialties {
    display: none !important;
  }
  .wa-float {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 18px;
  }
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--steel); flex-shrink: 0; }
.hero-title {
  font-size: clamp(52px, 6.5vw, 86px);
  margin-bottom: 20px; color: var(--white);
  text-shadow: 0 2px 32px rgba(1,4,11,0.6);
  line-height: 0.95;
}
.hero-title span { color: var(--silver); }
.hero-sub {
  font-size: 1rem; color: rgba(182,193,199,0.90);
  margin-bottom: 32px; max-width: 400px; line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 28px;
  margin-top: 18px; padding-top: 12px;
  border-top: 1px solid rgba(88,117,133,0.16);
}
.hero-stat-num  { 
  font-size: 2rem; font-weight: 900; color: var(--snow); 
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}
.hero-stat-label { font-size: 0.68rem; color: var(--mist); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* ─── SOBRE ─── */
#sobre {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
/* Glow sutil no centro — profundidade sem foto */
#sobre::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(40,59,74,0.35) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; z-index: 0;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative; z-index: 1;
}
/* Coluna esquerda: logo animada */
.sobre-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.sobre-logo-symbol {
  width: 160px; height: auto;
  transition: filter 0.4s ease;
}
.sobre-logo-symbol.animated {
  opacity: 1;
  transform: scale(1);
}
.sobre-logo-wordmark {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}
.sobre-logo-wordmark.animated {
  opacity: 1;
  transform: translateY(0);
}
.sobre-logo-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  text-align: center;
  opacity: 0;
  transition: opacity 0.9s ease 0.6s;
}
.sobre-logo-tagline.animated { opacity: 1; }
/* Linha separadora animada */
.sobre-divider-line {
  width: 1px; height: 0;
  background: linear-gradient(to bottom, transparent, var(--steel), transparent);
  position: absolute; right: -36px; top: 10%; bottom: 10%;
  transition: height 1.2s ease 0.4s;
  align-self: stretch;
}
/* Coluna direita: conteúdo */
.sobre-content { }
.sobre-quote {
  font-size: 1.05rem; font-weight: 500; color: var(--snow);
  line-height: 1.6; border-left: 2px solid var(--steel);
  padding-left: 18px; margin-bottom: 24px; font-style: italic;
}
.sobre-text { color: var(--silver); margin-bottom: 28px; font-size: 0.9rem; line-height: 1.7; }
.sobre-credentials { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.cred-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: var(--radius-sm);
}
.cred-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--steel); flex-shrink: 0; }
.cred-text { font-size: 0.845rem; color: var(--silver); }

/* ─── DIFERENCIAIS ─── */
#diferenciais {
  background: linear-gradient(180deg, var(--black) 0%, #050d14 100%);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.diff-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.diff-card:hover::before { opacity: 1; }
.diff-card:hover { transform: translateY(-4px); border-color: rgba(88,117,133,0.35) !important; }
.diff-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.diff-icon svg { width: 100%; height: 100%; }
.diff-title { font-size: 1.05rem; font-weight: 700; color: var(--snow); margin-bottom: 10px; letter-spacing: -0.01em; }
.diff-text { font-size: 0.875rem; color: var(--mist); line-height: 1.65; }

/* ─── RESULTADOS / ANTES-DEPOIS ─── */
#resultados { background: #030810; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.result-card {
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.result-card:hover { transform: translateY(-3px); }
.result-num {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--snow);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.result-num-accent { color: var(--steel); }
.result-what { font-size: 0.78rem; color: var(--mist); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.result-name { font-size: 0.875rem; color: var(--silver); font-weight: 500; }
.result-time { font-size: 0.75rem; color: var(--mist); margin-top: 2px; }

/* Antes e Depois */


/* ─── DEPOIMENTOS ─── */
#depoimentos { background: var(--black); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 28px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(1,4,11,0.65);
}

/* Texto principal */
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--silver);
  margin-bottom: 22px;
  font-style: italic;
  flex: 1;
}

/* ── Mini aba de identidade no rodapé ── */
.testimonial-meta-tab {
  margin-top: auto;
  padding: 13px 15px;
  border-radius: 11px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(88,117,133,0.15);
  flex-shrink: 0;
}

.testimonial-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
}

.testimonial-person {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
  min-width: 0;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--snow);
  white-space: nowrap;
}

.testimonial-age {
  font-size: 0.72rem;
  color: var(--mist);
  white-space: nowrap;
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  font-size: 0.75rem;
  color: #f0b429;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.testimonial-result {
  font-size: 0.72rem;
  color: var(--steel);
  letter-spacing: 0.04em;
}

/* Grid de cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* Esconder elementos legados */
.test-stars, .test-author, .test-avatar,
.test-name,  .test-role,   .test-text { display: none; }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card  { min-height: auto; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .process-step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 0 16px;
    padding-bottom: 28px;
  }

  .process-steps::before {
    left: 28px;
    transform: none;
  }

  .process-step:nth-child(odd) .step-spacer,
  .process-step:nth-child(even) .step-spacer {
    display: none;
  }

  .process-step:nth-child(odd) .step-num,
  .process-step:nth-child(even) .step-num {
    grid-column: 1;
    grid-row: 1;
  }

  .process-step:nth-child(odd) .step-content,
  .process-step:nth-child(even) .step-content {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .step-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  #processo .section-header {
    margin-bottom: 36px;
  }

  .process-steps {
    gap: 22px;
  }

  .process-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0 14px;
    padding-bottom: 20px;
  }

  .process-steps::before {
    left: 24px;
  }

  .step-num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .step-content {
    padding: 18px;
    border-radius: 16px;
  }

  .step-title {
    font-size: 0.98rem;
  }

  .step-desc {
    font-size: 0.9rem;
    line-height: 1.65;
  }
}

/* ─── PROCESSO ─── */
#processo {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#processo .section-header {
  text-align: center;
  margin-bottom: 48px;
}

#processo .section-title {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--white);
}

#processo .section-sub {
  margin: 12px auto 0;
  max-width: 640px;
  color: var(--silver);
  line-height: 1.8;
}

.process-steps {
  position: relative;
  display: grid;
  gap: 32px;
  padding: 16px 0 0;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 28px);
  background: rgba(225, 231, 231, 0.12);
  z-index: 0;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: flex-start;
  gap: 0 20px;
}

.step-spacer {
  min-width: 0;
}

.process-step:nth-child(odd) .step-spacer {
  grid-column: 1;
}

.process-step:nth-child(odd) .step-num {
  grid-column: 2;
}

.process-step:nth-child(odd) .step-content {
  grid-column: 3;
  text-align: left;
}

.process-step:nth-child(even) .step-content {
  grid-column: 1;
  text-align: right;
}

.process-step:nth-child(even) .step-num {
  grid-column: 2;
}

.process-step:nth-child(even) .step-spacer {
  grid-column: 3;
}

.step-num {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(225, 231, 231, 0.18);
  color: var(--snow);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.12em;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.step-num-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at top left, rgba(225, 231, 231, 0.25), transparent 55%);
  z-index: -1;
}

.step-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(88, 117, 133, 0.16);
  border-radius: 18px;
  padding: 24px;
}

.step-title {
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.step-desc {
  color: var(--silver);
  font-size: 0.96rem;
  line-height: 1.75;
}

.step-connector {
  display: none;
}

@media (max-width: 900px) {
  .process-step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 0 16px;
    padding-bottom: 28px;
  }

  .process-steps::before {
    left: 28px;
    transform: none;
  }

  .process-step:nth-child(odd) .step-spacer,
  .process-step:nth-child(even) .step-spacer {
    display: none;
  }

  .process-step:nth-child(odd) .step-num,
  .process-step:nth-child(even) .step-num {
    grid-column: 1;
    grid-row: 1;
  }

  .process-step:nth-child(odd) .step-content,
  .process-step:nth-child(even) .step-content {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .step-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  #processo .section-header {
    margin-bottom: 36px;
  }

  .process-steps {
    gap: 22px;
  }

  .process-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0 14px;
    padding-bottom: 20px;
  }

  .process-steps::before {
    left: 24px;
  }

  .step-num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .step-content {
    padding: 18px;
    border-radius: 16px;
  }

  .step-title {
    font-size: 0.98rem;
  }

  .step-desc {
    font-size: 0.9rem;
    line-height: 1.65;
  }
}

/* ─── PLANOS ─── */
#planos { background: var(--black); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.plan-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.plan-card.featured {
  border-color: rgba(88,117,133,0.45) !important;
  transform: translateY(-8px);
}
.plan-card:hover { transform: translateY(-6px); }
.plan-card.featured:hover { transform: translateY(-12px); }
.plan-badge {
  background: var(--steel);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  text-align: center;
}
.plan-header { padding: 28px 24px 20px; }
.plan-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 6px;
}
.plan-tagline { font-size: 0.95rem; font-weight: 600; color: var(--snow); margin-bottom: 20px; line-height: 1.3; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-currency { font-size: 1rem; font-weight: 600; color: var(--mist); }
.plan-amount { font-size: 2.6rem; font-weight: 900; color: var(--snow); letter-spacing: -0.04em; line-height: 1; }
.plan-period { font-size: 0.8rem; color: var(--mist); margin-left: 4px; }
.plan-equiv { font-size: 0.75rem; color: var(--mist); margin-bottom: 20px; }
.plan-divider { height: 1px; background: rgba(88,117,133,0.15); margin: 0 24px; }
.plan-body { padding: 20px 24px 28px; }
.plan-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.plan-option {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(88,117,133,0.1);
  cursor: pointer;
  transition: var(--transition);
}
.plan-option:hover, .plan-option.selected {
  border-color: rgba(88,117,133,0.35);
  background: rgba(88,117,133,0.08);
}
.plan-option.selected .opt-period { color: var(--snow); }
.opt-period { color: var(--silver); font-weight: 500; }
.opt-price { color: var(--snow); font-weight: 700; }
.opt-save { font-size: 0.65rem; color: var(--steel); margin-left: 4px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.plan-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.825rem; color: var(--silver);
}
.feat-check { color: var(--steel); flex-shrink: 0; margin-top: 1px; font-size: 0.9rem; }
.plan-bonus {
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(88,117,133,0.08);
  border: 1px solid rgba(88,117,133,0.2);
  font-size: 0.78rem;
  color: var(--silver);
  margin-bottom: 20px;
}
.plan-bonus strong { color: var(--snow); }
.plan-obs { font-size: 0.72rem; color: var(--mist); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ─── BENEFÍCIOS ─── */
#beneficios { background: linear-gradient(180deg, #030810 0%, var(--black) 100%); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.benefit-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.benefit-item:hover { background: rgba(88,117,133,0.06); }
.benefit-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(88,117,133,0.15);
  border: 1px solid rgba(88,117,133,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--mist);
  font-size: 0.75rem;
}
.benefit-title { font-size: 0.9rem; font-weight: 600; color: var(--snow); margin-bottom: 4px; }
.benefit-text { font-size: 0.8rem; color: var(--mist); line-height: 1.6; }

/* ─── FAQ ─── */

#faq {
  background: var(--black);
}

.faq-list {
  width: 100%;
  max-width: 800px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  margin: 56px auto 0;
}

.faq-item {
  width: 100%;
  min-width: 0;

  overflow: hidden;

  border: 1px solid rgba(88, 117, 133, 0.18);
  border-radius: var(--radius-sm);

  background: transparent;

  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(88, 117, 133, 0.35);
}

/* Cabeçalho clicável da pergunta */
.faq-list .faq-q {
  width: 100%;
  min-width: 0;
  min-height: 64px;

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

  margin: 0;
  padding: 20px 24px;

  appearance: none;
  -webkit-appearance: none;

  border: 0;
  border-radius: 0;

  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;

  color: inherit;
  font: inherit;
  text-align: left;

  cursor: pointer;
  user-select: none;
}

.faq-list .faq-q:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-list .faq-q:focus-visible {
  outline: 2px solid rgba(182, 193, 199, 0.7);
  outline-offset: -3px;
}

.faq-q-text {
  flex: 1 1 auto;
  min-width: 0;

  color: var(--snow);

  font-size: 0.925rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;

  white-space: normal;
  overflow-wrap: break-word;
}

.faq-icon {
  width: 20px;
  height: 20px;

  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-left: auto;

  color: var(--mist);

  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;

  transition:
    transform var(--transition),
    color var(--transition);
}

.faq-item.open .faq-icon {
  color: var(--steel);
  transform: rotate(45deg);
}

.faq-a {
  width: 100%;
  min-width: 0;
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a-inner {
  width: 100%;
  min-width: 0;

  padding: 0 24px 20px;

  color: var(--silver);

  font-size: 0.875rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 600px;
}

/* Tablet */
@media (max-width: 768px) {
  .faq-list {
    margin-top: 40px;
    gap: 10px;
  }

  .faq-list .faq-q {
    min-height: 60px;
    padding: 18px 20px;
  }

  .faq-a-inner {
    padding: 0 20px 18px;
  }
}

/* Celular */
@media (max-width: 480px) {
  .faq-list {
    margin-top: 32px;
  }

  .faq-list .faq-q {
    min-height: 58px;
    padding: 17px 16px;
    gap: 12px;
  }

  .faq-q-text {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
    font-size: 1.1rem;
  }

  .faq-a-inner {
    padding: 0 16px 17px;
    font-size: 0.84rem;
    line-height: 1.65;
  }
}

/* ─── CTA PRINCIPAL ─── */
#cta-main {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f2e 50%, var(--black) 100%);
  position: relative; overflow: hidden;
}
#cta-main::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(88,117,133,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-main-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 680px; margin: 0 auto;
}
.cta-main-title { font-size: clamp(36px, 5vw, 58px); margin-bottom: 20px; color: var(--white); }
.cta-main-sub { font-size: 1.05rem; color: var(--silver); margin-bottom: 40px; line-height: 1.65; }
.cta-main-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FORMULÁRIO + CONTATO ─── */
#contato {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
/* Glow atmosférico de fundo */
#contato::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(40,59,74,0.22) 0%, transparent 70%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  pointer-events: none; z-index: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative; z-index: 1;
}

/* ── LADO ESQUERDO: formulário ── */
.contact-form { }
.contact-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.contact-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--steel);
}
.contact-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.contact-subline {
  font-size: 0.875rem;
  color: var(--mist);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Grupos de campo */
.form-group {
  margin-bottom: 16px;
  position: relative;
}
.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 7px;
  transition: color 0.2s ease;
}
.form-group:focus-within .form-label { color: var(--silver); }

/* Inputs refinados */
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(88,117,133,0.18);
  border-bottom: 1px solid rgba(88,117,133,0.35);
  border-radius: 8px;
  color: var(--snow);
  font-family: var(--font);
  font-size: 0.875rem;
  outline: none;
  appearance: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(88,117,133,0.45);
  border-bottom-color: var(--steel);
  background: rgba(88,117,133,0.04);
  box-shadow: 0 1px 0 0 var(--steel);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(123,147,159,0.38);
  font-size: 0.85rem;
}
.form-select option { background: #0a1520; color: var(--snow); }
.form-textarea {
  min-height: 90px;
  resize: none;
  line-height: 1.6;
}

/* Grid de 2 colunas para nome + WA */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Botão submit premium */
.form-submit {
  width: 100%;
  padding: 15px 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 30%; height: 200%;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%) skewX(-12deg);
  transition: none;
}
.form-submit:hover::before {
  animation: shimmer-move 0.7s ease forwards;
}
.form-note {
  font-size: 0.68rem;
  color: rgba(123,147,159,0.5);
  margin-top: 10px;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.form-note::before {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B939F' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

/* ── LADO DIREITO: info cards ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}
.contact-card {
  padding: 24px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-card:hover { border-color: rgba(88,117,133,0.32) !important; }

/* Ícone SVG minimalista */
.contact-card-icon-wrap {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(88,117,133,0.1);
  border: 1px solid rgba(88,117,133,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.contact-card-icon-wrap svg { width: 16px; height: 16px; stroke: var(--steel); }

.contact-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--snow);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.contact-card-text {
  font-size: 0.8rem;
  color: var(--mist);
  line-height: 1.6;
}
.contact-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--steel);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
  transition: color 0.2s ease, gap 0.2s ease;
  letter-spacing: 0.01em;
}
.contact-card-link:hover { color: var(--silver); gap: 8px; }

/* Card de WhatsApp — destaque */
.contact-card-wa {
  background: rgba(37,211,102,0.04) !important;
  border-color: rgba(37,211,102,0.14) !important;
}
.contact-card-wa:hover { border-color: rgba(37,211,102,0.28) !important; }
.contact-card-wa .contact-card-icon-wrap {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.2);
}
.contact-card-wa .contact-card-icon-wrap svg { stroke: #25D366; }
.contact-card-wa .contact-card-title { color: var(--snow); }

/* Botão WA dentro do card */
.wa-card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  margin-top: 14px;
  padding: 11px 20px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 7px;
  color: #4ade80;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}
.wa-card-btn:hover {
  background: rgba(37,211,102,0.2);
  border-color: rgba(37,211,102,0.4);
  color: #86efac;
  transform: translateY(-1px);
}
.wa-card-btn svg { flex-shrink: 0; }

/* Separador decorativo entre os dois lados */
.contact-divider {
  display: none;
}

/* Feedback */
#form-feedback {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .contact-grid { gap: 48px; }
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  #contato::before { display: none; }
}



/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.55); }
}
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ─── SEÇÃO HEADER REUTILIZÁVEL ─── */
.section-header { text-align: center; margin-bottom: 16px; }
.section-title { font-size: clamp(32px, 4.5vw, 52px); color: var(--white); margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--silver); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ─── ANIMAÇÕES DE ENTRADA ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── UTILS ─── */
.text-gradient {
  background: linear-gradient(135deg, var(--snow), var(--mist));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(88,117,133,0.3), transparent); margin: 0; }

/* ─── RESPONSIVO ─── */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(52px, 9vw, 80px); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .plan-card.featured { transform: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-col-photo {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 520px;
  }
  .hero-col-photo .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero-credential {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
  }
  .hero-specialties {
    display: none !important;
  }
  .wa-float {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 18px;
  }
  .hero-content {
    max-width: 100%;
    padding: 0 16px;
  }
  .hero-actions {
    width: 100%;
    gap: 12px;
    justify-content: stretch;
  }
  .hero-actions a {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
  }
  .hero-stats > div {
    flex: 1 1 140px;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .plan-card.featured { transform: none; }
  .hero-inner { justify-content: center; }
  .hero-content { max-width: 100%; padding: 0 8px; }
  .hero-credential { display: none !important; }
  .hero-title { font-size: clamp(42px, 13vw, 64px); }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-logo-col { padding-top: 0; }
  .hero-title { font-size: clamp(44px, 13vw, 68px); }
  .hero-content { max-width: 100%; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .diff-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-main-actions { flex-direction: column; align-items: center; }
  .hero-img-badge { left: 12px; bottom: 12px; }
  .wa-float {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
}

/* ─── HERO FINE-TUNE: mobile / tablet (below 1024px) ─── */
@media (max-width: 1023px) {
  /* bring headline up by reducing photo footprint and vertical gaps */
  .hero-col-photo { min-height: 420px; }
  .hero-inner { padding-bottom: 40px; gap: 24px; }
  .hero-content { padding-top: 8px; }
  .hero-eyebrow { margin-bottom: 10px; }
  .hero-actions { margin-top: 10px; gap: 10px; }
  .hero-sub { margin-top: 8px; }
  .hero-title { line-height: 1.03; }
}

@media (max-width: 430px) {
  .hero-col-photo { min-height: 360px; }
  .hero-inner { gap: 18px; padding-bottom: 34px; }
  .hero-title { font-size: clamp(34px, 9.5vw, 44px); line-height: 1.02; letter-spacing: -0.02em; }
  .hero-eyebrow { margin-bottom: 8px; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions a { padding: 10px 12px; }
  .wa-float { right: 12px; bottom: 12px; width: 48px; height: 48px; }
}

@media (min-width: 431px) and (max-width: 768px) {
  .hero-col-photo { min-height: 420px; }
  .hero-inner { gap: 22px; padding-bottom: 40px; }
  .hero-title { font-size: clamp(40px, 10.5vw, 56px); line-height: 1.03; }
  .hero-actions a { padding: 11px 14px; }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .hero-col-photo { min-height: 420px; }
  .hero-inner { gap: 22px; padding-bottom: 40px; }
  .hero-title { font-size: clamp(42px, 10.8vw, 62px); line-height: 1.04; }
  .hero-actions a.btn-primary { padding: 12px 16px; }
}


/* ══════════════════════════════════════════════════════════════
   ANIMAÇÕES ELITE — LOGO + CARDS
══════════════════════════════════════════════════════════════ */

/* ── KEYFRAMES BASE ── */
@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(88,117,133,0)); }
  50%       { filter: drop-shadow(0 0 18px rgba(88,117,133,0.55)); }
}
@keyframes logo-draw {
  from { stroke-dashoffset: var(--dash-len); opacity: 0; }
  10%  { opacity: 1; }
  to   { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes logo-fill-in {
  0%   { fill-opacity: 0; }
  100% { fill-opacity: 1; }
}
@keyframes wordmark-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tagline-in {
  from { opacity: 0; letter-spacing: 0.3em; }
  to   { opacity: 1; letter-spacing: 0.14em; }
}
@keyframes shimmer-move {
  0%   { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(200%) skewX(-12deg); }
}
@keyframes border-spin {
  from { --border-angle: 0deg; }
  to   { --border-angle: 360deg; }
}
@keyframes card-glow-pulse {
  0%, 100% { box-shadow: 0 0 0px rgba(88,117,133,0); }
  50%       { box-shadow: 0 0 24px rgba(88,117,133,0.12); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ── LOGO: símbolo com efeito draw + fill ── */
.sobre-logo-symbol {
  width: clamp(160px, 18vw, 230px);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 0 rgba(88, 117, 133, 0));
  transition: filter 0.4s ease;
}
/* Polígonos: animação de draw via stroke */
#logo-main polygon {
  stroke-width: 1.5;
  stroke-dasharray: var(--dash-len, 600);
  stroke-dashoffset: var(--dash-len, 600);
  fill-opacity: 0;
  transition: none;
}
#logo-main polygon.drawn {
  animation:
    logo-draw     0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards,
    logo-fill-in  0.50s ease 0.45s forwards;
}
/* Cores de stroke por polígono */
#lp1 { stroke: #E1E7E7; --dash-len: 450; }
#lp2 { stroke: #B6C1C7; --dash-len: 310; }
#lp3 { stroke: #B6C1C7; --dash-len: 310; }
#lp4 { stroke: #e1e7e7; --dash-len: 120; }
/* Diamante pulsa ao final */
#lp4.drawn {
  animation:
    logo-draw    0.60s cubic-bezier(0.4, 0, 0.2, 1) forwards,
    logo-fill-in 0.40s ease 0.40s forwards,
    logo-pulse   2.8s  ease 1.4s infinite;
}
/* Float suave da logo completa */
.sobre-logo-symbol.animated {
  animation: float-y 4s ease-in-out 1.8s infinite;
}
/* Wordmark: rise por letra via clip */
#logo-wordmark {
  opacity: 0;
}
#logo-wordmark.wordmark-in {
  animation: wordmark-rise 0.72s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
}
#logo-sep.sep-in {
  animation: wordmark-rise 0.5s ease forwards;
}
/* Tagline com letter-spacing colapsando */
.sobre-logo-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  text-align: center;
  opacity: 0;
}
.sobre-logo-tagline.animated {
  animation: tagline-in 0.8s ease forwards;
}
/* Linha decorativa que cresce */
.sobre-col-line {
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(88,117,133,0.3), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s cubic-bezier(0.4,0,0.2,1) 0.6s;
}
.sobre-logo-col { position: relative; }
.sobre-logo-col.animated .sobre-col-line { transform: scaleY(1); }

/* ── CARDS ELITE: borda animada + shimmer + 3D hover ── */

/* Wrapper com borda gradiente animada */
.card-elite {
  position: relative;
  border-radius: var(--radius);
  /* Borda via gradient angular */
  background-clip: padding-box;
  --border-angle: 0deg;
}
/* Pseudo-elemento: borda com conic-gradient girando */
.card-elite::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: conic-gradient(
    from var(--border-angle),
    rgba(88,117,133,0) 0%,
    rgba(88,117,133,0) 40%,
    rgba(182,193,199,0.6) 50%,
    rgba(88,117,133,0) 60%,
    rgba(88,117,133,0) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card-elite:hover::before {
  opacity: 1;
  animation: border-spin 3s linear infinite;
}
/* Fundo sólido para cobrir o conic-gradient por baixo */
.card-elite::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: rgba(255,255,255,0.03);
  z-index: -1;
}
/* Shimmer no hover */
.card-shimmer {
  position: relative;
  overflow: hidden;
}
.card-shimmer::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 30%; height: 200%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.04) 40%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 60%,
    transparent 100%
  );
  transform: translateX(-100%) skewX(-12deg);
  transition: none;
  pointer-events: none;
}
.card-shimmer:hover::after {
  animation: shimmer-move 0.8s ease forwards;
}
/* 3D tilt no hover — via CSS perspective */
.card-elite {
  transform-style: preserve-3d;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.4s ease;
}
.card-elite:hover {
  transform: translateY(-6px) perspective(800px) rotateX(1.5deg);
  box-shadow:
    0 20px 48px rgba(1,4,11,0.6),
    0 0 0 1px rgba(88,117,133,0.15);
}
/* Variação para o card em destaque (featured) */
.card-elite.plan-featured-elite:hover {
  transform: translateY(-12px) perspective(800px) rotateX(1.5deg);
  box-shadow:
    0 28px 64px rgba(1,4,11,0.7),
    0 0 0 1px rgba(182,193,199,0.25);
}
/* Número dos result cards: glow no hover */
.result-card:hover .result-num {
  text-shadow: 0 0 32px rgba(88,117,133,0.5);
  transition: text-shadow 0.4s ease;
}
/* Estrelas dos depoimentos: cor ao hover no card */
.testimonial-card:hover .stars {
  color: var(--silver);
  transition: color 0.3s ease;
}
/* Diff cards: ícone flutua */
.diff-card:hover .diff-icon {
  transform: translateY(-4px);
  transition: transform 0.4s cubic-bezier(0.34,1.4,0.64,1);
}
.diff-icon { transition: transform 0.3s ease; }
/* Plan card featured: glow pulsante */
.plan-card.featured {
  animation: card-glow-pulse 3s ease-in-out infinite;
}

/* ── REVEAL REFINADO: stagger mais suave ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }


/* ══════════════════════════════════════════════════════════════
   CARROSSEL DE TRANSFORMAÇÕES — VERSÃO DEFINITIVA

   Compatível com o scripts.js atualizado:
   - somente anterior, atual e próximo participam do layout;
   - anterior e próximo aparecem inteiros, no mesmo tamanho;
   - card atual fica nítido;
   - laterais recebem blur;
   - sem track horizontal infinito;
   - sem cortes e sem rolagem horizontal.
══════════════════════════════════════════════════════════════ */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

#resultados {
  width: 100%;
  min-width: 0;
  overflow: visible;
}

#resultados > .container {
  width: 100%;
  max-width: 1200px;
  min-width: 0;
  overflow: visible;
}

/*
  A seção rompe apenas o limite horizontal do .container.
  O cabeçalho e o viewport continuam centralizados e limitados
  a 1320px, permitindo três cards completos em telas grandes.
*/
.transf-section {
  position: relative;
  width: auto;
  min-width: 0;
  margin: 64px calc(50% - 50vw) 0;
  padding: 0 24px;
  overflow: visible;
}

.transf-header,
.transf-viewport {
  width: 100%;
  max-width: 1320px;
  min-width: 0;
  margin-right: auto;
  margin-left: auto;
}

.transf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.transf-header .t-label {
  margin: 0;
}

.transf-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 12px;
}

.transf-arrow {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.68);

  font: inherit;
  cursor: pointer;

  transition:
    transform 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.transf-arrow:hover {
  color: var(--snow);
  border-color: rgba(88, 117, 133, 0.55);
  background: rgba(88, 117, 133, 0.10);
  transform: translateY(-1px);
}

.transf-arrow:active {
  transform: scale(0.96);
}

.transf-arrow:disabled {
  opacity: 1;
  cursor: pointer;
}

.transf-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 250px;
}

.transf-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  min-height: 6px;
  padding: 0;

  border: 0;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.20);

  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;

  transition:
    width 0.28s ease,
    background 0.28s ease,
    transform 0.28s ease;
}

.transf-dot:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: scale(1.18);
}

.transf-dot.active {
  width: 20px;
  background: var(--steel);
  transform: none;
}

/*
  O viewport não corta os cards.
  Não há risco de overflow porque o track usa exatamente
  três colunas internas e ocupa 100% da largura disponível.
*/
.transf-viewport {
  position: relative;
  overflow: visible;
  padding: 10px 0 24px;

  touch-action: pan-y;
  overscroll-behavior-x: contain;
}

.transf-viewport.is-dragging {
  cursor: grabbing;
}

/*
  O JavaScript aplica hidden aos cards distantes.
  Restam no grid apenas:
  1. anterior;
  2. atual;
  3. próximo.
*/
.transf-track {
  width: 100%;
  min-width: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;

  margin: 0;
  padding: 0;

  opacity: 1;
  transform: translate3d(0, 0, 0);

  will-change: transform, opacity;
}

.transf-card[hidden] {
  display: none !important;
}

.transf-card {
  position: relative;
  z-index: 1;

  width: 100%;
  min-width: 0;
  max-width: none;

  display: flex;
  flex-direction: column;

  opacity: 0;
  filter: blur(7px);
  transform: scale(1);

  pointer-events: none;

  transition:
    opacity 0.42s ease,
    filter 0.42s ease,
    border-color 0.42s ease,
    box-shadow 0.42s ease;
}

/*
  A propriedade order garante a posição correta inclusive
  quando o carrossel passa do último card para o primeiro.
*/
.transf-card.is-prev {
  order: 1;
}

.transf-card.active,
.transf-card.is-active {
  order: 2;
}

.transf-card.is-next {
  order: 3;
}

.transf-card.is-prev,
.transf-card.is-next {
  z-index: 1;
  opacity: 0.42;
  filter: blur(4px);
  transform: scale(1);
  pointer-events: auto;
  cursor: pointer;
}

.transf-card.active,
.transf-card.is-active {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: scale(1);
  pointer-events: auto;
}

.transf-card.is-hidden {
  display: none !important;
}

/* Estrutura visual de cada card */
.transf-single {
  position: relative;

  width: 100%;
  min-width: 0;
  height: 100%;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid rgba(88, 117, 133, 0.17);
  border-radius: 18px;

  background: #08090b;

  box-shadow:
    0 20px 56px rgba(1, 4, 11, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  transition:
    border-color 0.42s ease,
    box-shadow 0.42s ease;
}

.transf-card.active .transf-single,
.transf-card.is-active .transf-single {
  border-color: rgba(88, 117, 133, 0.32);

  box-shadow:
    0 32px 76px rgba(1, 4, 11, 0.76),
    0 0 0 1px rgba(88, 117, 133, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/*
  Todos os exemplares usam a mesma proporção.
  object-fit: contain mantém a arte inteira, sem crop.
*/
.transf-single > img {
  display: block;

  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5.35;

  object-fit: contain;
  object-position: center;

  background: #08090b;

  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

/* Rodapé do card */
.transf-single-footer {
  width: 100%;
  min-width: 0;

  margin-top: auto;
  padding: 14px 16px;

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

  border-top: 1px solid rgba(88, 117, 133, 0.12);

  background: rgba(8, 9, 11, 0.95);
}

.transf-footer-left {
  flex: 1 1 auto;
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 3px;
}

.transf-footer-type {
  display: block;

  color: var(--steel);

  font-size: 0.57rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  overflow-wrap: anywhere;
}

.transf-footer-dates {
  display: block;

  color: rgba(255, 255, 255, 0.42);

  font-size: 0.64rem;
  line-height: 1.45;

  overflow-wrap: anywhere;
}

.transf-footer-right {
  flex: 0 0 auto;

  color: #fff;

  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;

  white-space: nowrap;
}

/* Elementos legados */
.transf-pair,
.transf-pair-inner,
.transf-single-overlay,
.transf-panel,
.transf-panel-bg,
.transf-panel-badge,
.transf-panel-weight {
  display: none !important;
}

/* Desktop intermediário */
@media (max-width: 1180px) {
  .transf-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .transf-track {
    gap: 18px;
  }

  .transf-single-footer {
    padding: 13px 14px;
    gap: 10px;
  }

  .transf-footer-type {
    font-size: 0.53rem;
  }

  .transf-footer-dates {
    font-size: 0.59rem;
  }

  .transf-footer-right {
    font-size: 0.86rem;
  }
}

/* Tablet: os três cards continuam inteiros */
@media (max-width: 900px) {
  .transf-section {
    margin-top: 48px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .transf-header {
    gap: 16px;
    margin-bottom: 22px;
  }

  .transf-track {
    gap: 12px;
  }

  .transf-single {
    border-radius: 14px;
  }

  .transf-single-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 11px 12px;
  }

  .transf-footer-left,
  .transf-footer-right {
    width: 100%;
  }

  .transf-footer-right {
    font-size: 0.82rem;
    white-space: normal;
  }
}

/*
  Celular:
  o card ativo ocupa a largura útil.
  As laterais deixam de aparecer para evitar miniaturas ilegíveis,
  mas permanecem disponíveis pelas setas, dots e gesto de swipe.
*/
@media (max-width: 700px) {
  .transf-section {
    margin-top: 40px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .transf-header {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
  }

  .transf-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .transf-dots {
    flex: 1 1 auto;
    max-width: none;
    gap: 5px;
  }

  .transf-dot {
    width: 5px;
    height: 5px;
    min-width: 5px;
    min-height: 5px;
  }

  .transf-dot.active {
    width: 16px;
  }

  .transf-viewport {
    padding: 6px 0 20px;
    overflow: hidden;
  }

  .transf-track {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .transf-card.is-prev,
  .transf-card.is-next {
    display: none !important;
  }

  .transf-card.active,
  .transf-card.is-active {
    order: 1;
    width: 100%;
  }

  .transf-single {
    border-radius: 14px;
  }

  .transf-single > img {
    aspect-ratio: 3 / 4;
  }

  .transf-single-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 13px 15px;
  }

  .transf-footer-left,
  .transf-footer-right {
    width: 100%;
  }

  .transf-footer-right {
    font-size: 0.86rem;
    white-space: normal;
  }
}

@media (max-width: 380px) {
  .transf-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .transf-arrow {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .transf-single-footer {
    padding: 12px 13px;
  }

  .transf-footer-dates {
    font-size: 0.61rem;
  }

  .transf-footer-right {
    font-size: 0.82rem;
  }
}




/* ── TABS DE MODALIDADE DO SIMULADOR ── */
.pac-sim-mods {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.pac-sim-mod-btn {
  flex: 1;
  min-width: 0;
  padding: 4px 4px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
  white-space: nowrap;
}
.pac-sim-mod-btn:hover {
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.6);
}
.pac-sim-mod-btn.active {
  border-color: rgba(88,117,133,0.5);
  background: rgba(88,117,133,0.15);
  color: rgba(255,255,255,0.9);
}


/* ══ PLANOS — 3 cards lado a lado ══════════════════════════════════════════ */
#planos { background: var(--black); }

.plans-alt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.plans-alt-card {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(145deg, #0b0d11 0%, #050608 100%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: plan-card-float 5s ease-in-out infinite;
}
.plans-alt-card:nth-child(2) {
  border-color: rgba(88,117,133,0.4);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 44px rgba(88,117,133,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
}
.plans-alt-card:nth-child(3) { animation-delay: -3.2s; }

@keyframes plan-card-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
.plans-alt-card:hover { animation-play-state: paused; }

.plans-alt-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 65% 15%, rgba(88,117,133,0.10), transparent 55%);
  pointer-events: none;
}
.plans-alt-card:nth-child(2)::after {
  background: radial-gradient(circle at 65% 15%, rgba(88,117,133,0.20), transparent 55%);
}

/* Badge "Mais indicado" */
.pac-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(88,117,133,0.18);
  border: 1px solid rgba(88,117,133,0.35);
  color: var(--silver);
  font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 99px;
}

/* ── Conteúdo interno ── */
.pac-inner {
  padding: 24px 22px 22px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; flex: 1;
}

.pac-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-bottom: 10px;
}

.pac-delta {
  display: inline-flex; align-items: center;
  font-size: 0.66rem; font-weight: 700;
  padding: 4px 10px; border-radius: 10px; margin-bottom: 12px;
}
.pac-delta.green   { background: rgba(35,224,131,0.14); color: #23e083; }
.pac-delta.neutral { background: rgba(88,117,133,0.14); color: var(--silver); }

/* Preço */
.pac-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pac-currency  { font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.55); }
.pac-amount {
  font-size: 2.6rem; font-weight: 900; line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.9));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pac-period { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.pac-equiv  { font-size: 0.66rem;  color: rgba(255,255,255,0.3); margin-bottom: 14px; }

/* Sparkline */
.pac-spark     { height: 44px; margin-bottom: 12px; }
.pac-spark svg { width: 100%; height: 100%; overflow: visible; }

/* ── Lista de períodos (painel de preço) ── */
.pac-periods { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.pac-period-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  cursor: pointer; transition: all 0.2s ease;
}
.pac-period-row:hover,
.pac-period-row:focus {
  border-color: rgba(88,117,133,0.35); background: rgba(88,117,133,0.06);
  outline: none;
}
.pac-period-row.active {
  border-color: rgba(88,117,133,0.45);
  background: rgba(88,117,133,0.12);
  transform: translateX(3px);
}
.pac-period-row:focus-visible {
  outline: 2px solid rgba(88,117,133,0.75);
  outline-offset: 3px;
}
.pac-period-name { font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.pac-period-val  { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.75); }
.pac-period-save { font-size: 0.56rem; font-weight: 700; color: #23e083; margin-left: 5px; }

/* ── Simulador InfinitePay ── */
.pac-sim {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 10px; margin-top: 10px;
}
.pac-sim-header { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.pac-sim-dot    { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg,#00c2ff,#0080ff); flex-shrink: 0; opacity: 0.9; }
.pac-sim-lbl    { font-size: 0.54rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); }

/* Tabs de modalidade do simulador */
.pac-sim-mods { display: flex; gap: 3px; margin-bottom: 8px; flex-wrap: wrap; }
.pac-sim-mod-btn {
  flex: 1; min-width: 0; padding: 4px 4px;
  border-radius: 6px; border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  font-size: 0.52rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); cursor: pointer;
  transition: all 0.18s ease; text-align: center; white-space: nowrap;
}
.pac-sim-mod-btn:hover  { border-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.6); }
.pac-sim-mod-btn.active { border-color: rgba(88,117,133,0.5); background: rgba(88,117,133,0.15); color: rgba(255,255,255,0.9); }

/* Toggle PIX / Crédito */
.pac-toggle { display: flex; gap: 4px; margin-bottom: 8px; }
.pac-mode-btn {
  flex: 1; padding: 5px 0; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.2s ease;
}
.pac-mode-btn.active { border-color: rgba(88,117,133,0.45); background: rgba(88,117,133,0.12); color: rgba(255,255,255,0.85); }

/* Grade de parcelas */
.pac-parc-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 3px; margin-bottom: 8px; }
.pac-parc-btn {
  padding: 5px 0; border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  font-size: 0.6rem; font-weight: 600;
  color: rgba(255,255,255,0.3); cursor: pointer;
  transition: all 0.18s ease; text-align: center;
}
/* Table expandable removed: styles cleaned up */
.pac-parc-btn:hover  { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }
.pac-parc-btn.active { border-color: rgba(88,117,133,0.5); background: rgba(88,117,133,0.15); color: rgba(255,255,255,0.95); }

/* Resultado */
.pac-result {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 10px 12px; text-align: center;
  min-height: 64px;
}
.pac-result-tag {
  font-size: 0.52rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 4px;
}
.pac-result-val {
  font-size: 1.1rem; font-weight: 800;
  color: rgba(255,255,255,0.92);
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
}
.pac-result-sub {
  font-size: 0.56rem; color: rgba(255,255,255,0.28);
  margin-top: 3px; line-height: 1.4;
}

/* CTA */
.pac-cta { margin-top: 12px; }
.pac-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 12px 16px; border-radius: 12px;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88);
  transition: all 0.22s ease;
}
.pac-btn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.pac-btn.primary { background: rgba(255,255,255,0.95); color: #060708; border-color: transparent; }
.pac-btn.primary:hover { background: #fff; }

/* Responsivo */
@media (max-width: 1024px) {
  .plans-alt-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .plans-alt-card  { animation: none; }
}
@media (max-width: 480px) {
  .pac-parc-grid { grid-template-columns: repeat(4,1fr); }
  .pac-amount    { font-size: 2rem; }
}
/* Additional responsive tweaks */
img, svg, video { max-width: 100%; height: auto; }

/* Ensure hamburger touch area and mobile menu usability */
@media (max-width: 1024px) {
  .hamburger { padding: 10px; min-width: 44px; min-height: 44px; border-radius: 6px; }
  .mobile-menu { top: 64px; }
}

/* Parcel selector: ensure adequate tap targets and layout on very small screens */
.pac-parc-btn { min-height: 44px; padding: 8px 0; }
@media (max-width: 360px) {
  .pac-parc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap:6px; }
  .pac-amount { font-size: 1.6rem; }
}
@media (max-width: 320px) {
  .pac-parc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap:6px; }
  .pac-amount { font-size: 1.5rem; }
}

/* Hero adjustments for small viewports */
@media (max-width: 480px) {
  .hero-col-photo { min-height: 320px; }
  #hero { padding-top: 64px; }
  .hero-photo img { object-position: 50% 45%; }
}
@media (max-width: 360px) {
  .hero-col-photo { min-height: 260px; }
  .hero-content { padding: 0 16px; }
}
@media (max-width: 320px) {
  .hero-col-photo { min-height: 220px; }
  .hero-content { padding-inline: 16px; }
}
/* ══ FIM PLANOS ════════════════════════════════════════════════════════════ */



/* ── DIVISORES ORGÂNICOS SVG ── */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 56px;
}
/* Versão invertida */
.wave-divider.flip svg {
  transform: scaleX(-1);
}
.wave-divider.flip-y svg {
  transform: scaleY(-1);
}
.wave-divider.flip-both svg {
  transform: scale(-1,-1);
}

/* ── FOOTER PREMIUM ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(88,117,133,0.10);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
/* Símbolo decorativo de fundo */
.footer-brand-bg {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 420px; height: auto;
  pointer-events: none;
  z-index: 0;
}
.footer-brand-bg svg { width: 100%; height: auto; }

/* Tagline grande decorativa */
.footer-tagline-big {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 64px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(88,117,133,0.07);
  line-height: 1;
  margin-bottom: 48px;
  pointer-events: none;
  user-select: none;
  position: relative; z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.brand-logo--footer {
  width: 200px;
  height: auto;
}
.footer-tagline {
  font-size: 0.82rem; color: var(--mist);
  margin-bottom: 18px; line-height: 1.65;
}
.footer-col-title {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  text-decoration: none; color: rgba(123,147,159,0.7);
  font-size: 0.82rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--snow); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(88,117,133,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--mist); text-decoration: none;
  transition: all 0.25s ease;
  background: rgba(255,255,255,0.02);
}
.social-btn:hover {
  border-color: var(--steel); color: var(--snow);
  background: rgba(88,117,133,0.1);
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(88,117,133,0.08);
  flex-wrap: wrap; gap: 12px;
  position: relative; z-index: 1;
}
.footer-copy { font-size: 0.72rem; color: rgba(123,147,159,0.5); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.72rem; color: rgba(123,147,159,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--silver); }
/* ── FOTO TRANSFORMAÇÃO ELIAS — seção sobre ── */
.sobre-elias-foto {
  width: 100%;
  margin-top: 24px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(88,117,133,0.15);
  box-shadow: 0 12px 40px rgba(1,4,11,0.55);
  position: relative;
}
.sobre-elias-foto img {
  width: 100%;
  height: auto;
  display: block;
}
.sobre-elias-foto-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(1,4,11,0.88), transparent);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(182,193,199,0.75);
}

/* ── ESTRELAS DOS DEPOIMENTOS ── */
.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 2px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   MARCA TRANSPARENTE ATUAL
══════════════════════════════════════════════════════════════ */

.brand-symbol {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-symbol--nav {
  width: 56px;
}

.brand-symbol--footer {
  width: 68px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-text {
  color: var(--snow);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .brand-symbol--nav {
    width: 50px;
  }

  .brand-symbol--footer {
    width: 62px;
  }
}

@media (max-width: 360px) {
  .brand-symbol--nav {
    width: 46px;
  }

  .brand-symbol--footer {
    width: 56px;
  }

  .footer-logo-text {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }
}
/* ══════════════════════════════════════════════════════════════
   PROTEÇÃO CONTRA ESCURECIMENTO DO CARROSSEL
══════════════════════════════════════════════════════════════ */

.transf-track,
.transf-track.is-changing,
.transf-track.is-moving-next,
.transf-track.is-moving-prev {
  opacity: 1 !important;
  background: transparent !important;
  mix-blend-mode: normal !important;
}

.transf-track::before,
.transf-track::after,
.transf-viewport::before,
.transf-viewport::after {
  content: none !important;
  display: none !important;
}

/*
  O card ativo nunca pode herdar escurecimento
  além do blur aplicado apenas aos laterais.
*/
.transf-card.active,
.transf-card.is-active {
  opacity: 1 !important;
  filter: none !important;
}

.transf-card.is-prev,
.transf-card.is-next {
  opacity: 0.42;
  filter: blur(4px);
}

/* ══════════════════════════════════════════════════════════════
   CONSULTAS — 3 MODALIDADES

   Compatível com:
   0 = Consulta
   1 = Retorno
   2 = Combo (consulta + retorno)
══════════════════════════════════════════════════════════════ */

/* Mantém Consulta, Retorno e Combo alinhados em uma única linha. */
#sim-mods-consulta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
  margin-bottom: 8px;
}

#sim-mods-consulta .pac-sim-mod-btn {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  padding: 6px 4px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.5rem;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

/* Evita quebra ou sobreposição no nome longo do Combo. */
.plans-alt-card:nth-child(3) .pac-period-row {
  gap: 12px;
  min-width: 0;
}

.plans-alt-card:nth-child(3) .pac-period-name {
  flex: 1 1 auto;
  min-width: 0;

  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

.plans-alt-card:nth-child(3) .pac-period-val {
  flex: 0 0 auto;

  text-align: right;
  white-space: nowrap;
}

/* Organiza as duas informações do resultado do crédito. */
.pac-result-sub span {
  display: block;
}

/* Tablet e celular. */
@media (max-width: 480px) {
  #sim-mods-consulta {
    gap: 3px;
  }

  #sim-mods-consulta .pac-sim-mod-btn {
    min-height: 32px;
    padding: 5px 3px;
    font-size: 0.47rem;
    letter-spacing: 0.035em;
  }

  .plans-alt-card:nth-child(3) .pac-period-row {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  #sim-mods-consulta .pac-sim-mod-btn {
    font-size: 0.44rem;
    letter-spacing: 0.025em;
  }

  .plans-alt-card:nth-child(3) .pac-period-row {
    padding-right: 10px;
    padding-left: 10px;
    gap: 8px;
  }

  .plans-alt-card:nth-child(3) .pac-period-name,
  .plans-alt-card:nth-child(3) .pac-period-val {
    font-size: 0.61rem;
  }
}
/* ══════════════════════════════════════════════════════════════
   PADRONIZAÇÃO VERTICAL DOS CARDS DE PLANOS
══════════════════════════════════════════════════════════════ */

/*
  Todas as opções passam a possuir a mesma altura mínima.
  Isso evita diferenças causadas pelo tamanho do texto.
*/
.plans-alt-card .pac-period-row {
  min-height: 42px;
}

/*
  Lite e VIP possuem quatro opções.
  Consultas possui apenas três.

  O pseudo-elemento abaixo funciona como uma quarta linha
  invisível, preservando exatamente o mesmo espaço vertical
  antes do simulador InfinitePay.
*/
.plans-alt-card--consulta .pac-periods::after {
  content: "";
  display: block;
  min-height: 42px;
  flex: 0 0 42px;
  visibility: hidden;
  pointer-events: none;
}

/*
  Mantém a área do simulador alinhada e impede variações
  provocadas pelo conteúdo anterior.
*/
.plans-alt-card .pac-sim {
  flex-shrink: 0;
}

/*
  Preserva o texto do Combo na mesma linha em telas grandes.
*/
.plans-alt-card--consulta .pac-period-name {
  white-space: nowrap;
}

/*
  Em celulares estreitos, o texto pode quebrar naturalmente
  para não ultrapassar a largura do card.
*/
@media (max-width: 480px) {
  .plans-alt-card--consulta .pac-period-name {
    white-space: normal;
  }

  .plans-alt-card--consulta .pac-periods::after {
    min-height: 42px;
    flex-basis: 42px;
  }
}
/* ALINHAMENTO DOS TEXTOS DO CARD CONSULTAS */
.plans-alt-grid .plans-alt-card:nth-child(3) .pac-period-row {
  text-align: left;
}

.plans-alt-grid .plans-alt-card:nth-child(3) .pac-period-name {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.plans-alt-grid .plans-alt-card:nth-child(3) .pac-period-val {
  flex: 0 0 auto;
  margin-left: 16px;
  text-align: right;
  white-space: nowrap;
}
/* ══════════════════════════════════════════════════════════════
   COMPARATIVO DE PLANOS
   Escopo restrito à seção #planos
══════════════════════════════════════════════════════════════ */

#planos .plans-compare-grid {
  width: 100%;
  min-width: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;

  margin-top: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

#planos .plans-compare-card {
  position: relative;

  width: 100%;
  min-width: 0;
  height: 100%;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;

  background:
    radial-gradient(
      circle at 65% 15%,
      rgba(88, 117, 133, 0.1),
      transparent 55%
    ),
    linear-gradient(
      145deg,
      #0b0d11 0%,
      #050608 100%
    );

  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

#planos .plans-compare-card--featured {
  border-color: rgba(88, 117, 133, 0.4);

  background:
    radial-gradient(
      circle at 65% 15%,
      rgba(88, 117, 133, 0.2),
      transparent 55%
    ),
    linear-gradient(
      145deg,
      #0d1116 0%,
      #050608 100%
    );

  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.7),
    0 0 44px rgba(88, 117, 133, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

#planos .plans-compare-inner {
  position: relative;
  z-index: 1;

  width: 100%;
  min-width: 0;
  height: 100%;

  display: flex;
  flex-direction: column;

  padding: 26px 22px 24px;
}

#planos .plans-compare-head {
  min-width: 0;
  min-height: 82px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;

  padding-bottom: 20px;
  margin-bottom: 8px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

#planos .plans-compare-head > div {
  min-width: 0;
}

#planos .plans-compare-head .pac-label {
  margin-bottom: 7px;
}

#planos .plans-compare-head .pac-delta {
  flex: 0 0 auto;
  margin-bottom: 0;
  white-space: nowrap;
}

#planos .plans-compare-title {
  margin: 0;

  color: var(--white);

  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-transform: uppercase;

  overflow-wrap: anywhere;
}

#planos .plans-compare-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;

  padding: 4px 10px;

  border: 1px solid rgba(88, 117, 133, 0.35);
  border-radius: 999px;

  background: rgba(88, 117, 133, 0.18);
  color: var(--silver);

  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  white-space: nowrap;
}

#planos
  .plans-compare-card--featured
  .plans-compare-head {
  padding-top: 28px;
}

#planos .plans-compare-list {
  width: 100%;
  min-width: 0;

  display: flex;
  flex-direction: column;

  margin: 0;
  padding: 0;

  list-style: none;
}

#planos .plans-compare-item {
  width: 100%;
  min-width: 0;
  min-height: 52px;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(88px, auto);

  align-items: center;
  gap: 14px;

  padding: 12px 2px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.055);
}

#planos .plans-compare-item:last-child {
  border-bottom: 0;
}

#planos .plans-compare-feature {
  min-width: 0;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;

  overflow-wrap: anywhere;
}

#planos .plans-compare-value {
  min-width: 0;
  max-width: 150px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;

  overflow-wrap: anywhere;
}

#planos .plans-compare-value.is-positive {
  color: #23e083;
}

#planos .plans-compare-value.is-negative {
  color: rgba(234, 112, 112, 0.88);
}

#planos .plans-compare-note {
  margin-top: auto;
  padding-top: 16px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.06);

  color: rgba(255, 255, 255, 0.38);

  font-size: 0.67rem;
  line-height: 1.55;
}

#planos .plans-pricing-header {
  width: 100%;
  max-width: 720px;

  margin: 96px auto 0;

  text-align: center;
}

#planos .plans-pricing-title {
  margin-bottom: 16px;

  color: var(--white);

  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* Notebook */
@media (max-width: 1180px) {
  #planos .plans-compare-grid {
    gap: 14px;
  }

  #planos .plans-compare-inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  #planos .plans-compare-item {
    gap: 10px;
  }

  #planos .plans-compare-feature {
    font-size: 0.72rem;
  }

  #planos .plans-compare-value {
    max-width: 125px;
    font-size: 0.68rem;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  #planos .plans-compare-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;

    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }

  #planos .plans-compare-card {
    border-radius: 22px;
  }

  #planos .plans-compare-inner {
    padding: 26px 24px 24px;
  }

  #planos .plans-compare-head {
    min-height: 0;
  }

  #planos .plans-compare-item {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(130px, 36%);
  }

  #planos .plans-compare-feature {
    font-size: 0.8rem;
  }

  #planos .plans-compare-value {
    max-width: none;
    font-size: 0.76rem;
  }

  #planos .plans-pricing-header {
    margin-top: 76px;
  }
}

/* Celular */
@media (max-width: 640px) {
  #planos .plans-compare-grid {
    gap: 14px;
    margin-top: 38px;
  }

  #planos .plans-compare-card {
    border-radius: 18px;
  }

  #planos .plans-compare-inner {
    padding: 22px 18px 20px;
  }

  #planos .plans-compare-head {
    min-height: 0;
    gap: 12px;

    padding-bottom: 16px;
  }

  #planos .plans-compare-title {
    font-size: 1.15rem;
  }

  #planos .plans-compare-item {
    min-height: 50px;

    grid-template-columns:
      minmax(0, 1fr)
      minmax(104px, 42%);

    gap: 10px;
    padding: 11px 0;
  }

  #planos .plans-compare-feature {
    font-size: 0.74rem;
  }

  #planos .plans-compare-value {
    font-size: 0.7rem;
  }

  #planos .plans-pricing-header {
    margin-top: 64px;
  }
}

/* Celulares estreitos */
@media (max-width: 430px) {
  #planos .plans-compare-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  #planos .plans-compare-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  #planos
    .plans-compare-card--featured
    .plans-compare-head {
    padding-top: 30px;
  }

  #planos .plans-compare-item {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(92px, 43%);

    gap: 8px;
  }

  #planos .plans-compare-feature {
    font-size: 0.7rem;
  }

  #planos .plans-compare-value {
    font-size: 0.67rem;
  }
}

@media (max-width: 360px) {
  #planos .plans-compare-inner {
    padding: 20px 14px 18px;
  }

  #planos .plans-compare-item {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(84px, 44%);

    gap: 7px;
  }

  #planos .plans-compare-feature {
    font-size: 0.66rem;
  }

  #planos .plans-compare-value {
    font-size: 0.63rem;
  }
}
/* ══════════════════════════════════════════════════════════════
   CONSULTA ÚNICA — CENTRALIZAÇÃO E ALINHAMENTO DEFINITIVOS
══════════════════════════════════════════════════════════════ */

/*
  Remove a antiga linha invisível criada quando Consultas
  ainda possuía Consulta, Retorno e Combo.
*/
.plans-alt-card--consulta .pac-periods::after {
  content: none !important;
  display: none !important;
}

/*
  A opção ativa normalmente recebe translateX(3px).
  No card de consulta única, removemos esse deslocamento
  para que a linha fique realmente centralizada.
*/
.plans-alt-card--consulta .pac-period-row.active {
  transform: none;
}

/*
  O simulador ainda estava preparado para três modalidades.
  Com apenas uma consulta, o botão deve ocupar toda a largura.
*/
#sim-mods-consulta {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

#sim-mods-consulta .pac-sim-mod-btn {
  width: 100%;
  min-width: 0;
}

/*
  Desktop:
  183px corresponde à altura ocupada pelas quatro opções
  dos cards Lite e VIP:
  4 linhas de 42px + 3 espaços de 5px.

  A única opção Consulta fica centralizada verticalmente
  dentro dessa mesma área, mantendo o simulador alinhado.
*/
@media (min-width: 1025px) {
  .plans-alt-card--consulta .pac-periods {
    min-height: 183px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 5px;
  }

  .plans-alt-card--consulta .pac-period-row {
    width: 100%;
    flex: 0 0 auto;
  }
}
/* ══════════════════════════════════════════════════════════════
   CONSULTA ÚNICA — CENTRALIZAÇÃO E ALINHAMENTO DEFINITIVOS
══════════════════════════════════════════════════════════════ */

/*
  Remove a antiga linha invisível criada quando Consultas
  ainda possuía Consulta, Retorno e Combo.
*/
.plans-alt-card--consulta .pac-periods::after {
  content: none !important;
  display: none !important;
}

/*
  A opção ativa normalmente recebe translateX(3px).
  No card de consulta única, removemos esse deslocamento
  para que a linha fique realmente centralizada.
*/
.plans-alt-card--consulta .pac-period-row.active {
  transform: none;
}

/*
  O simulador ainda estava preparado para três modalidades.
  Com apenas uma consulta, o botão deve ocupar toda a largura.
*/
#sim-mods-consulta {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

#sim-mods-consulta .pac-sim-mod-btn {
  width: 100%;
  min-width: 0;
}

/*
  Desktop:
  183px corresponde à altura ocupada pelas quatro opções
  dos cards Lite e VIP:
  4 linhas de 42px + 3 espaços de 5px.

  A única opção Consulta fica centralizada verticalmente
  dentro dessa mesma área, mantendo o simulador alinhado.
*/
@media (min-width: 1025px) {
  .plans-alt-card--consulta .pac-periods {
    min-height: 183px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 5px;
  }

  .plans-alt-card--consulta .pac-period-row {
    width: 100%;
    flex: 0 0 auto;
  }
}

/*
   ══════════════════════════════════════════════════════════════
   CONSULTA ÚNICA — CENTRALIZAÇÃO E ALINHAMENTO DEFINITIVOS
══════════════════════════════════════════════════════════════ */

/*
  Remove a antiga linha invisível criada quando Consultas
  ainda possuía Consulta, Retorno e Combo.
*/
.plans-alt-card--consulta .pac-periods::after {
  content: none !important;
  display: none !important;
}

/*
  A opção ativa normalmente recebe translateX(3px).
  No card de consulta única, removemos esse deslocamento
  para que a linha fique realmente centralizada.
*/
.plans-alt-card--consulta .pac-period-row.active {
  transform: none;
}

/*
  O simulador ainda estava preparado para três modalidades.
  Com apenas uma consulta, o botão deve ocupar toda a largura.
*/
#sim-mods-consulta {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

#sim-mods-consulta .pac-sim-mod-btn {
  width: 100%;
  min-width: 0;
}

/*
  Desktop:
  183px corresponde à altura ocupada pelas quatro opções
  dos cards Lite e VIP:
  4 linhas de 42px + 3 espaços de 5px.

  A única opção Consulta fica centralizada verticalmente
  dentro dessa mesma área, mantendo o simulador alinhado.
*/
@media (min-width: 1025px) {
  .plans-alt-card--consulta .pac-periods {
    min-height: 183px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 5px;
  }

  .plans-alt-card--consulta .pac-period-row {
    width: 100%;
    flex: 0 0 auto;
  }
}

/*
  Tablet e celular:
  remove a altura artificial porque os cards aparecem
  empilhados e não precisam de alinhamento horizontal.
*/
@media (max-width: 1024px) {
  .plans-alt-card--consulta .pac-periods {
    min-height: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}