/* ─── QUAD Wealth — Aplicação ───
   Design tokens herdados do quiz/perfil/styles.css
*/

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

:root {
  --bg:         #0a0a0b;
  --bg-2:       #0e0e11;
  --card:       #121217;
  --surface:    #17171d;
  --surface-2:  #1c1c23;
  --red:        #D52B34;
  --red-dark:   #A1242A;
  --red-glow:   rgba(213, 43, 52, 0.18);
  --red-faint:  rgba(213, 43, 52, 0.05);
  --steel:      #293541;
  --steel-2:    #354859;
  --text:       #ffffff;
  --text-2:     rgba(255, 255, 255, 0.68);
  --text-3:     rgba(255, 255, 255, 0.42);
  --text-4:     rgba(255, 255, 255, 0.22);
  --hairline:   rgba(255, 255, 255, 0.07);
  --hairline-2: rgba(255, 255, 255, 0.12);
  --red-line:   rgba(213, 43, 52, 0.30);

  --display:    'Mona Sans', ui-sans-serif, system-ui, sans-serif;
  --body:       'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono:       'Fragment Mono', ui-monospace, monospace;

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
::selection { background: var(--red); color: #fff; }

.accent { color: var(--red); }

/* ─── TOP BAR ─── */
.topbar {
  height: 60px;
  padding: 0 24px;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.topbar-brand img { width: 22px; height: auto; }
.topbar-brand-accent { color: var(--text-3); font-weight: 500; }

.topbar-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.topbar-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.45; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 17px 30px;
  border: 1px solid var(--red);
  border-radius: 2px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 14px 34px -14px rgba(213,43,52,0.55);
}
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--surface);
  border-color: var(--hairline-2);
  color: var(--text-3);
  box-shadow: none;
}
.btn .arrow {
  width: 16px; height: 10px;
  position: relative;
  transition: transform 0.3s var(--ease);
}
.btn .arrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}
.btn .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 7px; height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover:not(:disabled) .arrow { transform: translateX(5px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--hairline-2);
  border-radius: 2px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--text-2);
  background: var(--surface);
  color: var(--text);
}

/* ─── BADGE ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--red-faint);
  border: 1px solid var(--red-line);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.badge-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
}

/* ═════════════════════════════════════════
   HERO
   ═════════════════════════════════════════ */
.hero {
  padding: 64px 20px 32px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--red-glow), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  text-align: center;
}
.hero-eyebrow {
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.hero-title-muted {
  color: var(--text-2);
  font-weight: 600;
}
.hero-sub {
  font-size: clamp(15px, 2.2vw, 17px);
  color: var(--text-2);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 32px;
}

/* ─── VSL ─── */
.vsl {
  padding: 0 20px 48px;
  display: flex;
  justify-content: center;
}
.vsl-inner {
  width: 100%;
  max-width: 760px;
}
.vsl-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vsl-placeholder {
  text-align: center;
  padding: 32px;
}
.vsl-placeholder-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--red);
}
.vsl-placeholder-icon svg { width: 22px; height: 22px; }
.vsl-placeholder-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
}
.vsl-placeholder-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.vsl-caption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
}

/* ═════════════════════════════════════════
   FORM CARD MULTI-STEP
   ═════════════════════════════════════════ */
.form-section {
  flex: 1;
  padding: 16px 20px 60px;
  display: flex;
  justify-content: center;
}
.form-inner {
  width: 100%;
  max-width: 640px;
}

.form-head {
  margin-bottom: 32px;
}
.form-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.form-meta .current { color: var(--text); font-weight: 500; }
.form-bar {
  position: relative;
  height: 3px;
  background: var(--hairline);
  border-radius: 2px;
  overflow: hidden;
}
.form-bar-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--red-glow);
  transition: width 0.45s var(--ease);
  width: 0%;
}

.step-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid var(--hairline-2);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.step-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.step-sub {
  font-size: 14.5px;
  color: var(--text-2);
  margin-bottom: 28px;
}

