/* =========================================
   MÉTODO CHORDATA — design system
   ========================================= */
:root {
  --navy-900: #061a30;
  --navy-800: #0a2540;
  --navy-700: #143b66;
  --navy-600: #1f5188;
  --accent:   #4fb3d9;
  --accent-soft: #7ec9e3;
  --bone:     #f6f4ee;
  --bone-2:   #ede9df;
  --paper:    #fbfaf6;
  --ink:      #0a2540;
  --ink-soft: #2b3d52;
  --mute:     #6e7a86;
  --line:     rgba(10, 37, 64, 0.12);
  --line-strong: rgba(10, 37, 64, 0.22);

  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans:  'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --maxw: 1320px;
  --pad-x: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 380;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

/* Selection */
::selection { background: var(--navy-800); color: var(--bone); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
section { position: relative; padding: clamp(80px, 11vw, 160px) 0; }
.dark { background: var(--navy-800); color: var(--bone); }
.dark { --line: rgba(255,255,255,0.12); --line-strong: rgba(255,255,255,0.22); }
.dark .mute { color: rgba(246,244,238,0.6); }
.bone { background: var(--bone); }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow.no-line::before { display: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; margin: 0; }
h1 { font-size: clamp(54px, 8vw, 132px); line-height: 0.95; }
h2 { font-size: clamp(40px, 5.4vw, 78px); line-height: 1.02; }
h3 { font-size: clamp(28px, 3vw, 40px); line-height: 1.08; }
h4 { font-size: clamp(22px, 2vw, 26px); line-height: 1.15; }
em, i { font-style: italic; }
em.accent { color: var(--accent); }

p { margin: 0 0 1.1em 0; }
p.lead { font-size: clamp(19px, 1.5vw, 22px); line-height: 1.5; color: var(--ink-soft); max-width: 62ch; }
.dark p.lead { color: rgba(246,244,238,0.78); }
.body-text { max-width: 62ch; color: var(--ink-soft); }
.dark .body-text { color: rgba(246,244,238,0.78); }
.mute { color: var(--mute); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--navy-900); }
.btn-primary:hover { background: var(--navy-900); color: var(--bone); transform: translateY(-1px); }
.btn-dark { background: var(--navy-800); color: var(--bone); }
.btn-dark:hover { background: var(--accent); color: var(--navy-900); }
.btn-ghost { padding: 14px 0; border-radius: 0; border-bottom: 1px solid currentColor; }
.btn-ghost:hover { color: var(--accent); }
.btn-arrow { transition: transform .25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(251,250,246, 0.0);
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251,250,246, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 12px var(--pad-x);
}
.nav .logo {
  display: flex; align-items: center; gap: 10px;
}
.nav .logo img { height: 120px; transition: height .35s ease, opacity .25s; }
.nav .logo .col { display: none; }
.nav.scrolled .logo img { height: 52px; }
.nav.scrolled .logo .col { display: block; }
.nav.scrolled .logo .wht { display: none; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.06em;
  color: var(--bone);
  transition: color .2s;
}
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--accent); }
.nav-cta-mobile { display: none; }
.nav-close { display: none; }
.nav-right {
  display: flex; align-items: center; gap: 20px;
}
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em;
}
.lang-switch button {
  background: none; border: 0;
  font: inherit;
  color: rgba(246, 244, 238, 0.55);
  cursor: pointer;
  padding: 6px 2px;
  letter-spacing: inherit;
  transition: color .2s;
  border-bottom: 1px solid transparent;
}
.lang-switch button:hover { color: var(--bone); }
.lang-switch button.active {
  color: var(--bone);
  border-bottom-color: var(--accent);
}
.lang-switch .lang-sep {
  color: rgba(246, 244, 238, 0.25);
  pointer-events: none;
  user-select: none;
}
.nav.scrolled .lang-switch button { color: var(--mute); }
.nav.scrolled .lang-switch button:hover { color: var(--ink); }
.nav.scrolled .lang-switch button.active { color: var(--ink); }
.nav.scrolled .lang-switch .lang-sep { color: var(--line-strong); }

