/* =============================================
   META ROAS — NeoVision Editorial Redesign
   Light Hero → Dark Sections — 2024
   ============================================= */

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

:root {
  /* Light side */
  --cream:    #f4f3ef;
  --white:    #ffffff;
  --ink:      #0a0a0a;
  --ink-mid:  rgba(10,10,10,0.5);
  --ink-soft: rgba(10,10,10,0.32);
  --border-l: rgba(10,10,10,0.1);

  /* Dark side */
  --dark:     #0c0c0c;
  --dark2:    #141414;
  --dark3:    #1c1c1c;
  --chalk:    rgba(255,255,255,0.88);
  --chalk-mid:rgba(255,255,255,0.45);
  --chalk-low:rgba(255,255,255,0.18);
  --border-d: rgba(255,255,255,0.08);

  /* Accent */
  --accent:   #1a56db;

  /* Type */
  --font:     'DM Sans', system-ui, sans-serif;
  --serif:    'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--chalk-mid);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: #333; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.07s; }
.delay-2 { transition-delay: 0.14s; }
.delay-3 { transition-delay: 0.21s; }
.delay-4 { transition-delay: 0.28s; }

/* ── DOTS ── */
.dot       { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); flex-shrink: 0; }
.dot-white { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--chalk); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: #080808;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.4s, background 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.08);
}
/* Nav always dark */
.nav.nav--light {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.08);
}
.nav.nav--light .logo-text,
.nav.nav--light .logo-mark { color: #fff; background: #fff; }
.nav.nav--light .nav-links a { color: rgba(255,255,255,0.5); }
.nav.nav--light .nav-links a:hover { color: #fff; }
.nav.nav--light .menu-btn span { background: #fff; }
/* Nav dark text (default for dark hero) */
.nav .logo-text { color: #fff; }
.nav .logo-mark { background: #fff; color: #080808; }
.nav .logo-text strong { color: #fff; }
.nav .nav-links a { color: rgba(255,255,255,0.5); }
.nav .nav-links a:hover { color: #fff; }
.nav .menu-btn span { background: #fff; }
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; gap: 40px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.05em;
}
.logo-text {
  font-size: 1rem; font-weight: 500;
  color: var(--ink); letter-spacing: -0.01em;
}
.logo-text strong { font-weight: 800; }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none; margin: 0 auto;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; flex-shrink: 0; }
.btn-nav-dark {
  font-size: 0.78rem; font-weight: 600;
  color: var(--ink); letter-spacing: 0.04em;
  padding: 9px 20px;
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s;
}
.btn-nav-dark:hover { background: var(--ink); color: var(--white); }

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span { width: 22px; height: 1.5px; background: #fff; display: block; }

.mobile-menu {
  display: none;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 20px 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu a {
  display: block;
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.75);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu ul li:last-child a {
  border-bottom: none;
  color: #fff;
  background: rgba(255,255,255,0.05);
  padding: 14px 16px;
  margin-top: 8px;
  border-radius: 6px;
}

/* ═══════════════════════════════════════════
   HERO — LIGHT BG
═══════════════════════════════════════════ */
.hero {
  background: var(--cream);
  padding: 68px 0 0;
  min-height: 100svh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}

/* ── HERO DARK (Apple style) ── */
.hero--dark {
  background: #080808 !important;
}
.hero--dark .hero-eyebrow {
  color: rgba(255,255,255,0.35);
}
.hero--dark .hero-title {
  color: #fff;
}

/* Ambient glow blobs */
.hero-glow {
  position: absolute; pointer-events: none; border-radius: 50%;
}
.hero-glow--left {
  width: 600px; height: 600px;
  top: -160px; left: -160px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
}
.hero-glow--right {
  width: 800px; height: 800px;
  top: 50%; right: -100px; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(226,232,240,0.07) 0%, transparent 65%);
}

/* Dark subtitle */
.hero-sub--dark {
  color: rgba(255,255,255,0.45) !important;
}

/* Apple CTAs */
.btn-apple-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #080808;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: 100px;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.3s;
}
.btn-apple-primary:hover {
  background: rgba(255,255,255,0.88);
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(255,255,255,0.12);
}
.btn-apple-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.6);
  font-size: 0.8rem; font-weight: 500;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-apple-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

/* Partners dark */
.hero-partners--dark { border-top-color: rgba(255,255,255,0.08) !important; }
.hero-partners--dark .hp-label { color: rgba(255,255,255,0.3) !important; }
.hp-av--dark {
  background: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.7) !important;
  border-color: #080808 !important;
}
.hp-count--dark { color: rgba(255,255,255,0.5) !important; }

/* Stats row */
.hstat { display: flex; flex-direction: column; gap: 3px; }
.hstat-n {
  font-size: 1.5rem; font-weight: 900;
  letter-spacing: -0.03em; color: #fff; line-height: 1;
}
.hstat-l {
  font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
}
.hstat-div {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.1);
}

/* Hero image right (dark theme) */
.hero-right--img {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-img-wrap {
  position: relative; width: 100%;
}
.hero-img-dark {
  width: 100%; height: auto; display: block;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
  transition: transform 1s cubic-bezier(0.22,1,0.36,1);
}
.hero-right--img:hover .hero-img-dark { transform: scale(1.015) translateY(-6px); }
.hero-img-bottom-fade {
  position: absolute; bottom: 0; inset-x: 0; height: 140px;
  background: linear-gradient(to top, #080808, transparent);
  pointer-events: none;
}

/* hero-bottom: parceiros + stats */
.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.hero-stats {
  display: flex; align-items: center; gap: 28px;
}

/* Mobile: imagem compacta e integrada */
@media (max-width: 1024px) {
  .hero-right--img { justify-content: center; }
  .hero-img-wrap { max-width: 280px; margin: 0 auto; }
  .hero-img-dark { width: 100%; }
  .hero-img-bottom-fade { height: 60px; }

  /* hero-bottom encosta na imagem sem gap */
  .hero-bottom {
    margin-top: -24px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
}
@media (max-width: 768px) {
  .hero-img-wrap { max-width: 220px; }
  .hero-bottom { margin-top: -16px; }
  .hero-stats { gap: 20px; }
  .hstat-n { font-size: 1.2rem; }
}

/* Spline 3D right */
.hero-right--spline {
  display: flex; align-items: center; justify-content: center;
  position: relative; min-height: 540px;
}
.hero-spline-wrap {
  position: relative;
  width: 100%; height: 100%;
  min-height: 540px;
  overflow: hidden;
}
.hero-spline {
  display: block;
  width: 100%; height: 100%;
  border: none; background: transparent;
}
/* Hide Spline watermark */
.hero-spline::part(logo),
spline-viewer::part(logo) { display: none !important; }
.hero-spline-fade {
  position: absolute; bottom: 0; inset-x: 0; height: 140px;
  background: linear-gradient(to top, #080808, transparent);
  pointer-events: none; z-index: 2;
}
/* Also hide via shadow DOM piercing attempt */
.hero-spline-wrap #logo { display: none !important; }

/* Dark scroll cue */
.hero-scroll--dark { color: rgba(255,255,255,0.25) !important; }
.scroll-line--dark { background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent) !important; }

/* Dot white variant */
.dot--white { background: rgba(255,255,255,0.4) !important; }
.hero-inner {
  flex: 1;
  max-width: 1320px; margin: 0 auto; width: 100%;
  padding: 60px 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-template-rows: auto auto;
  gap: 0 48px;
  align-items: start;
}
.hero-left       { grid-column: 1; grid-row: 1; padding-bottom: 40px; display: flex; flex-direction: column; }
.hero-right--img { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.hero-bottom     { grid-column: 1; grid-row: 2; }

/* LEFT */
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1rem; color: rgba(10,10,10,0.55);
  line-height: 1.65; max-width: 420px;
  margin-top: 36px;
  margin-bottom: 32px;
  display: block;
  clear: both;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 44px;
}

/* hero partner row */
.hero-partners {
  display: flex; align-items: center; gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-l);
}
.hp-label {
  font-size: 0.68rem; color: var(--ink-soft);
  letter-spacing: 0.06em; font-weight: 400;
  white-space: nowrap;
}
.hp-avatars {
  display: flex; align-items: center; gap: -4px;
  flex-wrap: wrap; gap: 4px;
}
.hp-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  font-size: 0.55rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--cream);
}
.hp-count {
  font-size: 0.75rem; font-weight: 700;
  color: var(--ink); margin-left: 6px;
}

/* RIGHT: editorial image */
.hero-right { position: relative; }
.hero-img-frame {
  position: relative;
  overflow: visible;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s cubic-bezier(0.22,1,0.36,1);
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.06));
}
.hero-img-frame:hover .hero-img { transform: scale(1.015) translateY(-4px); }
.hero-img-overlay {
  position: absolute; bottom: 0; left: -5%; right: -5%; height: 20%;
  background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
  pointer-events: none;
}
.hero-stat-chip {
  position: absolute; bottom: 40px; left: -20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(10,10,10,0.1);
  padding: 12px 20px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.hsc-label {
  font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mid);
  font-weight: 500;
}
.hsc-num {
  font-size: 1.7rem; font-weight: 900;
  color: var(--ink); letter-spacing: -0.04em; line-height: 1;
}
.hero-img-tag {
  position: absolute; top: 0px; right: -10px;
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-soft);
  border: 1px solid rgba(10,10,10,0.12);
  padding: 6px 12px;
  background: rgba(244,243,239,0.8);
  backdrop-filter: blur(8px);
}

