/* =========================================================
   Luciana Vidal · Advogada — Folha de estilos
   Paleta extraída da identidade: azul-marinho #1B3558
   ========================================================= */

:root {
  /* Cores */
  --ink: #0D1829;          /* marinho profundo */
  --navy: #1B3558;         /* cor da marca */
  --navy-soft: #2A4670;
  --paper: #F6F3EE;        /* off-white quente */
  --sand: #EDE7DD;         /* bege suave */
  --mist: #DCDDDF;         /* cinza da identidade */
  --graphite: #262A31;
  --text: #3A3F48;
  --muted: #6B717C;
  --line: rgba(27, 53, 88, .14);
  --line-strong: rgba(27, 53, 88, .28);
  --line-light: rgba(246, 243, 238, .16);
  --champagne: #B59E78;    /* detalhe sutil */

  /* Tipografia */
  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Ritmo */
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1360px;
  --section: clamp(96px, 13vw, 184px);
  --radius: 2px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --header-h: 88px;

  /* Textura sutil (ruído) */
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(15px, .95rem + .1vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

::selection { background: var(--navy); color: var(--paper); }

:focus-visible {
  outline: 1px solid var(--navy);
  outline-offset: 4px;
}

.container {
  width: 100%;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--navy);
  color: var(--paper);
  font-size: 14px;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.icon { width: 18px; height: 18px; flex: none; }

em {
  font-style: italic;
  font-weight: 400;
}

/* ---------- Elementos tipográficos ---------- */
.eyebrow,
.section-index {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--navy);
}

.eyebrow-line {
  width: 44px; height: 1px;
  background: currentColor;
  opacity: .5;
}

.section-index span {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--champagne);
  padding-right: 14px;
  border-right: 1px solid var(--line-strong);
  line-height: 1;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 1.4rem + 3.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-top: 28px;
  text-wrap: balance;
}
.section-title em { color: var(--navy-soft); }

.section { padding-block: var(--section); position: relative; }

/* ---------- Botões ---------- */
.btn {
  --bg: var(--navy);
  --fg: var(--paper);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 30px;
  background: var(--bg);
  color: var(--fg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: color .5s var(--ease), transform .5s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .6s var(--ease-out);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn .icon { transition: transform .5s var(--ease-out); }
.btn[type="submit"]:hover .icon { transform: translateX(4px); }

.btn-light { --bg: var(--paper); --fg: var(--navy); }
.btn-light::before { background: #fff; }
.btn-block { width: 100%; }

.btn-header {
  min-height: 46px;
  padding: 0 22px;
  font-size: 11.5px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  padding-block: 8px;
  position: relative;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; right: 30px; bottom: 2px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.link-arrow:hover::after { transform: scaleX(0); transform-origin: right; }
.link-arrow .icon { transition: transform .5s var(--ease-out); }
.link-arrow:hover .icon { transform: translateX(6px); }
.link-arrow--light { color: var(--paper); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .5s var(--ease), height .5s var(--ease), box-shadow .5s var(--ease), transform .6s var(--ease-out);
}
.site-header.is-scrolled {
  --header-h: 72px;
  background: rgba(246, 243, 238, .9);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  margin-right: auto;
}
.brand-mark {
  width: 46px; height: 46px;
  transition: width .5s var(--ease), height .5s var(--ease);
}
.is-scrolled .brand-mark { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--navy);
}
.brand-role {
  margin-top: 7px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand--light, .brand--light .brand-name { color: var(--paper); }
.brand--light .brand-role { color: rgba(246, 243, 238, .55); }

.nav-list {
  display: flex;
  gap: clamp(20px, 2.6vw, 40px);
}
.nav-list a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--graphite);
  padding-block: 8px;
  transition: color .3s;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease-out);
}
.nav-list a:hover,
.nav-list a.is-active { color: var(--navy); }
.nav-list a:hover::after,
.nav-list a.is-active::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 120;
}
.menu-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 1px;
  background: var(--navy);
  transition: transform .5s var(--ease-out), top .5s var(--ease-out), background-color .3s;
}
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 26px; left: 18px; }
.menu-open .menu-toggle span { background: var(--paper); }
.menu-open .menu-toggle span:first-child { top: 22px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 22px; left: 10px; transform: rotate(-45deg); }
.menu-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.menu-open .site-header .brand,
.menu-open .site-header .brand-name { color: var(--paper); }
.menu-open .site-header .brand-role { color: rgba(246, 243, 238, .55); }

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink) var(--grain);
  background-blend-mode: soft-light;
  color: var(--paper);
  display: flex;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s var(--ease-out), visibility 0s .8s;
  visibility: hidden;
}
.menu-open .mobile-menu {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path .8s var(--ease-out), visibility 0s;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 120px;
  padding-bottom: 40px;
  min-height: 100%;
}
.mobile-nav li {
  border-bottom: 1px solid var(--line-light);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease-out);
}
.menu-open .mobile-nav li { opacity: 1; transform: none; }
.menu-open .mobile-nav li:nth-child(1) { transition-delay: .18s; }
.menu-open .mobile-nav li:nth-child(2) { transition-delay: .24s; }
.menu-open .mobile-nav li:nth-child(3) { transition-delay: .30s; }
.menu-open .mobile-nav li:nth-child(4) { transition-delay: .36s; }
.menu-open .mobile-nav li:nth-child(5) { transition-delay: .42s; }
.mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 2.8rem);
  line-height: 1.1;
}
.mobile-nav a span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--champagne);
}
.mobile-menu-foot {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
}
.mobile-menu-foot p {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(246, 243, 238, .5);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: min(100vh, 1000px);
  min-height: min(100svh, 1000px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--header-h) + clamp(40px, 7vh, 88px));
  padding-bottom: clamp(28px, 4vh, 44px);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(220, 221, 223, .55), transparent 60%),
    var(--paper);
}