.nav-cta {
  font-size: 13px; letter-spacing: 0.04em;
  padding: 11px 20px; border-radius: 999px;
  background: var(--accent); color: var(--navy-900);
  font-weight: 500; white-space: nowrap;
}
.nav-cta:hover { background: var(--bone); color: var(--navy-900); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: 10px; margin: -10px -8px -10px 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle-bars { display: block; width: 24px; height: 16px; position: relative; }
.nav-toggle-bars span {
  position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px;
  background: var(--bone);
  transition: transform .28s ease, opacity .2s ease, background .35s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 7px; }
.nav-toggle-bars span:nth-child(3) { top: 14px; }
.nav.scrolled .nav-toggle-bars span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav .logo img { height: 60px; }
  .nav.scrolled .logo img { height: 46px; }
  .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; top: 0; left: 0; right: 0;
    padding: 88px var(--pad-x) 32px;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transform: translateY(-105%);
    transition: transform .34s cubic-bezier(.4,0,.2,1);
    z-index: 40;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    color: var(--bone); font-size: 16px; letter-spacing: 0.02em;
    padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav.scrolled .nav-links a { color: var(--bone); }
  .nav-links .nav-cta-mobile {
    display: flex; align-items: center; justify-content: center;
    margin-top: 24px; text-align: center; border-bottom: 0;
    background: var(--accent); color: var(--navy-900);
    border-radius: 999px; padding: 16px 24px; font-weight: 500;
    white-space: nowrap;
  }
  .nav-links .nav-close {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 22px; right: var(--pad-x);
    width: 40px; height: 40px; padding: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
    color: var(--bone); font-size: 16px; line-height: 1;
    cursor: pointer; -webkit-tap-highlight-color: transparent;
    transition: background .2s ease, transform .2s ease;
  }
  .nav-links .nav-close:hover { background: rgba(255,255,255,0.12); transform: scale(1.05); }
  .nav-links .nav-cta-mobile { display: block; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-right .nav-cta { display: none; }
  .nav-right { gap: 14px; }
}
@media (max-width: 540px) {
  .nav .logo img { height: 52px; }
  .nav.scrolled .logo img { height: 42px; }
  .lang-switch { font-size: 11px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #061a30 0%, #0a2540 65%, #143b66 100%);
  color: var(--bone);
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute !important; inset: 0;
  opacity: 0.45;
  z-index: 0;
  border-radius: 0;
}
.hero-bg .ph-label {
  position: absolute;
  bottom: 24px; left: 24px;
  text-align: left;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 160px var(--pad-x) 80px;
  flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.3em; font-weight: 500;
  color: rgba(246,244,238,0.7);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.hero-eyebrow .dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
.hero h1 {
  color: var(--bone);
  font-weight: 300;
  margin-bottom: 32px;
}
.hero h1 .it { font-style: italic; font-weight: 300; color: var(--accent); }
.hero-sub {
  font-size: clamp(18px, 1.5vw, 21px);
  max-width: 60ch;
  color: rgba(246,244,238,0.78);
  margin-bottom: 48px;
  line-height: 1.5;
}
.hero-actions {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-actions .btn-ghost { color: var(--bone); }
.hero-creds {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 28px;
  display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246,244,238,0.55);
}
.hero-creds .sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.hero-creds .selo { margin-left: auto; }
.hero-creds .selo img { width: 72px; height: 72px; opacity: 0.95; }

.hero-figure {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%;
  z-index: 1;
  background: var(--navy-700);
}
.hero-figure .ph-label { color: rgba(255,255,255,0.4); }

@media (max-width: 1100px) {
  .hero-figure { display: none; }
}

/* ---------- Placeholder media ---------- */
.ph {
  position: relative;
  background: var(--bone-2);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -42deg,
    transparent 0 14px,
    rgba(10,37,64,0.04) 14px 15px
  );
  pointer-events: none;
}
.ph.dark-ph { background: var(--navy-700); }
.ph.dark-ph::before {
  background: repeating-linear-gradient(
    -42deg,
    transparent 0 14px,
    rgba(255,255,255,0.04) 14px 15px
  );
}
.ph-label {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--mute);
  text-transform: uppercase;
  text-align: center;
  padding: 16px 20px;
  max-width: 80%;
}
.ph-label::before {
  content: "↳"; display: block; margin-bottom: 6px; opacity: 0.5;
}

/* ---------- Section header (common) ---------- */
.section-head { margin-bottom: clamp(48px, 6vw, 80px); }
.section-head .eyebrow { margin-bottom: 28px; }
.section-head h2 { max-width: 22ch; }
.section-head h2 + p { margin-top: 28px; max-width: 60ch; }

/* ---------- Section 02 quem chega ---------- */
.s-quem .grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.s-quem .body-text p { font-size: 17px; }
.cases-card {
  background: var(--navy-800); color: var(--bone);
  padding: 40px;
  position: relative;
}
.cases-card .label {
  font-size: 11px; letter-spacing: 0.22em; color: var(--accent);
  font-weight: 600; text-transform: uppercase; margin-bottom: 28px;
  display: block;
}
.cases-card ul { list-style: none; padding: 0; margin: 0; }
.cases-card li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 16px;
  letter-spacing: 0.005em;
}
.cases-card li:first-child { border-top: 0; }
.cases-card li .n {
  font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.45);
  min-width: 28px;
}
@media (max-width: 800px) {
  .s-quem .grid { grid-template-columns: 1fr; }
}