/* floating card */
.hero-float-card {
  position: absolute; bottom: -16px; right: -20px;
  background: var(--ink);
  color: var(--white);
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 4px;
  min-width: 180px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.hfc-top { display: flex; justify-content: space-between; align-items: center; }
.hfc-label { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.hfc-arrow { font-size: 1rem; color: rgba(255,255,255,0.6); }
.hfc-num { font-size: 1.6rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; }
.hfc-sub { font-size: 0.65rem; color: rgba(255,255,255,0.4); }

/* scroll */
.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding-bottom: 28px;
  color: var(--ink-soft); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════
   MARQUEE BAND — DARK STRIP
═══════════════════════════════════════════ */
.marquee-band {
  background: var(--ink);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 20px;
}
.marquee-track .sep { color: rgba(255,255,255,0.2); padding: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-dark {
  display: inline-flex; align-items: center;
  background: var(--ink); color: var(--white);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.btn-dark:hover { background: #222; }

.btn-outline-dark {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--ink);
  font-size: 0.82rem; font-weight: 600;
  padding: 14px 28px;
  border: 1px solid rgba(10,10,10,0.25);
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline-dark:hover { border-color: var(--ink); }

.btn-white {
  display: inline-flex; align-items: center;
  background: var(--white); color: var(--ink);
  font-size: 0.82rem; font-weight: 700;
  padding: 14px 28px;
  border: 1px solid var(--white);
  transition: background 0.25s, color 0.25s;
}
.btn-white:hover { background: rgba(255,255,255,0.88); }

.btn-ghost-white {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--chalk-mid);
  font-size: 0.82rem; font-weight: 500;
  padding: 14px 0;
  transition: color 0.25s;
}
.btn-ghost-white:hover { color: var(--white); }

.btn-white-sm {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--white); color: var(--ink);
  font-size: 1rem; font-weight: 600;
  border: 1px solid var(--white);
  transition: background 0.2s;
}
.btn-white-sm:hover { background: rgba(255,255,255,0.88); }

.btn-white-lg {
  display: inline-flex; align-items: center;
  background: var(--white); color: var(--ink);
  font-size: 0.9rem; font-weight: 700;
  padding: 16px 36px;
  border: 1px solid var(--white);
  letter-spacing: 0.02em;
  transition: background 0.25s;
  margin-bottom: 24px;
}
.btn-white-lg:hover { background: rgba(255,255,255,0.9); }

.btn-white-full {
  display: block; width: 100%;
  background: var(--white); color: var(--ink);
  font-size: 0.85rem; font-weight: 700;
  padding: 15px;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font);
  letter-spacing: 0.04em;
}
.btn-white-full:hover { background: rgba(255,255,255,0.88); }

/* ═══════════════════════════════════════════
   ABOUT — THE EYEWEAR FRONTIER
═══════════════════════════════════════════ */
.about-section {
  position: relative; overflow: hidden;
  background: var(--dark);
  padding: 100px 0 120px;
}
.about-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image */
.about-img-wrap {
  position: relative;
  height: clamp(500px, 68vh, 720px);
}
.about-img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center bottom;
  filter: grayscale(8%) contrast(1.04);
}
.about-img-badge {
  position: absolute; bottom: 28px; right: -20px;
  background: var(--white);
  color: var(--ink);
  padding: 20px 28px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
}
.about-img-badge span:first-child {
  font-size: 2.4rem; font-weight: 900;
  letter-spacing: -0.05em; line-height: 1;
  color: var(--ink);
}
.aib-label {
  font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mid) !important;
  font-size: 0.62rem !important; font-weight: 500;
}