/* ─── FIELDS ─── */
.field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 8px;
}
.field label .req { color: var(--red); margin-left: 2px; }
.field label .field-hint { font-weight: 400; font-size: 12px; color: var(--text-3); margin-left: 6px; letter-spacing: 0; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  transition: all 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23ffffff70' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.field input::placeholder { color: var(--text-4); }

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--surface);
  box-shadow: 0 0 0 1px var(--red-glow);
}
.field.error input,
.field.error select {
  border-color: var(--red);
}
.field-error {
  font-size: 12.5px;
  color: var(--red);
  margin-top: 6px;
  display: none;
}
.field.error .field-error { display: block; }

/* ─── RADIO GROUP (option-list style) ─── */
.option-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.option-list li { margin: 0; }
.option-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 20px 16px 44px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  color: var(--text);
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.45;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
}
.option-btn:hover {
  background: var(--surface);
  border-color: var(--hairline-2);
  transform: translateX(3px);
}
.option-btn.selected {
  background: rgba(213, 43, 52, 0.08);
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.option-btn.selected::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}

/* ─── CONSENT CHECKBOX ─── */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
  cursor: pointer;
  margin-top: 8px;
}
.consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--red);
  cursor: pointer;
}

/* ─── NAV ─── */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 14px;
}
.form-nav-spacer { flex: 1; }
.form-nav .btn-primary { padding: 15px 26px; font-size: 12px; }

/* ─── TRUST STRIP ─── */
.trust-strip {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 3px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-item .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.trust-item .value {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ═════════════════════════════════════════
   FAQ
   ═════════════════════════════════════════ */
.faq {
  padding: 48px 20px 60px;
  display: flex;
  justify-content: center;
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
}
.faq-inner { width: 100%; max-width: 720px; }
.faq-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 28px);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
}
.faq-q {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
}
.faq-a {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ═════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════ */
.footer {
  padding: 32px 20px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-4);
  border-top: 1px solid var(--hairline);
}

/* Logo "QUAD Financial & Wealth" (igual canto sup. esquerdo do site) */
.quad-logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.quad-logo-mark img { width: 22px; height: auto; }
.quad-logo-mark .accent { color: var(--text-3); font-weight: 500; }

/* ═════════════════════════════════════════
   PÁGINA RECEBIDA
   ═════════════════════════════════════════ */
.recebida {
  flex: 1;
  padding: 80px 20px 60px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.recebida::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--red-glow), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.recebida-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  text-align: center;
}
.recebida-check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--red-faint);
  border: 1px solid var(--red-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 28px;
}
.recebida-check svg { width: 32px; height: 32px; }
.recebida-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 5.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.recebida-title .muted {
  color: var(--text-2);
  font-weight: 600;
  display: block;
}
.recebida-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 32px;
}
.recebida-signature {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 28px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 3px;
}
.recebida-signature .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.recebida-signature .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ═════════════════════════════════════════
   LANDING — faixa, sections, cards, stats
   ═════════════════════════════════════════ */

/* ─── Header / nav (igual ao site principal) ─── */
.sitenav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { width: 26px; height: auto; flex-shrink: 0; }
.nav-brand-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-brand-text span { color: var(--text-3); font-weight: 500; margin-left: 4px; }
.nav-right { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 11px 22px;
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  border-radius: 2px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav-cta:hover { background: var(--red-dark); border-color: var(--red-dark); }
@media (max-width: 720px) {
  .sitenav { height: 58px; padding: 0 18px; }
  .nav-links { display: none; }
  .nav-right { gap: 0; }
}

/* Âncoras do menu não ficam escondidas sob o header fixo */
#para-quem, #metodo, #depoimentos, #sobre { scroll-margin-top: 84px; }

/* ─── Brand mark abaixo do CTA do hero ─── */
.hero-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 28px auto 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  text-decoration: none;
  transition: color .2s ease;
}
.hero-brand-mark:hover { color: var(--text-2); }
.hero-brand-mark img {
  width: 18px; height: 18px;
  opacity: 0.7;
}
.hero-brand-mark em { font-style: normal; color: var(--red); font-weight: 700; }