.hero-orbit {
  position: absolute;
  width: min(1100px, 120vh);
  aspect-ratio: 1;
  right: -14%;
  top: 50%;
  transform: translateY(-52%);
  color: var(--navy);
  opacity: .16;
  pointer-events: none;
}
.hero-orbit path {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: draw 3.2s .4s var(--ease-out) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  flex: 1;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 1.6rem + 5.4vw, 7.1rem);
  line-height: .98;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-top: clamp(28px, 4vh, 40px);
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .08em;
  margin-bottom: -.08em;
}
.hero-title .line > span { display: inline-block; }
.hero-title em { color: var(--navy); }

.hero-lead {
  max-width: 34rem;
  margin-top: clamp(28px, 4vh, 40px);
  font-size: clamp(1rem, .95rem + .25vw, 1.15rem);
  line-height: 1.75;
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 36px;
  margin-top: clamp(36px, 5vh, 52px);
}

/* Visual */
.hero-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
}

.portrait {
  --photo: none;
  position: relative;
  aspect-ratio: 4 / 5.2;
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  background:
    var(--grain),
    radial-gradient(90% 70% at 30% 20%, rgba(76, 108, 156, .55), transparent 70%),
    linear-gradient(165deg, var(--navy) 0%, var(--ink) 100%);
  background-blend-mode: soft-light, normal, normal;
  color: var(--paper);
  box-shadow: 0 40px 80px -40px rgba(13, 24, 41, .45);
}
.portrait.has-photo {
  background: var(--photo) center / cover no-repeat;
}
.portrait.has-photo .portrait-mark,
.portrait.has-photo .portrait-rings { display: none; }
.portrait.has-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13, 24, 41, .7), transparent 45%);
}

.portrait-rings span {
  position: absolute;
  left: 50%; top: 42%;
  border: 1px solid rgba(246, 243, 238, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.portrait-rings span:nth-child(1) { width: 62%; aspect-ratio: 1; }
.portrait-rings span:nth-child(2) { width: 92%; aspect-ratio: 1; border-color: rgba(246, 243, 238, .08); }
.portrait-rings span:nth-child(3) { width: 124%; aspect-ratio: 1; border-color: rgba(246, 243, 238, .05); }

.portrait-mark {
  position: absolute;
  left: 50%; top: 42%;
  width: 54%;
  aspect-ratio: 1;
  height: auto;
  transform: translate(-50%, -50%);
  color: var(--paper);
  opacity: .95;
}

.portrait-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 22px 28px;
  border-top: 1px solid var(--line-light);
}
.portrait-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}
.portrait-role {
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(246, 243, 238, .6);
}