/* Text */
.about-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--chalk-low);
  margin-bottom: 24px;
}
.about-title {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.pill {
  border: 1px solid var(--border-d);
  color: var(--chalk-mid);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
}
.about-body {
  font-size: 0.95rem;
  color: var(--chalk-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-ctas {
  display: flex; align-items: center; gap: 24px;
  margin-top: 36px;
}

/* ═══════════════════════════════════════════
   SERVICES — PERCEPÇÃO DE VALOR
═══════════════════════════════════════════ */
.services-section {
  position: relative; overflow: hidden;
  background: var(--dark2);
  border-top: 1px solid var(--border-d);
  padding: 0;
}
.sv-container {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
}

/* shared block wrapper */
.sv-block {
  border-bottom: 1px solid var(--border-d);
  padding: 96px 0;
}
.sv-block--cards { border-bottom: none; padding-bottom: 120px; }

/* ── BLOCK 1: Statement + journey ── */
.svs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.svs-headline {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.0; letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 20px 0 28px;
}
.svs-sub {
  font-size: 1rem; color: var(--chalk-mid);
  line-height: 1.7; max-width: 400px;
  margin-bottom: 16px;
}
.svs-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic; color: var(--white);
  opacity: 0.7; margin-top: 8px;
}
.svs-journey {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--border-d);
}
.svs-journey li {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-d);
  font-size: 0.95rem; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  cursor: default;
}
.svs-journey li:hover { color: var(--white); }
.svj-num {
  font-size: 0.62rem; font-weight: 700;
  color: rgba(255,255,255,0.2); letter-spacing: 0.1em;
  min-width: 28px;
}

/* ── BLOCK 2: Develop ── */
.svd-top {
  margin-bottom: 56px;
}
.svd-eyebrow {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--chalk-low); margin-bottom: 20px;
}
.svd-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; letter-spacing: -0.03em;
  text-transform: uppercase;
}
.svd-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  border: 1px solid var(--border-d);
}
.svd-col { padding: 48px 48px; }
.svd-col-label {
  display: block;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--chalk-low); margin-bottom: 28px;
}
.svd-divider { background: var(--border-d); }
.svd-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.svd-list li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 12px;
  transition: color 0.2s;
}
.svd-list li:last-child { border-bottom: none; }
.svd-list li::before {
  content: '—'; font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
}
.svd-list li:hover { color: var(--white); }
.svd-list--accent li::before { content: '→'; color: rgba(255,255,255,0.3); }
.svd-list--accent li { color: rgba(255,255,255,0.7); }