/* ---------- Section 03 pilares ---------- */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar {
  background: var(--paper);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 360px;
  transition: background .3s;
}
.pillar:hover { background: var(--bone); }
.pillar .num {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent); letter-spacing: 0.1em;
}
.pillar h3 { font-size: 24px; line-height: 1.15; font-style: italic; font-weight: 400; }
.pillar p { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
@media (max-width: 1000px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:last-child { grid-column: 1 / -1; }
}
@media (max-width: 600px)  {
  .pillars { grid-template-columns: 1fr; }
  .pillar:last-child { grid-column: auto; }
}

/* ---------- Section 04 equipamento ---------- */
.s-equip .grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.s-equip .copy p { font-size: 16px; }
.s-equip .copy h2 { font-size: clamp(34px, 4.2vw, 60px); line-height: 1.05; }
.s-equip .copy h2 em { white-space: nowrap; }
.s-equip .equip-img { aspect-ratio: 4/5; overflow: hidden; background: var(--bone-2); }
.s-equip .equip-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.patent-badge {
  margin-top: 40px;
  display: inline-flex; align-items: center; gap: 18px;
  padding: 18px 24px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
}
.patent-badge .seal {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 14px;
  flex-shrink: 0;
}
.patent-badge .txt { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; line-height: 1.5; display: flex; flex-direction: column; gap: 2px; }
.patent-badge .txt strong { display: block; font-family: var(--serif); font-style: italic; font-size: 18px; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--navy-800); }
@media (max-width: 900px) { .s-equip .grid { grid-template-columns: 1fr; } }

/* ---------- Section 05 ciência ---------- */
.science-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-strong); }
.science-grid .col {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--line-strong);
}
.science-grid .col:last-of-type { padding-right: 0; border-right: 0; }
.science-grid .col + .col { padding-left: 32px; }
.science-grid .col .num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 24px; }
.science-grid .col h3 { font-size: 26px; font-style: italic; margin-bottom: 16px; }
.science-grid .col .src {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
  margin-bottom: 20px; display: block;
}
.science-grid .col p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
@media (max-width: 1100px) {
  .science-grid { grid-template-columns: 1fr 1fr; }
  .science-grid .col { border-right: 0; padding: 32px 0; border-bottom: 1px solid var(--line-strong); }
  .science-grid .col + .col { padding-left: 0; }
}
@media (max-width: 640px) { .science-grid { grid-template-columns: 1fr; } }

/* Pull quote (dark) */
.pullquote {
  background: var(--navy-800); color: var(--bone);
  padding: clamp(60px, 8vw, 120px) var(--pad-x);
  margin-top: clamp(48px, 6vw, 80px);
  margin-left: calc(var(--pad-x) * -1);
  margin-right: calc(var(--pad-x) * -1);
  position: relative;
}
.pullquote .inner { max-width: 940px; margin: 0 auto; }
.pullquote .mark {
  font-family: var(--serif); font-size: 120px; line-height: 0.6; color: var(--accent);
  display: block; margin-bottom: -10px;
}
.pullquote q {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.25; color: var(--bone);
  quotes: none;
}
.pullquote q::before, .pullquote q::after { content: ""; }
.pullquote cite {
  display: block; font-style: normal; font-family: var(--sans);
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 32px;
}