/* ─── Hero VSL ─── */
.hero-vsl { padding-top: 96px; padding-bottom: 72px; }
.hero-vsl .hero-inner {
  max-width: 920px;
  text-align: center;
}
.hero-vsl .vsl-frame {
  margin: 48px auto 0;
}
.hero-sub-lead {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4.8vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 auto 24px;
  max-width: 880px;
}
.hero-sub-cta {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 600px;
}
@media (max-width: 720px) {
  .hero-vsl { padding-top: 64px; }
  .hero-vsl .vsl-frame { margin-top: 36px; }
}
.btn-cta-hero,
.btn-cta-mid,
.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-cta-hero:hover,
.btn-cta-mid:hover,
.btn-cta-final:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--red-glow);
}

/* Botão do hero — maior e com glow neon pulsante */
.btn-cta-hero {
  padding: 22px 46px;
  font-size: 15px;
  letter-spacing: 0.1em;
  box-shadow:
    0 0 0 1px rgba(213,43,52,0.55),
    0 0 22px rgba(213,43,52,0.55),
    0 0 48px rgba(213,43,52,0.30);
  animation: ctaGlow 2.6s ease-in-out infinite;
}
.btn-cta-hero:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(213,43,52,0.8),
    0 0 28px rgba(213,43,52,0.75),
    0 0 64px rgba(213,43,52,0.45);
  animation: none;
}
@keyframes ctaGlow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(213,43,52,0.45),
      0 0 16px rgba(213,43,52,0.40),
      0 0 36px rgba(213,43,52,0.22);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(213,43,52,0.70),
      0 0 30px rgba(213,43,52,0.65),
      0 0 64px rgba(213,43,52,0.40);
  }
}
/* CTAs repetidos das seções — mesmo tratamento (maior + glow) */
.cta-center .btn-primary {
  padding: 21px 44px;
  font-size: 14px;
  letter-spacing: 0.08em;
  box-shadow:
    0 0 0 1px rgba(213,43,52,0.55),
    0 0 22px rgba(213,43,52,0.55),
    0 0 48px rgba(213,43,52,0.30);
  animation: ctaGlow 2.6s ease-in-out infinite;
}
.cta-center .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(213,43,52,0.8),
    0 0 28px rgba(213,43,52,0.75),
    0 0 64px rgba(213,43,52,0.45);
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta-hero,
  .cta-center .btn-primary { animation: none; }
}
@media (max-width: 720px) {
  .btn-cta-hero { padding: 19px 34px; font-size: 14px; }
  .cta-center .btn-primary { padding: 18px 32px; }
}

/* ─── Section base ─── */
.section {
  padding: 80px 24px;
  border-top: 1px solid var(--hairline);
}
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.section-narrow { max-width: 760px; }
.section-dark { background: var(--bg-2); }

.section-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.section-head .eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.section-head h2 em {
  font-style: normal;
  color: var(--red);
}
.section-head p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}
.section-lead {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0;
  text-align: center;
}
.section-lead strong { color: var(--text); font-weight: 600; }

/* ─── Card grids ─── */
.card-grid {
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .card-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid-3 { grid-template-columns: 1fr; } }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) { .card-grid-2 { grid-template-columns: 1fr; } }

/* CTA centralizado reutilizável (entre seções) */
.cta-center { text-align: center; padding: 0 24px 80px; }
/* depoimentos tem border-bottom — sem isso o botão cola na linha */
.section-testimonials + .cta-center { padding-top: 56px; }

/* Lista de sintomas (frases, sem título — como no doc) */
.symptom-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.symptom-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.6;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 18px 20px;
}
.symptom-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--red);
}
.symptom-after { max-width: 760px; margin: 32px auto 0; }
.symptom-after p { font-size: 15px; line-height: 1.7; color: var(--text-2); margin: 0 0 14px; }
.symptom-after p:last-child { margin-bottom: 0; }

.card-sintoma,
.card-beneficio {
  background: var(--card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-sintoma .card-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--red);
}
.card-beneficio .card-ico {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--red);
  line-height: 1;
}
.card-sintoma h3,
.card-beneficio h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}
.card-sintoma p,
.card-beneficio p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* card-beneficio: seta na MESMA linha do título, descrição abaixo */
.card-beneficio {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}
.card-beneficio .card-ico { grid-column: 1; grid-row: 1; }
.card-beneficio h3       { grid-column: 2; grid-row: 1; margin: 0; }
.card-beneficio p        { grid-column: 1 / -1; grid-row: 2; }