/* ── BLOCK 3: Numbers ── */
.sv-block--numbers { background: var(--dark); }
.svn-header { margin-bottom: 52px; }
.svn-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.05; letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-top: 16px;
}
.svn-questions { display: flex; flex-direction: column; gap: 0; }
.svn-q {
  display: flex; align-items: center; gap: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--border-d);
  transition: background 0.2s;
  cursor: default;
}
.svn-q:last-child { border-bottom: 1px solid var(--border-d); }
.svn-q:hover .svn-text { color: var(--white); }
.svn-q:hover .svn-idx { color: rgba(255,255,255,0.4); }
.svn-idx {
  font-size: 0.62rem; font-weight: 700;
  color: rgba(255,255,255,0.18); letter-spacing: 0.1em;
  min-width: 28px; flex-shrink: 0;
}
.svn-text {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600; color: rgba(255,255,255,0.45);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.svn-footnote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.5rem; color: rgba(255,255,255,0.25);
  margin-top: 36px;
}

/* ── BLOCK 4: Goal + attributes ── */
.sv-block--goal { background: var(--dark2); }
.svg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.svg-title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 18px 0 20px;
}
.svg-body {
  font-size: 0.95rem; color: var(--chalk-mid);
  line-height: 1.7; margin-bottom: 32px; max-width: 400px;
}
.svg-attrs {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-content: center;
}
.svg-attr {
  border: 1px solid var(--border-d);
  padding: 12px 24px;
  font-size: 0.9rem; font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  cursor: default;
}
.svg-attr:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* ── BLOCK 5: Cards ── */
.sv-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.sv-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--chalk-low);
  margin-bottom: 14px;
}
.sv-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.sv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-d);
  border: 1px solid var(--border-d);
}
.sv-card {
  background: var(--dark2);
  padding: 44px 36px;
  display: flex; flex-direction: column; gap: 0;
  transition: background 0.3s;
  cursor: default;
}
.sv-card:hover { background: var(--dark3); }
.svc-num {
  font-size: 0.68rem; font-weight: 700;
  color: var(--chalk-low); letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.svc-icon {
  width: 36px; height: 36px;
  color: var(--chalk-mid);
  margin-bottom: 28px;
}
.svc-icon svg { width: 100%; height: 100%; }
.sv-card h3 {
  font-family: var(--font);
  font-size: 1.1rem; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.25;
}
.sv-card p {
  font-size: 0.85rem;
  color: var(--chalk-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}
.svc-link {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--chalk-low);
  transition: color 0.2s;
}
.sv-card:hover .svc-link { color: var(--white); }

/* ═══════════════════════════════════════════
   FEATURE SECTION
═══════════════════════════════════════════ */
.feature-section {
  position: relative; overflow: hidden;
  background: var(--dark);
  border-top: 1px solid var(--border-d);
  padding: 100px 0 120px;
}
.feat-container {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
}
.feat-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 56px;
}
.feat-grid {
  display: grid;
  grid-template-columns: 160px 1fr 200px;
  gap: 48px;
  align-items: start;
}
.feat-tags {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 4px;
}
.feat-tag-item {
  font-size: 0.78rem; font-weight: 600;
  color: var(--chalk-low);
  cursor: pointer;
  transition: color 0.2s;
  padding: 2px 0;
}
.feat-tag-item.active,
.feat-tag-item:hover { color: var(--white); }

/* article card */
.feat-article {
  border: 1px solid var(--border-d);
}
.fa-img-wrap { height: 240px; overflow: hidden; }
.fa-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.fa-text {
  padding: 24px 28px 16px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
}
.fa-tag {
  font-size: 0.92rem; font-weight: 600;
  color: var(--white); line-height: 1.4;
}
.fa-link {
  font-size: 0.75rem; font-weight: 600;
  color: var(--chalk-low); white-space: nowrap;
  transition: color 0.2s;
}
.fa-link:hover { color: var(--white); }
.fa-meta {
  padding: 0 28px 20px;
  display: flex; justify-content: space-between;
  font-size: 0.68rem; color: var(--chalk-low); letter-spacing: 0.04em;
}

/* stats */
.feat-stats {
  display: flex; flex-direction: column; gap: 0;
}
.fst-item {
  padding: 24px 0;
  display: flex; flex-direction: column;
}
.fst-num {
  font-size: 2.4rem; font-weight: 900;
  color: var(--white); letter-spacing: -0.05em; line-height: 1;
}
.fst-unit { font-size: 1.4rem; font-weight: 900; color: var(--white); }
.fst-label {
  font-size: 0.68rem; color: var(--chalk-low);
  letter-spacing: 0.06em; margin-top: 4px;
}
.fst-div { height: 1px; background: var(--border-d); }

/* ═══════════════════════════════════════════
   MÉTODO — TABBED 4 ETAPAS
═══════════════════════════════════════════ */
.metodo-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.metodo-header .feat-title { margin-bottom: 0; }