.hero-note {
  position: absolute;
  left: clamp(-110px, -7vw, -40px);
  bottom: 6%;
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(13, 24, 41, .35);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.hero-note:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 70px -30px rgba(13, 24, 41, .4);
}
.hero-note-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--champagne);
}
.hero-note-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--ink);
}
.hero-note-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
}
.hero-note-cta .icon { width: 16px; height: 16px; transition: transform .5s var(--ease-out); }
.hero-note:hover .hero-note-cta .icon { transform: translateX(5px); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(48px, 7vh, 80px);
  border-top: 1px solid var(--line);
}
.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 24px 0 0;
}
.hero-meta li + li { padding-left: 24px; border-left: 1px solid var(--line); }
.meta-k {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-v {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}

/* Animação de entrada da hero */
.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 1.3s var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * .12s + .15s);
}
.hero-title .hero-anim { transform: translateY(100%); }
.hero-visual.hero-anim { transform: translateY(40px); animation-duration: 1.6s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* =========================================================
   SOBRE
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: start;
}

.about-media { position: sticky; top: 120px; }

.about-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    var(--grain),
    linear-gradient(160deg, var(--mist) 0%, var(--sand) 100%);
  background-blend-mode: soft-light, normal;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.about-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(27, 53, 88, .16);
}
.about-frame-mark {
  width: 38%;
  height: auto;
  aspect-ratio: 1;
  color: var(--navy);
  opacity: .22;
}
.about-frame-note {
  position: absolute;
  bottom: 36px;
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(27, 53, 88, .45);
}

.about-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.about-caption span {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
}

.about-copy { padding-top: clamp(0px, 3vw, 40px); }
.about-text {
  max-width: 38rem;
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  gap: 1.2em;
}
.about-lead {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.1rem + .8vw, 1.7rem);
  line-height: 1.45;
  color: var(--ink);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--line);
}
.principles div { padding: 24px 24px 0 0; }
.principles div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.principles dt {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--navy);
}
.principles dd {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.signature {
  margin-top: clamp(48px, 6vw, 64px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 1.5rem + 1.6vw, 2.8rem);
  color: var(--navy);
  opacity: .8;
  letter-spacing: -.01em;
}

/* =========================================================
   ÁREAS
   ========================================================= */
.areas {
  background:
    var(--grain),
    radial-gradient(70% 60% at 0% 0%, rgba(42, 70, 112, .55), transparent 70%),
    var(--ink);
  background-blend-mode: soft-light, normal, normal;
  color: rgba(246, 243, 238, .72);
}
.areas .section-index { color: rgba(246, 243, 238, .8); }
.areas .section-index span { border-color: var(--line-light); }
.areas .section-title { color: var(--paper); }
.areas .section-title em { color: #AFC0DA; }

.areas-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: start;
}
.areas-head { position: sticky; top: 120px; }
.areas-intro {
  max-width: 26rem;
  margin: 28px 0 36px;
  line-height: 1.75;
}

.areas-list { border-top: 1px solid var(--line-light); }
.area {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  gap: 20px;
  align-items: start;
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line-light);
  cursor: default;
}
.area::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 1px;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s var(--ease-out);
}
.area:hover::after { transform: scaleX(1); }

.area-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--champagne);
  padding-top: .55em;
}
.area-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.6rem);
  line-height: 1.1;
  color: var(--paper);
  transition: transform .7s var(--ease-out);
}
.area-body p {
  max-width: 34rem;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(246, 243, 238, .6);
  transition: color .5s var(--ease);
}
.area-arrow {
  width: 22px; height: 22px;
  margin-top: .8em;
  color: var(--paper);
  opacity: .35;
  transition: opacity .5s var(--ease), transform .6s var(--ease-out);
}
.area:hover .area-title { transform: translateX(10px); }
.area:hover .area-body p { color: rgba(246, 243, 238, .85); }
.area:hover .area-arrow { opacity: 1; transform: rotate(45deg); }

/* =========================================================
   DIFERENCIAIS
   ========================================================= */
.values-head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: end;
}
.values-head .section-title { grid-column: 2; margin-top: 0; }
.values-head .section-index { align-self: start; padding-top: 1.4em; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(64px, 8vw, 112px);
  border-top: 1px solid var(--line-strong);
}
.value {
  position: relative;
  padding: 36px clamp(20px, 2.4vw, 36px) 8px 0;
}
.value + .value {
  padding-left: clamp(20px, 2.4vw, 36px);
  border-left: 1px solid var(--line);
}
.value::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--navy);
  transition: width .9s var(--ease-out);
}
.value:hover::before { width: 100%; }

.value-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--champagne);
}
.value h3 {
  margin-top: clamp(28px, 3vw, 44px);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 1.2rem + .7vw, 1.85rem);
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}
.value p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* =========================================================
   POSICIONAMENTO
   ========================================================= */