/* ─── Midstrip vermelho ─── */
.midstrip {
  background: var(--red);
  padding: 44px 24px;
}
.midstrip-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.midstrip-inner p {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.45;
  color: #fff;
  margin: 0;
  max-width: 620px;
}
.midstrip-inner p strong { font-weight: 800; }
.btn-cta-mid {
  background: #fff;
  color: var(--red);
}
.btn-cta-mid:hover { background: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.3); }

/* ─── Steps ─── */
.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 24px 28px;
}
.step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  color: var(--red);
  line-height: 1;
}
.step-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin: 0 0 8px;
}
.step-body p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* ─── Stats ─── */
.section-stats .stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  overflow: hidden;
}
.section-stats .stat-cell {
  padding: 32px 24px;
  border-right: 1px solid var(--hairline);
  background: var(--card);
}
.section-stats .stat-cell:last-child { border-right: 0; }
@media (max-width: 540px) {
  .section-stats .stats-row { grid-template-columns: 1fr; }
  .section-stats .stat-cell { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .section-stats .stat-cell:last-child { border-bottom: 0; }
}
.section-stats .stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.section-stats .stat-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-stats .stat-value .unit {
  font-size: 0.55em;
  color: var(--text-2);
  font-weight: 600;
  margin-left: 4px;
}
.section-stats .stat-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

/* ─── CTA final ─── */
.section-cta-final {
  text-align: center;
  background: var(--bg-2);
}
.section-cta-final h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 14px;
}
.section-cta-final p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 540px;
}
.btn-cta-final {
  background: var(--red);
  color: #fff;
}
.btn-cta-final:hover { background: var(--red); }

/* ─── Form standalone (cadastro) ─── */
.form-section-standalone { padding-top: 56px; }
.form-cadastro-head {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}
.form-cadastro-head h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.form-cadastro-head p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* ─── Depoimentos (carrossel) ─── */
.section-testimonials {
  padding: 96px 24px;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.testi-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.testi-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.testi-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.testi-head .eyebrow .dot {
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
}
.testi-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.testi-head h2 em { font-style: normal; color: var(--red); }
.testi-viewport { position: relative; }
.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 24px;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 min(440px, 82vw);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.testi-card:hover { border-color: var(--red-line); transform: translateY(-2px); }
.testi-mark { width: 28px; height: 28px; color: var(--red); opacity: 0.5; margin-bottom: 16px; flex-shrink: 0; }
.testi-quote { font-size: 14.5px; line-height: 1.65; color: var(--text); margin: 0 0 24px; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--hairline); }
.testi-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-initials {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--surface-2), var(--card));
  border: 1px solid var(--hairline-2);
  font-family: var(--display); font-weight: 700; font-size: 16px;
  color: var(--text-2);
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--text); }
.testi-role {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3); margin-top: 3px;
}
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--hairline);
  color: var(--text-2); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease); z-index: 2;
}
.testi-arrow:hover:not([disabled]) { background: var(--red); border-color: var(--red); color: #fff; }
.testi-arrow[disabled] { opacity: 0.3; cursor: not-allowed; }
.testi-arrow svg { width: 20px; height: 20px; }
.testi-arrow-prev { left: -22px; }
.testi-arrow-next { right: -22px; }
@media (max-width: 960px) {
  .section-testimonials { padding: 72px 16px; }
  .testi-head { margin-bottom: 40px; }
  .testi-arrow-prev, .testi-arrow-next { display: none; }
}

/* ─── VSL Chromeless (player sem controles) ─── */
.vsl-chromeless { position: relative; }
.vsl-chromeless > iframe,
.vsl-chromeless #vslYTPlayer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;        /* iframe não recebe clique — quem manda é o shield */
}
.vsl-chromeless .vsl-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  z-index: 1;
}
.vsl-chromeless .vsl-shield {
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  outline: none;
  transition: background .2s ease;
}
.vsl-chromeless .vsl-play-glyph {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(213, 43, 52, 0.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(213, 43, 52, 0.55), 0 0 0 1px rgba(255,255,255,0.08) inset;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.vsl-chromeless .vsl-play-glyph svg { width: 36px; height: 36px; margin-left: 4px; }
.vsl-chromeless .vsl-shield:hover .vsl-play-glyph,
.vsl-chromeless .vsl-shield:focus-visible .vsl-play-glyph {
  transform: scale(1.06);
  background: var(--red);
}
.vsl-chromeless .vsl-shield:focus-visible { background: rgba(213,43,52,0.04); }

/* Estados: idle/paused/ended → mostra glyph. playing → esconde poster e glyph. buffering → mostra glyph dim. */
.vsl-chromeless[data-state="playing"] .vsl-poster,
.vsl-chromeless[data-state="paused"] .vsl-poster,
.vsl-chromeless[data-state="ended"] .vsl-poster,
.vsl-chromeless[data-state="buffering"] .vsl-poster { opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.vsl-chromeless[data-state="playing"] .vsl-play-glyph { opacity: 0; transform: scale(0.85); }
.vsl-chromeless[data-state="paused"] .vsl-play-glyph,
.vsl-chromeless[data-state="ended"] .vsl-play-glyph { opacity: 1; }
.vsl-chromeless[data-state="buffering"] .vsl-play-glyph { opacity: 0.5; }

@media (max-width: 600px) {
  .vsl-chromeless .vsl-play-glyph { width: 64px; height: 64px; }
  .vsl-chromeless .vsl-play-glyph svg { width: 28px; height: 28px; }
}

/* ─── VSL — banner "ativar som" (autoplay mutado) ─── */
.vsl-chromeless .vsl-unmute-banner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  display: none;
  align-items: center;
  gap: 22px;
  padding: 26px 38px 26px 30px;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 22px 50px -16px rgba(213,43,52,0.75), 0 0 0 1px rgba(255,255,255,0.10) inset, 0 0 0 8px rgba(213,43,52,0.18);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
  max-width: calc(100% - 40px);
}
.vsl-chromeless .vsl-unmute-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: vslSoundPulse 1.6s ease-in-out infinite;
}
.vsl-chromeless .vsl-unmute-icon svg { width: 38px; height: 38px; }
.vsl-chromeless .vsl-unmute-text {
  display: flex; flex-direction: column; line-height: 1.2;
  font-family: var(--display);
}
.vsl-chromeless .vsl-unmute-text strong {
  font-weight: 800; font-size: clamp(16px, 1.9vw, 20px); letter-spacing: 0.10em; text-transform: uppercase;
}
.vsl-chromeless .vsl-unmute-text span {
  font-weight: 500; font-size: clamp(13px, 1.4vw, 15px); opacity: 0.94;
  letter-spacing: 0.02em; margin-top: 4px;
}
@keyframes vslSoundPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.18); opacity: 0.78; }
}