/* Tab navigation */
.metodo-tabs {
  display: flex; align-items: stretch;
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
  margin-bottom: 0;
  position: relative;
  gap: 0;
}
.mtab {
  flex: 1; display: flex; flex-direction: column;
  gap: 6px; padding: 20px 28px;
  background: none; border: none;
  cursor: pointer; text-align: left;
  border-right: 1px solid var(--border-d);
  transition: background 0.25s;
  position: relative;
}
.mtab:last-of-type { border-right: none; }
.mtab:hover { background: rgba(255,255,255,0.03); }
.mtab.active { background: rgba(255,255,255,0.06); }
.mtab.active::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--white);
}
.mtab-num {
  font-size: 0.65rem; font-weight: 700;
  color: var(--chalk-low); letter-spacing: 0.1em;
  font-family: var(--font);
}
.mtab.active .mtab-num { color: rgba(255,255,255,0.5); }
.mtab-label {
  font-size: 0.88rem; font-weight: 600;
  color: var(--chalk-low);
  font-family: var(--font);
  transition: color 0.2s;
}
.mtab.active .mtab-label,
.mtab:hover .mtab-label { color: var(--white); }

/* auto-play progress bar */
.mtab-progress-wrap {
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: transparent;
  pointer-events: none;
}
.mtab-progress {
  height: 100%;
  background: rgba(255,255,255,0.35);
  width: 0%;
  transition: none;
}

/* Panels */
.metodo-panels {
  border: 1px solid var(--border-d);
  border-top: none;
  margin-bottom: 56px;
}
.mpanel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.mpanel.active { display: grid; }

/* image side */
.mpanel-img {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.mpanel-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: grayscale(15%);
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.mpanel.active .mpanel-photo { transform: scale(1.0); }

/* text side */
.mpanel-body {
  padding: 52px 48px;
  display: flex; flex-direction: column;
  border-left: 1px solid var(--border-d);
}
.mpanel-index {
  font-size: 0.68rem; font-weight: 700;
  color: var(--chalk-low); letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px; display: block;
}
.mpanel-title {
  font-family: var(--font);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.mpanel-desc {
  font-size: 0.92rem; color: var(--chalk-low);
  line-height: 1.7; margin-bottom: 28px;
}
.mpanel-list {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.mpanel-list li {
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  padding-left: 20px; position: relative; line-height: 1.4;
}
.mpanel-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: rgba(255,255,255,0.25); font-size: 0.75rem;
}
.mpanel-cta {
  display: inline-flex; align-items: center;
  font-size: 0.78rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.06em;
  border: 1px solid var(--border-d);
  padding: 12px 22px;
  transition: background 0.2s, border-color 0.2s;
  align-self: flex-start;
}
.mpanel-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

/* panel enter animation */
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mpanel.active { animation: panelIn 0.4s cubic-bezier(0.22,1,0.36,1) forwards; }

/* Bottom stats row */
.metodo-stats {
  display: flex; align-items: center;
  gap: 0; border: 1px solid var(--border-d);
}
.metodo-stats .fst-item {
  padding: 28px 40px; flex: 1;
  border-right: 1px solid var(--border-d);
}
.metodo-stats .fst-item:last-child { border-right: none; }
.metodo-stats-div { display: none; } /* hidden, borders handle dividers */

/* Responsive */
@media (max-width: 860px) {
  /* método tabs */
  .metodo-tabs { flex-wrap: wrap; }
  .mtab { flex: 1 1 45%; min-width: 130px; }
  .mpanel { grid-template-columns: 1fr; }
  .mpanel-img { height: 260px; }
  .mpanel-body { padding: 32px 24px; }
  .metodo-stats { flex-wrap: wrap; }
  .metodo-stats .fst-item {
    flex: 1 1 45%; border-right: 1px solid var(--border-d);
    border-bottom: 1px solid var(--border-d);
  }
  /* services */
  .svs-grid { grid-template-columns: 1fr; gap: 48px; }
  .svd-grid { grid-template-columns: 1fr; }
  .svd-divider { height: 1px; width: auto; }
  .svd-col { padding: 36px 28px; }
  .svg-inner { grid-template-columns: 1fr; gap: 48px; }
  .svn-text { font-size: 1rem; }
  .sv-block { padding: 72px 0; }
}
@media (max-width: 540px) {
  .mtab { padding: 14px 16px; }
  .mtab-label { font-size: 0.78rem; }
  .svs-headline { font-size: 2rem; }
  .svn-title { font-size: 1.6rem; }
  .sv-container { padding: 0 20px; }
  .sv-block { padding: 56px 0; }
  .svd-col { padding: 28px 20px; }
  .svn-q { gap: 16px; padding: 18px 0; }
  .svg-attr { padding: 10px 16px; font-size: 0.8rem; }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS — VOZES DO MERCADO
═══════════════════════════════════════════ */
.testimonials-section {
  position: relative; overflow: hidden;
  background: var(--dark2);
  border-top: 1px solid var(--border-d);
  padding: 100px 0 120px;
}
.tm-container {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
}
.tm-title {
  font-family: var(--font);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tm-sub {
  font-size: 0.88rem;
  color: var(--chalk-mid);
  margin-bottom: 64px;
}
.tm-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.tm-header { text-align: center; }
.tm-sub { margin-bottom: 56px; }

/* ── MARQUEE ── */
.tm-marquee-wrap {
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
}
.tm-marquee-row { overflow: hidden; padding: 4px 0; }
.tm-marquee-track {
  display: flex; gap: 12px;
  width: max-content;
}
.tm-marquee-fwd  { animation: marquee-fwd 40s linear infinite; }
.tm-marquee-rev  { animation: marquee-rev 50s linear infinite; }
.tm-marquee-row:hover .tm-marquee-track { animation-play-state: paused; }

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

/* Card */
.tm-card {
  flex-shrink: 0;
  width: 300px;
  padding: 20px 24px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-top: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  transition: background 0.3s;
  cursor: default;
}
.tm-card:hover {
  background: linear-gradient(to bottom, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
}
.tm-card-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.tm-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.tm-card-top strong { display: block; font-size: 0.85rem; color: var(--white); }
.tm-card-top span  { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.tm-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* fade edges */
.tm-fade-left, .tm-fade-right {
  position: absolute; top: 0; bottom: 0; width: 15%;
  pointer-events: none; z-index: 2;
}
.tm-fade-left  { left: 0;  background: linear-gradient(to right, var(--dark2), transparent); }
.tm-fade-right { right: 0; background: linear-gradient(to left,  var(--dark2), transparent); }

/* ═══════════════════════════════════════════
   CTA / DIVE SECTION — FULL BLEED
═══════════════════════════════════════════ */
.dive-section {
  position: relative;
  background: var(--dark);
  min-height: 100vh;
  display: flex; align-items: center;
  border-top: 1px solid var(--border-d);
}
@media (max-width: 768px) {
  .dive-section { min-height: auto; padding: 72px 0; }
}
.dive-bg {
  position: absolute; inset: 0; z-index: 0;
}
.dive-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: grayscale(30%) brightness(0.3);
}
.dive-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.92) 50%, rgba(10,10,10,0.6) 100%);
}
.dive-content {
  position: relative; z-index: 10;
  max-width: 1320px; margin: 0 auto; width: 100%;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dive-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--chalk-low);
  margin-bottom: 28px;
}
.dive-title {
  font-family: var(--font);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.dive-body {
  font-size: 0.95rem; color: var(--chalk-mid);
  line-height: 1.75; max-width: 420px;
  margin-bottom: 36px;
}
.dive-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 0.72rem; color: var(--chalk-low); letter-spacing: 0.04em;
}

/* form */
.dive-form {
  background: rgba(20,20,20,0.88);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-d);
  padding: 40px;
}
.dive-form h4 {
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 28px;
}
.df-group { margin-bottom: 14px; }
.df-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.df-group input,
.df-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-d);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.df-group input::placeholder,
.df-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.df-group input:focus,
.df-group textarea:focus { border-color: rgba(255,255,255,0.25); }
.df-group { margin-bottom: 14px; }
.df-note {
  font-size: 0.68rem; color: rgba(255,255,255,0.2);
  text-align: center; margin-top: 14px; line-height: 1.5;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section {
  position: relative; overflow: hidden;
  background: var(--dark);
  border-top: 1px solid var(--border-d);
  padding: 100px 0 120px;
}
.faq-container {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
}
.faq-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.faq-title {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.0; letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-top: 16px;
}

/* accordion list */
.faq-list {
  border-top: 1px solid var(--border-d);
  margin-bottom: 72px;
}
.faq-item {
  border-bottom: 1px solid var(--border-d);
}
.faq-q {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: none; border: none;
  cursor: pointer; text-align: left;
  transition: opacity 0.2s;
}
.faq-q:hover { opacity: 0.75; }
.faq-q > span:first-child {
  font-family: var(--font);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600; color: var(--white);
  letter-spacing: -0.01em; line-height: 1.3;
}
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--border-d);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--chalk-low);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              border-color 0.25s, color 0.25s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