.statement {
  position: relative;
  overflow: hidden;
  padding-block: clamp(112px, 15vw, 220px);
  background:
    var(--grain),
    var(--sand);
  background-blend-mode: soft-light, normal;
  text-align: center;
}
.statement-orbit {
  position: absolute;
  left: 50%; top: 50%;
  width: max(900px, 88vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(-12deg);
  color: var(--navy);
  opacity: .12;
  pointer-events: none;
}
.statement-inner { position: relative; }
.statement-mark {
  width: 64px; height: 64px;
  margin: 0 auto 44px;
  color: var(--navy);
}
.statement-quote p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 1.2rem + 4.6vw, 5.6rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
.statement-quote em { color: var(--navy); }
.statement-sub {
  max-width: 30rem;
  margin: 40px auto 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  line-height: 2;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   CONTATO
   ========================================================= */
.contact-head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 0 clamp(48px, 8vw, 140px);
}
.contact-head .section-index { grid-column: 1 / -1; }
.contact-head .section-title { grid-column: 1; }
.contact-intro {
  grid-column: 2;
  align-self: end;
  max-width: 30rem;
  margin-top: 28px;
  padding-bottom: .6em;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 80px);
  margin-top: clamp(56px, 7vw, 96px);
  align-items: stretch;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 4vw, 52px);
  background:
    var(--grain),
    radial-gradient(90% 60% at 100% 0%, rgba(76, 108, 156, .5), transparent 70%),
    linear-gradient(170deg, var(--navy), var(--ink));
  background-blend-mode: soft-light, normal, normal;
  color: var(--paper);
}
.contact-card-rings span {
  position: absolute;
  right: -30%; top: -30%;
  width: 90%;
  aspect-ratio: 1;
  border: 1px solid rgba(246, 243, 238, .1);
  border-radius: 50%;
}
.contact-card-rings span + span { width: 130%; right: -50%; top: -50%; border-color: rgba(246, 243, 238, .06); }

.contact-card-label {
  position: relative;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(246, 243, 238, .6);
}
.contact-phone {
  position: relative;
  display: inline-block;
  margin: 14px 0 32px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 1.6rem + 1.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  transition: opacity .3s;
}
.contact-phone:hover { opacity: .8; }

.contact-card-text {
  position: relative;
  max-width: 24rem;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(246, 243, 238, .62);
}

.contact-list {
  position: relative;
  margin-top: auto;
  padding-top: 40px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line-light);
  font-size: 14.5px;
  overflow-wrap: anywhere;
}
.contact-k {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(246, 243, 238, .5);
}
.contact-list a { transition: opacity .3s; }
.contact-list a:hover { opacity: .7; }
.placeholder {
  color: rgba(246, 243, 238, .5);
  font-style: italic;
}

/* Formulário */
.contact-form {
  padding: clamp(32px, 4vw, 52px);
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 1.3rem + .8vw, 2rem);
  color: var(--ink);
  margin-bottom: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.field {
  position: relative;
  padding-top: 20px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 0 12px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s;
  resize: vertical;
}
.field textarea { min-height: 120px; line-height: 1.6; }
.field label {
  position: absolute;
  left: 0; top: 34px;
  font-size: 15px;
  color: var(--muted);
  pointer-events: none;
  transform-origin: left top;
  transition: transform .4s var(--ease-out), color .3s, letter-spacing .4s;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-26px) scale(.72);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
}
.field::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 22px;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.field:focus-within::after { transform: scaleX(1); }
.field input:focus-visible,
.field textarea:focus-visible { outline: none; }
.field-error {
  display: block;
  min-height: 22px;
  padding-top: 4px;
  font-size: 12px;
  color: #9B3B3B;
}
.field.is-invalid input,
.field.is-invalid textarea { border-bottom-color: #9B3B3B; }

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
}
.form-privacy {
  max-width: 22rem;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}