/* ---------- Section 06 ensaio ---------- */
.s-ensaio { background: var(--navy-800); color: var(--bone); }
.s-ensaio .eyebrow { color: var(--accent); }
.s-ensaio h2 { color: var(--bone); font-weight: 300; }
.s-ensaio h2 em { color: var(--accent); }
.s-ensaio .lead { color: rgba(246,244,238,0.78); }
.bignumbers {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-top: clamp(48px, 6vw, 80px);
}
.bignum {
  background: var(--navy-800);
  padding: 48px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.bignum .val {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.bignum .lbl {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 17px; line-height: 1.35;
  color: rgba(246,244,238,0.85);
  max-width: 22ch;
}
.ensaio-foot {
  margin-top: 36px;
  font-size: 13px; line-height: 1.6;
  color: rgba(246,244,238,0.55);
  max-width: 78ch;
}
@media (max-width: 1000px) { .bignumbers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .bignumbers { grid-template-columns: 1fr; } }

/* ---------- Section 07 timeline ---------- */
.s-time .timeline { margin-top: clamp(48px, 6vw, 80px); position: relative; }
.s-time .timeline::before {
  content: "";
  position: absolute; left: 12px; top: 12px; bottom: 12px;
  width: 1px; background: var(--line-strong);
}
.tl-item {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.tl-item:first-child { border-top: 0; }
.tl-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--navy-800);
  position: relative; z-index: 2;
  margin-top: 6px;
}
.tl-dot::after {
  content: ""; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent);
  position: absolute; inset: 0; margin: auto;
}
.tl-meta { display: flex; flex-direction: column; gap: 8px; }
.tl-meta .num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.tl-meta h3 { font-size: clamp(26px, 2.5vw, 34px); font-style: italic; font-weight: 400; }
.tl-meta .when {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mute); font-weight: 500;
  padding: 6px 12px; border: 1px solid var(--line-strong);
  align-self: flex-start; border-radius: 999px;
  margin-top: 6px;
}
.tl-body { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 800px) {
  .tl-item { grid-template-columns: 32px 1fr; }
  .tl-item .tl-body { grid-column: 2 / 3; }
  .s-time .timeline::before { left: 7px; }
  .tl-dot { width: 14px; height: 14px; }
  .tl-dot::after { width: 4px; height: 4px; }
}

.cta-block {
  margin-top: 80px;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
}
.cta-block p { max-width: 56ch; color: var(--ink-soft); font-size: 16px; }

/* ---------- Section 08 depoimento ---------- */
.s-depoimento {
  background: var(--navy-800); color: var(--bone);
}
.s-depoimento .eyebrow { color: var(--accent); }
.s-depoimento h2 { color: var(--bone); font-weight: 300; }
.s-depoimento h2 em { color: var(--accent); }
.s-depoimento .lead { color: rgba(246,244,238,0.78); }
.dep-grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  margin-top: clamp(40px, 5vw, 64px);
}
.dep-videos {
  display: flex; gap: clamp(16px, 2vw, 28px);
  flex-wrap: wrap;
}
.dep-video {
  flex: 1 1 220px; min-width: 0; max-width: 360px;
  display: flex; flex-direction: column; gap: 16px;
  margin: 0;
}
.dep-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.dep-frame .dep-player {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0; display: block;
  background: #000;
}
.dep-cap {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(246,244,238,0.55);
}
.dep-cap .dep-tag { color: var(--accent); }
.dep-side {
  background: rgba(79, 179, 217, 0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column;
  position: relative;
}
.dep-side .mark {
  font-family: var(--serif); font-size: 110px; line-height: 0.6;
  color: var(--accent); display: block; margin-bottom: -14px;
}
.dep-side .dep-pull {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(22px, 1.8vw, 26px); line-height: 1.3;
  color: var(--bone);
  margin: 0 0 28px 0;
}
.dep-side .dep-pull em { color: var(--accent); font-style: italic; }
.dep-points {
  list-style: none; padding: 0; margin: 0 0 32px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.dep-points li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14.5px; line-height: 1.5;
  color: rgba(246,244,238,0.85);
}
.dep-points li > span:first-child {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--accent); flex-shrink: 0;
}
.dep-points li > span:last-child {
  flex: 1; min-width: 0;
  overflow-wrap: anywhere; word-break: break-word;
}
.dep-side .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 900px) {
  .dep-grid { grid-template-columns: 1fr; }
  .dep-videos { justify-content: center; }
  .dep-video { flex: 1 1 200px; max-width: 320px; }
}