/* answer panel */
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1),
              opacity 0.35s ease;
  opacity: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
}
.faq-a p {
  font-size: 0.95rem;
  color: var(--chalk-mid);
  line-height: 1.75;
  padding-bottom: 28px;
  max-width: 760px;
}

/* bottom CTA */
.faq-cta {
  display: flex; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.faq-cta p {
  font-size: 1rem; color: var(--chalk-low);
  font-style: italic; font-family: var(--serif);
}

/* responsive */
@media (max-width: 860px) {
  .faq-header { grid-template-columns: 1fr; gap: 16px; }
  .faq-container { padding: 0 24px; }
}
@media (max-width: 540px) {
  .faq-q > span:first-child { font-size: 0.95rem; }
  .faq-section { padding: 72px 0 80px; }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 72px 40px 52px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
}
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-mark { background: var(--white); color: var(--ink); }
.footer-brand p {
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  line-height: 1.7; margin: 20px 0 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s;
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }

.footer-cols {
  display: grid;
  grid-template-columns: 120px 140px 1fr;
  gap: 48px;
}
.fc-col h5 {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  line-height: 1.4;
}
.fc-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fc-col a {
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.fc-col a:hover { color: var(--white); }
.fc-contact p {
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  line-height: 1.7; margin-bottom: 20px;
}
.fc-socials { display: flex; gap: 14px; }
.fc-socials a {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.fc-socials a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  padding: 20px 40px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--dark2);
  border: 1px solid var(--border-d);
  padding: 52px 48px;
  text-align: center;
  max-width: 420px; width: 90%;
}
.modal-check {
  font-size: 2rem; color: var(--white);
  margin-bottom: 16px;
}
.modal h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.modal p { color: var(--chalk-mid); font-size: 0.88rem; margin-bottom: 24px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    padding: 24px 24px 32px;
  }
  .hero-left       { grid-column: 1; grid-row: 1; padding-bottom: 16px; }
  .hero-right--img { grid-column: 1; grid-row: 2; }
  .hero-bottom     { grid-column: 1; grid-row: 3; }
  .hero-float-card { bottom: 0; right: 0; }
  .hero-img-frame { height: auto; min-height: 320px; }

  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-img-wrap { height: 460px; }
  .about-img-badge { right: 0; }

  .sv-cards { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-tags { flex-direction: row; flex-wrap: wrap; }
  .feat-stats { flex-direction: row; flex-wrap: wrap; }

  .tm-split { grid-template-columns: 1fr; }
  .dive-content { grid-template-columns: 1fr; padding: 60px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .burger { display: flex; }
  .nav-inner { padding: 0 20px; height: 60px; }

  /* Hero */
  .hero-inner { padding: 28px 20px 24px; gap: 0; }
  .hero-left { display: flex; flex-direction: column; gap: 0; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.1; margin-bottom: 0; order: 2; }
  .hero-eyebrow { order: 1; margin-bottom: 16px; }
  .hero-sub { font-size: 0.9rem; margin-top: 20px; margin-bottom: 20px; max-width: 100%; order: 3; }
  .hero-ctas { order: 4; gap: 10px; margin-bottom: 28px; flex-direction: column; }
  .btn-apple-primary, .btn-apple-ghost { justify-content: center; width: 100%; }
  .hero-bottom { padding-top: 16px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hstat-n { font-size: 1.3rem; }
  .hero-scroll { display: none !important; }

  /* Hero partners alinhamento */
  .hero-partners {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 20px;
  }
  .hp-avatars { flex-wrap: nowrap; }

  /* Eyebrow wrap fix */
  .hero-eyebrow { flex-wrap: wrap; align-items: flex-start; }
  .hero-eyebrow .dot--white { margin-top: 3px; flex-shrink: 0; }

  /* Sections */
  .about-section { padding: 64px 0; }
  .about-inner { padding: 0 20px; gap: 40px; }
  .about-img-wrap { height: 360px; }
  .about-img-badge { right: 0; bottom: 16px; padding: 14px 18px; }
  .about-img-badge span:first-child { font-size: 1.8rem; }
  .about-ctas { flex-direction: column; gap: 12px; }
  .about-ctas .btn-white, .about-ctas .btn-ghost-white { justify-content: center; width: 100%; }

  .services-section { padding: 64px 0; }
  .sv-container { padding: 0 20px; }
  .sv-block { padding: 56px 0; }
  .svs-headline { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .svd-col { padding: 28px 20px; }
  .svg-attr { padding: 10px 14px; font-size: 0.78rem; }

  .feature-section { padding: 64px 0; }
  .feat-container { padding: 0 20px; }
  .metodo-header { flex-direction: column; gap: 16px; }
  .feat-title { font-size: clamp(1.8rem, 7vw, 2.4rem); margin-bottom: 0; }
  .mtab { flex: 1 1 45%; padding: 12px 14px; }
  .mtab-label { font-size: 0.75rem; }
  .mpanel-body { padding: 28px 20px; }
  .mpanel-img { height: 220px; }

  .testimonials-section { padding: 64px 0; }
  .tm-container { padding: 0 20px; }
  .tm-title { font-size: clamp(2rem, 8vw, 3rem); }

  .dive-content { padding: 48px 20px; }
  .dive-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .df-row { grid-template-columns: 1fr; }
  .dive-form { padding: 28px 20px; }

  .faq-container { padding: 0 20px; }
  .faq-header { gap: 12px; }
  .faq-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .faq-q > span:first-child { font-size: 0.9rem; }
  .faq-cta { flex-direction: column; gap: 16px; }
  .faq-cta .btn-white { justify-content: center; }

  .footer-inner { padding: 48px 20px 36px; gap: 36px; }
  .footer-bottom { padding-left: 20px; padding-right: 20px; flex-direction: column; gap: 8px; text-align: center; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ═══════════════════════════════════════════
   FUTURISTIC MICRO-INTERACTIONS
═══════════════════════════════════════════ */

/* ── Custom Cursor ── */
*, *::before, *::after { cursor: none !important; }

/* dot — small solid white circle */
.cursor-dot {
  position: fixed; z-index: 99999;
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  will-change: left, top;
  /* glow shadow */
  box-shadow: 0 0 12px 4px rgba(255,255,255,0.55),
              0 0 28px 8px rgba(255,255,255,0.18);
}

/* on light hero: flip to dark */
.hero .cursor-dot {
  background: var(--ink);
  box-shadow: 0 0 12px 4px rgba(0,0,0,0.25),
              0 0 28px 8px rgba(0,0,0,0.1);
}

/* ring — thin circle that lags behind */
.cursor-ring {
  position: fixed; z-index: 99998;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: width 0.3s cubic-bezier(0.22,1,0.36,1),
              height 0.3s cubic-bezier(0.22,1,0.36,1),
              border-color 0.25s, opacity 0.25s;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: rgba(255,255,255,0.55);
}
.cursor-ring.clicking {
  width: 20px; height: 20px;
  border-color: rgba(255,255,255,0.9);
}

/* on light hero */
.hero .cursor-ring { border-color: rgba(0,0,0,0.22); }

/* ambient glow that follows mouse (large, soft) */
.cursor-glow {
  position: fixed; z-index: 99990;
  width: 320px; height: 320px; border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.055) 0%, transparent 70%);
  will-change: left, top;
  transition: left 0.18s ease, top 0.18s ease;
}

/* ── HUD Corners on images ── */
.hud-frame {
  position: relative;
}
.hud-frame::before,
.hud-frame::after,
.hud-frame .hud-br,
.hud-frame .hud-bl {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  z-index: 10; pointer-events: none;
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1),
              height 0.4s cubic-bezier(0.22,1,0.36,1),
              opacity 0.3s;
  opacity: 0.5;
}
.hud-frame::before {
  top: 12px; left: 12px;
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
}
.hud-frame::after {
  top: 12px; right: 12px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
}
.hud-frame .hud-br {
  bottom: 12px; right: 12px;
  border-bottom: 1px solid var(--white);
  border-right: 1px solid var(--white);
}
.hud-frame .hud-bl {
  bottom: 12px; left: 12px;
  border-bottom: 1px solid var(--white);
  border-left: 1px solid var(--white);
}
.hud-frame:hover::before,
.hud-frame:hover::after,
.hud-frame:hover .hud-br,
.hud-frame:hover .hud-bl {
  width: 28px; height: 28px; opacity: 1;
}

/* dark variant for light sections */
.hud-frame.hud-dark::before,
.hud-frame.hud-dark::after,
.hud-frame.hud-dark .hud-br,
.hud-frame.hud-dark .hud-bl {
  border-color: var(--ink);
  opacity: 0.25;
}
.hud-frame.hud-dark:hover::before,
.hud-frame.hud-dark:hover::after,
.hud-frame.hud-dark:hover .hud-br,
.hud-frame.hud-dark:hover .hud-bl { opacity: 0.7; }

/* ── Scan line on images ── */
.scan-wrap {
  position: relative;
  overflow: hidden;
}
.scan-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
  animation: scanLine 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}
@keyframes scanLine {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 0.6; }
  100% { top: 102%; opacity: 0; }
}

/* ── Animated Grain (dark sections) ── */
.grain-overlay {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grainShift 0.5s steps(1) infinite;
  mix-blend-mode: overlay;
}
@keyframes grainShift {
  0%  { background-position: 0 0; }
  20% { background-position: -40px 20px; }
  40% { background-position: 20px -30px; }
  60% { background-position: -20px 40px; }
  80% { background-position: 40px -10px; }
  100%{ background-position: 0 0; }
}

/* ── Magnetic button base ── */
.btn-mag {
  display: inline-flex; align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.btn-mag::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-105%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.btn-mag:hover::before { transform: translateX(0); }

/* ── Text scramble (applied via JS) ── */
.scramble-title {
  display: block;
}

/* ── Split letter reveal ── */
.split-word {
  display: inline-block; overflow: hidden; vertical-align: bottom;
}
.split-char {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.split-char.in { transform: translateY(0); }

/* ── Number ticker ── */
.stat-ticker {
  font-variant-numeric: tabular-nums;
}

/* ── Service card hover — border trace ── */
.sv-card {
  position: relative;
  isolation: isolate;
}
.sv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.35s;
  pointer-events: none;
}
.sv-card:hover::after {
  border-color: rgba(255,255,255,0.12);
}

/* ── Nav link — underline slide ── */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.3s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover::after { width: 100%; }

/* ── Testimonial card — lift ── */
.tms-card {
  transition: background 0.3s, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.tms-card:hover { transform: translateY(-3px); }

/* ── About img — hue shift on hover ── */
.about-img {
  transition: filter 0.8s ease, transform 0.8s ease;
}
.about-img-wrap:hover .about-img {
  filter: grayscale(0%) contrast(1.06) brightness(1.04);
  transform: scale(1.02);
}

/* ── Scrolling progress line at top ── */
#progress-line {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px;
  background: linear-gradient(to right, var(--ink), rgba(26,86,219,0.6));
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── Feature section data tag ── */
.feat-data-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 8px;
  z-index: 10;
  font-family: var(--font);
}

/* ── Glitch on section title entry ── */
@keyframes glitch1 {
  0%   { clip-path: inset(40% 0 50% 0); transform: translate(-4px, 0); }
  20%  { clip-path: inset(70% 0 10% 0); transform: translate(4px, 0); }
  40%  { clip-path: inset(10% 0 80% 0); transform: translate(-2px, 0); }
  60%  { clip-path: inset(60% 0 30% 0); transform: translate(3px, 0); }
  80%  { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 0); }
  100% { clip-path: inset(40% 0 50% 0); transform: translate(0, 0); }
}
.glitch-title {
  position: relative;
}
.glitch-title.glitching::before,
.glitch-title.glitching::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  color: inherit;
  font: inherit;
}
.glitch-title.glitching::before {
  animation: glitch1 0.35s steps(2) forwards;
  color: rgba(255,255,255,0.7);
  left: 2px;
}
.glitch-title.glitching::after {
  animation: glitch1 0.35s steps(2) 0.05s reverse forwards;
  color: rgba(26,86,219,0.5);
  left: -2px;
}

/* ── Futuristic divider line ── */
.fut-divider {
  width: 0; height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.15), transparent);
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
  margin: 0 0 56px;
}
.fut-divider.in { width: 100%; }