.form-status {
  min-height: 1.5em;
  margin-top: 12px;
  font-size: 14px;
  color: var(--navy);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(246, 243, 238, .65);
  padding: clamp(72px, 9vw, 120px) 0 36px;
  font-size: 14.5px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: clamp(56px, 7vw, 88px);
  border-bottom: 1px solid var(--line-light);
}
.footer-brand .brand-mark { width: 54px; height: 54px; }
.footer-tagline {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  line-height: 1.2;
  color: var(--paper);
  max-width: 18ch;
}
.footer-k {
  margin-bottom: 20px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--champagne);
}
.footer-col li + li { margin-top: 10px; }
.footer-col a { transition: color .3s; overflow-wrap: anywhere; }
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 32px;
  padding-top: 32px;
  font-size: 12.5px;
  color: rgba(246, 243, 238, .45);
}
.to-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(246, 243, 238, .7);
  transition: color .3s;
}
.to-top .icon { width: 16px; height: 16px; transform: rotate(-90deg); transition: transform .5s var(--ease-out); }
.to-top:hover { color: var(--paper); }
.to-top:hover .icon { transform: rotate(-90deg) translateX(4px); }

/* WhatsApp flutuante */
.wa-float {
  position: fixed;
  right: clamp(16px, 2.5vw, 32px);
  bottom: clamp(16px, 2.5vw, 32px);
  z-index: 80;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  box-shadow: 0 18px 40px -16px rgba(13, 24, 41, .6);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .5s var(--ease), transform .6s var(--ease-out), background-color .3s;
}
.wa-float svg { width: 24px; height: 24px; }
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { background: var(--ink); }
.wa-float::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(246, 243, 238, .28);
}
.wa-float.is-hidden-footer { opacity: 0; transform: translateY(16px); pointer-events: none; }

/* =========================================================
   REVEAL
   ========================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.2s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1180px) {
  .nav-list { gap: 22px; }
  .btn-header span { display: none; }
  .btn-header { padding: 0 15px; }
  .btn-header .icon { width: 20px; height: 20px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(3) { padding-left: 0; border-left: 0; }
  .value:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 24px; }
  .value:nth-child(n+3)::before { top: -1px; }
}

@media (max-width: 960px) {
  :root { --header-h: 76px; }
  .nav, .btn-header { display: none; }
  .menu-toggle { display: block; }

  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { justify-self: stretch; max-width: 560px; margin-inline: auto 0; }
  .portrait { aspect-ratio: 4 / 4.4; }
  .hero-note { left: -24px; bottom: 12%; }

  .about-grid,
  .areas-grid,
  .values-head,
  .contact-head,
  .contact-grid { grid-template-columns: 1fr; }
  .about-media, .areas-head { position: static; }
  .about-media { max-width: 520px; }
  .values-head .section-title { grid-column: 1; margin-top: 28px; }
  .contact-intro { align-self: start; padding-bottom: 0; }
  .values-head { row-gap: 0; }
  .values-head .section-index { padding-top: 0; }
  .contact-head .section-title,
  .contact-intro { grid-column: 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 11.5px; letter-spacing: .26em; }
  .brand-role { font-size: 8.5px; }

  .hero { padding-top: calc(var(--header-h) + 36px); }
  .hero-orbit { width: 150vw; right: -70%; top: 22%; }
  .hero-title { font-size: clamp(2.7rem, 11.5vw, 3.6rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .link-arrow { align-self: center; }
  .hero-visual { margin-right: 0; }
  .portrait { aspect-ratio: 4 / 4.6; border-radius: 999px 999px var(--radius) var(--radius); }
  .hero-note { position: relative; left: auto; bottom: auto; width: auto; margin: -56px 20px 0; }
  .portrait-caption { display: none; }
  .portrait-mark, .portrait-rings span { top: 46%; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta li,
  .hero-meta li + li { padding: 16px 0; border-left: 0; }
  .hero-meta li + li { border-top: 1px solid var(--line); }

  .principles { grid-template-columns: 1fr; }
  .principles div,
  .principles div + div { padding: 20px 0; border-left: 0; }
  .principles div + div { border-top: 1px solid var(--line); }

  .area { grid-template-columns: 36px 1fr; gap: 12px; }
  .area-arrow { display: none; }

  .values-grid { grid-template-columns: 1fr; }
  .value, .value + .value, .value:nth-child(3) { padding: 32px 0 8px; border-left: 0; }
  .value + .value { border-top: 1px solid var(--line); margin-top: 24px; }
  .value h3 { margin-top: 20px; }

  .statement-mark { width: 52px; height: 52px; margin-bottom: 32px; }

  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .field-row { grid-template-columns: 1fr; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .contact-form .btn { width: 100%; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (hover: none) {
  .area:hover .area-title { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  .hero-orbit path { stroke-dashoffset: 0; }
  .js .reveal { opacity: 1; transform: none; }
}