/* No estado mutado: banner aparece, glyph play some */
.vsl-chromeless[data-state="muted"] .vsl-poster { opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.vsl-chromeless[data-state="muted"] .vsl-play-glyph { opacity: 0; transform: scale(0.85); }
.vsl-chromeless[data-state="muted"] .vsl-unmute-banner {
  display: inline-flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.vsl-chromeless[data-state="muted"] .vsl-shield:hover .vsl-unmute-banner {
  background: var(--red-dark);
  transform: translate(-50%, -50%) scale(1.03);
}

@media (max-width: 600px) {
  .vsl-chromeless .vsl-unmute-banner {
    padding: 18px 24px 18px 20px; gap: 14px; border-radius: 28px;
  }
  .vsl-chromeless .vsl-unmute-icon { width: 32px; height: 32px; }
  .vsl-chromeless .vsl-unmute-icon svg { width: 26px; height: 26px; }
}

/* ═════════════════════════════════════════
   MÉTODO M4D (igual à home, sem botão)
   ═════════════════════════════════════════ */
.section-method-applic { position: relative; overflow: hidden; }
.section-method-applic::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 85% 30%, rgba(41,53,65,0.3), transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 80%, var(--red-glow), transparent 60%);
  pointer-events: none;
}
.section-method-applic .section-inner { position: relative; z-index: 1; }

.method-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.method-split-text .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.method-split-text .eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.method-split-text h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 14px 0 24px;
}
.method-split-text h2 em { font-style: italic; color: var(--red); font-weight: 700; }
.method-split-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 18px;
}
.method-split-text p strong { color: var(--text); font-weight: 700; }
.method-split-img { display: flex; align-items: center; justify-content: center; }
@media (max-width: 960px) {
  .method-split { grid-template-columns: 1fr; gap: 48px; }
  .method-split-img { order: -1; }
}