/* ---------- Section 09 verônica ---------- */
.s-veronica .grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.s-veronica .portrait { aspect-ratio: 4/5; overflow: hidden; background: var(--bone-2); }
.s-veronica .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.s-veronica .portrait-meta {
  margin-top: 16px;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mute);
}
.s-veronica .portrait-meta .pm-num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 64px; line-height: 1; color: var(--navy-800);
  letter-spacing: -0.02em;
}
.s-veronica .copy { padding-top: 30px; }
.s-veronica .copy h2 { margin-bottom: 32px; }
.s-veronica .copy p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.65; max-width: 56ch; }
.credentials {
  margin-top: 40px;
  border-top: 1px solid var(--line-strong);
}
.credentials li {
  list-style: none;
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
}
.credentials li .cd-mark {
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  letter-spacing: 0.1em; min-width: 36px;
}
.credentials { padding: 0; }
@media (max-width: 900px) { .s-veronica .grid { grid-template-columns: 1fr; } }

/* ---------- Section 09 FAQ ---------- */
.s-faq .grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.s-faq h2 { max-width: 14ch; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ink);
  line-height: 1.2;
}
.faq-q .toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bone);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-style: normal; font-size: 18px; font-weight: 300;
  color: var(--navy-800);
  transition: background .25s, color .25s, transform .25s;
}
.faq-item.open .faq-q .toggle { background: var(--accent); color: var(--navy-900); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a-inner {
  padding: 0 0 32px 0;
  font-size: 15.5px; line-height: 1.65;
  color: var(--ink-soft);
  max-width: 64ch;
}
@media (max-width: 900px) { .s-faq .grid { grid-template-columns: 1fr; } }

/* ---------- Section 10 form ---------- */
.s-form { background: var(--navy-800); color: var(--bone); }
.s-form .eyebrow { color: var(--accent); }
.s-form h2 { color: var(--bone); font-weight: 300; }
.s-form h2 em { color: var(--accent); }
.s-form .lead { color: rgba(246,244,238,0.78); }
.form-grid {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 48px;
}
.form-row { display: grid; gap: 28px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(246,244,238,0.7); font-weight: 500;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--bone);
  font-family: var(--sans); font-size: 16px;
  padding: 10px 0;
  outline: none;
  transition: border-color .25s;
  font-weight: 380;
}
.field textarea { min-height: 80px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field select option { background: var(--navy-800); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 600px) { .row-2 { grid-template-columns: 1fr; } .form-card { padding: 32px 24px; } }
.form-foot {
  margin-top: 28px;
  font-size: 12px; line-height: 1.5;
  color: rgba(246,244,238,0.5);
}
.form-submit {
  margin-top: 32px;
  background: var(--accent); color: var(--navy-900);
  padding: 18px 32px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background .25s, color .25s, transform .25s;
}
.form-submit:hover { background: var(--bone); transform: translateY(-1px); }

.form-side .panel {
  background: rgba(79, 179, 217, 0.08);
  border: 1px solid rgba(79, 179, 217, 0.3);
  padding: 36px;
  margin-bottom: 24px;
}
.form-side .panel h4 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 26px; color: var(--bone); margin-bottom: 16px;
}
.form-side .panel p { font-size: 15px; color: rgba(246,244,238,0.78); margin-bottom: 24px; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 22px; background: var(--accent); color: var(--navy-900);
  border-radius: 999px; font-weight: 500; font-size: 15px;
  transition: background .25s, transform .25s;
}
.wa-btn:hover { background: var(--bone); transform: translateY(-1px); }
.where {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.where .label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 16px; display: block;
}
.where p { font-size: 14.5px; line-height: 1.65; color: rgba(246,244,238,0.78); margin: 0; }
.where strong { color: var(--bone); font-weight: 500; }
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-900); color: var(--bone);
  padding: clamp(60px, 7vw, 100px) 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h5 {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
  margin: 0 0 24px 0;
}
.footer-grid img.logo { width: 140px; margin-bottom: 24px; }
.footer-grid p { font-size: 14px; line-height: 1.65; color: rgba(246,244,238,0.7); }
.footer-grid .it { font-family: var(--serif); font-style: italic; color: var(--bone); font-size: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-grid ul a { font-size: 14px; color: rgba(246,244,238,0.8); transition: color .2s; }
.footer-grid ul a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(246,244,238,0.5);
  letter-spacing: 0.02em;
}
.footer-bottom .credit { font-style: italic; font-family: var(--serif); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating WA ---------- */
.wa-float {
  position: fixed; right: 28px; bottom: 28px; z-index: 40;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(10,37,64,0.25);
  opacity: 0; transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s, transform .35s, background .25s;
}
.wa-float.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wa-float:hover { background: var(--navy-800); }
.wa-float:hover svg { color: var(--accent); }
.wa-float svg { width: 28px; height: 28px; color: var(--navy-900); transition: color .25s; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