/* M4D diagrama interativo */
.m4d-diagram {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 600 / 521;
  filter: drop-shadow(0 18px 36px rgba(213,43,52,0.18));
}
.m4d-svg { width: 100%; height: 100%; display: block; overflow: visible; }
.m4d-wedge { cursor: pointer; outline: none; }
.m4d-wedge-shape { transition: filter 0.32s var(--ease); }
.m4d-wedge:focus-visible .m4d-wedge-shape {
  filter: brightness(1.2) drop-shadow(0 0 6px rgba(255,255,255,0.5));
}
.m4d-diagram[data-active] .m4d-wedge .m4d-wedge-shape {
  filter: brightness(0.72) saturate(0.85);
}
.m4d-diagram[data-active="1"] .m4d-wedge[data-idx="1"] .m4d-wedge-shape,
.m4d-diagram[data-active="2"] .m4d-wedge[data-idx="2"] .m4d-wedge-shape,
.m4d-diagram[data-active="3"] .m4d-wedge[data-idx="3"] .m4d-wedge-shape,
.m4d-diagram[data-active="4"] .m4d-wedge[data-idx="4"] .m4d-wedge-shape {
  filter: brightness(1.15) saturate(1);
}
.m4d-title-svg {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  fill: #fff;
  pointer-events: none;
  user-select: none;
}
.m4d-q-text {
  font-family: var(--display);
  font-weight: 900;
  font-size: 78px;
  fill: var(--red);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.m4d-q-group { transition: opacity 0.32s var(--ease); }
.m4d-info {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  width: 44%;
  padding: 0 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}
.m4d-diagram[data-active] .m4d-info { opacity: 1; }
.m4d-info-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.m4d-info-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.m4d-info-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.m4d-info-panel { display: none; }
.m4d-diagram[data-active="1"] .m4d-info-panel[data-idx="1"],
.m4d-diagram[data-active="2"] .m4d-info-panel[data-idx="2"],
.m4d-diagram[data-active="3"] .m4d-info-panel[data-idx="3"],
.m4d-diagram[data-active="4"] .m4d-info-panel[data-idx="4"] { display: block; }
.m4d-hint {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9.5px;
  color: rgba(255,255,255,0.34);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
  white-space: nowrap;
}
.m4d-diagram[data-active] .m4d-hint { opacity: 0; }
@media (max-width: 540px) {
  .m4d-title-svg { font-size: 12px; letter-spacing: 0.04em; }
  .m4d-info-title { font-size: 15px; }
  .m4d-info-desc { font-size: 11.5px; }
  .m4d-hint { font-size: 9px; }
}

/* ═════════════════════════════════════════
   EQUIPE / SÓCIOS (igual à home)
   ═════════════════════════════════════════ */
.team-head--center {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 56px;
}
.team-head--center h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}
.team-head--center h2 em { font-style: normal; color: var(--red); }

.team-viewport { position: relative; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--hairline);
  color: var(--text-2);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  z-index: 3;
}
.team-arrow svg { width: 20px; height: 20px; }
.team-arrow:hover { background: var(--red); border-color: var(--red); color: #fff; }
.team-arrow:disabled { opacity: 0.35; cursor: default; }
.team-arrow-prev { left: 2px; }
.team-arrow-next { right: 2px; }

.team-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.team-card:hover { border-color: var(--red-line); transform: translateY(-4px); }
.team-avatar {
  aspect-ratio: 1 / 1.15;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.75) 100%);
}
.team-avatar-photo { background: var(--surface); }
.team-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.25) contrast(1.05);
  transition: filter 0.5s;
}
.team-card:hover .team-avatar-photo img { filter: grayscale(0) contrast(1); }
.team-info {
  padding: 22px 24px 26px;
  border-top: 1px solid var(--hairline);
}
.team-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.team-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.team-bio { font-size: 12px; color: var(--text-2); line-height: 1.6; }
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .team-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 6px;
  }
  .team-grid::-webkit-scrollbar { display: none; }
  .team-card { flex: 0 0 86%; scroll-snap-align: center; }
  .team-arrow { display: flex; }
}
