/* ═══════════════════════════════════════════════════════════
   TULLIO J. C. RODRIGUES DA CUNHA — Advocacia & Consultoria
   Direito Imobiliário · Preto · Branco · Dourado
   Editorial moderno, masculino e sofisticado — DM Sans
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ── Paleta ── */
  --black-950: #08080A;
  --black-900: #0C0C0E;
  --black-850: #121214;
  --black-800: #17171A;
  --black-700: #202024;
  --line-dark: rgba(255,255,255,.10);
  --line-darker: rgba(255,255,255,.06);

  --white: #FFFFFF;
  --paper: #F7F5F1;
  --paper-2: #EFEBE3;
  --ink: #1A1A1D;
  --ink-soft: #5A5952;
  --ink-mute: #86847C;
  --line-light: rgba(26,26,29,.12);
  --line-lighter: rgba(26,26,29,.07);

  --gold-100: #F6ECCE;
  --gold-200: #EBD9A3;
  --gold-300: #E0C578;
  --gold-400: #CBA34E;
  --gold-500: #B98A2E;
  --gold-600: #966D1F;
  --gold-grad: linear-gradient(115deg, #8A6417 0%, #B98A2E 26%, #EAD79E 52%, #B98A2E 74%, #8A6417 100%);
  --gold-line: linear-gradient(90deg, transparent, var(--gold-400), transparent);

  /* ── Tipografia ── */
  --font: 'DM Sans', 'Segoe UI', system-ui, sans-serif;

  /* ── Layout ── */
  --container: 1240px;
  --radius: 4px;
  --shadow-lg: 0 40px 90px -30px rgba(0,0,0,.55);
  --shadow-soft: 0 24px 60px -28px rgba(0,0,0,.35);

  /* ── Motion ── */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-luxe: cubic-bezier(.62, 0, .12, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--black-950);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
em { font-style: normal; }
::selection { background: var(--gold-400); color: var(--black-950); }

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--black-900); }
::-webkit-scrollbar-thumb { background: var(--gold-600); border-radius: 4px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(22px, 5vw, 56px); }

/* ═══════════════ TIPOGRAFIA UTILITÁRIA ═══════════════ */
.display {
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.02em;
}
.overline {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.gold-text {
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ═══════════════ BOTÕES ═══════════════ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  border-radius: 2px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), color .35s, border-color .35s, background .35s;
  cursor: pointer;
}
.btn svg { width: 15px; height: 15px; }
.btn--lg { padding: 18px 38px; font-size: 13px; }
.btn--block { width: 100%; }

.btn--gold { color: var(--black-950); background: var(--gold-grad); background-size: 220% auto; }
.btn--gold::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,.6) 50%, transparent 58%);
  transform: translateX(-130%);
  transition: transform .9s var(--ease-luxe);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -14px rgba(185,138,46,.55); background-position: right center; }
.btn--gold:hover::after { transform: translateX(130%); }

.btn--outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.015);
  backdrop-filter: blur(4px);
}
.btn--outline:hover { border-color: var(--gold-400); color: var(--gold-200); transform: translateY(-3px); }

.btn--dark {
  color: var(--white);
  border: 1px solid var(--ink);
  background: var(--ink);
}
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); background: var(--black-800); }

.btn--ghost-dark {
  color: var(--ink);
  border: 1px solid var(--line-light);
}
.btn--ghost-dark:hover { border-color: var(--gold-500); color: var(--gold-600); transform: translateY(-3px); }

/* ═══════════════ GRÃO GLOBAL ═══════════════ */
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

/* ═══════════════ HEADER ═══════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: padding .5s var(--ease-out), background .5s, box-shadow .5s;
}
.header::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(8,8,10,.82);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line-darker);
  opacity: 0; transition: opacity .5s;
}
.header.is-scrolled { padding: 12px 0; }
.header.is-scrolled::after { opacity: 1; }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; }

.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo img {
  height: 78px; width: auto;
  max-width: 100%; object-fit: contain;
  transition: height .5s var(--ease-out);
}
.header.is-scrolled .header__logo img { height: 62px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__link {
  position: relative;
  font-size: 12px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,.72);
  padding: 5px 0;
  transition: color .3s;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold-grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease-luxe);
}
.nav__link:hover, .nav__link.is-active { color: var(--gold-300); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

/* ── Seletor de idioma ── */
.lang {
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 2px;
  overflow: hidden;
}
.lang__btn {
  padding: 7px 11px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color .3s, background .3s;
  position: relative;
}
.lang__btn + .lang__btn { border-left: 1px solid rgba(255,255,255,.12); }
.lang__btn:hover { color: var(--gold-200); }
.lang__btn.is-active { color: var(--black-950); background: var(--gold-grad); }

.nav__cta {
  padding: 11px 20px; font-size: 11px;
}

.header__burger { display: none; flex-direction: column; gap: 5.5px; padding: 8px; z-index: 120; }
.header__burger span {
  display: block; width: 26px; height: 1.6px; background: var(--white);
  transition: transform .45s var(--ease-out), opacity .3s;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--black-950);
  overflow: hidden;
  padding: 160px 0 90px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img {
  position: absolute; inset: 0;
  background: url('../assets/hero-desk.webp') center 40% / cover no-repeat;
  opacity: .30;
  mask-image: linear-gradient(105deg, transparent 4%, rgba(0,0,0,.5) 40%, #000 78%);
  -webkit-mask-image: linear-gradient(105deg, transparent 4%, rgba(0,0,0,.5) 40%, #000 78%);
  transform: scale(1.04);
}
.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 82% 18%, rgba(185,138,46,.14) 0%, transparent 60%),
    radial-gradient(60% 70% at 6% 92%, rgba(0,0,0,.7) 0%, transparent 60%),
    linear-gradient(155deg, #0E0E10 0%, var(--black-950) 60%, #060607 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(75% 75% at 55% 42%, #000 15%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 75% at 55% 42%, #000 15%, transparent 100%);
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
}
.hero__glow--1 {
  width: 560px; height: 560px; top: -180px; right: -60px;
  background: radial-gradient(circle, rgba(185,138,46,.18), transparent 65%);
  animation: float 10s ease-in-out infinite alternate;
}
@keyframes float { from { transform: translate(0,0) scale(1);} to { transform: translate(-36px,28px) scale(1.1);} }

.hero__inner {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: 100%;
}

/* Coluna de conteúdo */
.hero__eyebrow {
  display: flex; align-items: center; gap: 16px;
  color: var(--gold-300);
  margin-bottom: 30px;
}
.hero__eyebrow-line { width: 52px; height: 1px; background: var(--gold-grad); flex: none; }

.hero__title {
  font-size: clamp(40px, 6vw, 82px);
  font-weight: 500; line-height: .98;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 30px;
}
.hero__title em {
  display: inline-block;
  font-weight: 500; font-style: italic;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.hero__lead {
  font-size: clamp(15.5px, 1.5vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,.68);
  max-width: 520px; line-height: 1.75;
  margin-bottom: 40px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }

.hero__meta { display: flex; align-items: stretch; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap; }
.hero__meta-item { display: grid; gap: 4px; }
.hero__meta-num {
  font-size: 34px; font-weight: 600; line-height: 1; letter-spacing: -.02em;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__meta-label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.5); line-height: 1.5;
}
.hero__meta-sep { width: 1px; background: linear-gradient(transparent, rgba(185,138,46,.5), transparent); }

/* Coluna do retrato */
.hero__portrait {
  position: relative;
  justify-self: center;
  width: 100%; max-width: 420px;
  aspect-ratio: 4 / 5;
}
.hero__portrait-img {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 20%;
  border-radius: 3px;
  filter: grayscale(.15) contrast(1.05);
  box-shadow: var(--shadow-lg);
}
.hero__portrait::before {
  content: ''; position: absolute; z-index: 1;
  inset: 0; transform: translate(20px, 20px);
  border: 1px solid rgba(185,138,46,.5);
  border-radius: 3px;
}
.hero__portrait-tag {
  position: absolute; z-index: 3;
  left: -26px; bottom: 34px;
  background: rgba(8,8,10,.86);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(185,138,46,.32);
  border-radius: 3px;
  padding: 15px 22px;
  display: grid; gap: 3px;
  box-shadow: var(--shadow-soft);
}
.hero__portrait-tag strong {
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-200);
}
.hero__portrait-tag span {
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--white);
}

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: grid; place-items: center; gap: 11px; z-index: 3;
}
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--gold-400), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ''; position: absolute; top: -46px; left: 0; width: 100%; height: 46px;
  background: linear-gradient(transparent, var(--white));
  animation: drop 2.2s var(--ease-luxe) infinite;
}
@keyframes drop { 60%, 100% { transform: translateY(92px); } }
.hero__scroll span { font-size: 10px; letter-spacing: .38em; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* Entrada orquestrada */
[data-anim] { opacity: 0; transform: translateY(30px); }
.is-ready [data-anim] { animation: up 1.1s var(--ease-out) forwards; }
.is-ready [data-anim="1"] { animation-delay: .15s; }
.is-ready [data-anim="2"] { animation-delay: .3s; }
.is-ready [data-anim="3"] { animation-delay: .45s; }
.is-ready [data-anim="4"] { animation-delay: .6s; }
.is-ready [data-anim="5"] { animation-delay: .75s; }
.is-ready [data-anim="6"] { animation-delay: .9s; }
@keyframes up { to { opacity: 1; transform: translateY(0); } }

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  background: var(--black-900);
  border-top: 1px solid var(--line-darker);
  border-bottom: 1px solid var(--line-darker);
  padding: 22px 0; overflow: hidden; position: relative;
}
.marquee__track {
  display: flex; align-items: center; gap: 42px; width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-size: 15px; font-weight: 500; letter-spacing: .02em;
  color: rgba(255,255,255,.4); white-space: nowrap;
}
.marquee__track i { color: var(--gold-500); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════ SEÇÕES BASE ═══════════════ */
.section { padding: clamp(84px, 10vw, 140px) 0; position: relative; }
.section--light { background: var(--paper); color: var(--ink); }
.section--dark { background: var(--black-950); color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--gold-grad); }
.eyebrow--gold { color: var(--gold-600); }
.eyebrow--gold-light { color: var(--gold-300); }

.sec-title {
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 500; line-height: 1.06; letter-spacing: -.025em;
}
.sec-title em {
  font-style: italic; font-weight: 500;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section--dark .sec-title { color: var(--white); }
.section--light .sec-title { color: var(--ink); }

.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: clamp(44px, 6vw, 70px);
}
.sec-lead {
  max-width: 340px; font-size: 15px; font-weight: 300; line-height: 1.7;
  padding-left: 20px; border-left: 2px solid var(--gold-500);
}
.section--dark .sec-lead { color: rgba(255,255,255,.6); }
.section--light .sec-lead { color: var(--ink-soft); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal--left { transform: translateX(-48px); }
.reveal--right { transform: translateX(48px); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ═══════════════ SOBRE ═══════════════ */
.about { background: var(--paper); position: relative; overflow: hidden; }
.about__grid {
  display: grid; grid-template-columns: minmax(300px, 440px) 1fr;
  gap: clamp(44px, 6vw, 88px); align-items: center;
}
.about__media { position: relative; }
.about__photo {
  position: relative; z-index: 2;
  aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; filter: grayscale(.1); }
.about__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,8,10,.35));
}
.about__frame {
  position: absolute; inset: 0; z-index: 1;
  border: 1px solid var(--gold-500); border-radius: 4px;
  transform: translate(22px, 22px);
  transition: transform .7s var(--ease-out);
}
.about__media:hover .about__frame { transform: translate(14px, 14px); }
.about__badge {
  position: absolute; z-index: 3; right: -22px; bottom: 40px;
  background: var(--black-950); color: var(--white);
  border: 1px solid rgba(185,138,46,.35); border-radius: 3px;
  padding: 18px 24px; display: grid; gap: 3px;
  box-shadow: var(--shadow-lg);
}
.about__badge strong {
  font-size: 30px; font-weight: 600; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about__badge span { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); }

.about__body .sec-title { margin-bottom: 26px; }
.about__text p { color: var(--ink-soft); font-size: 16px; font-weight: 300; margin-bottom: 16px; line-height: 1.78; }
.about__text strong { color: var(--ink); font-weight: 600; }
.about__points { margin: 30px 0 36px; display: grid; gap: 14px; }
.about__points li { display: flex; align-items: baseline; gap: 13px; font-size: 15px; color: var(--ink); }
.about__points li::before { content: ''; width: 7px; height: 7px; flex: none; transform: rotate(45deg); background: var(--gold-500); margin-top: 6px; }
.about__sign { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line-light); }
.about__sign-name { font-size: 22px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
.about__sign-role { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-600); }
.about__more { flex: none; }

/* ═══════════════ STATS ═══════════════ */
.stats { position: relative; background: var(--black-950); padding: clamp(60px, 7vw, 92px) 0; overflow: hidden; }
.stats__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(8,8,10,.9), rgba(8,8,10,.82)),
    url('../assets/towers-2.webp') center 30% / cover no-repeat;
}
.stats__bg::after { content:''; position:absolute; inset:0; background: radial-gradient(60% 100% at 50% 0%, rgba(185,138,46,.1), transparent 70%); }
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stats__item { text-align: center; position: relative; padding: 6px 14px; }
.stats__item:not(:last-child)::after {
  content: ''; position: absolute; right: -15px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 56px; background: linear-gradient(transparent, rgba(185,138,46,.4), transparent);
}
.stats__num {
  display: block; font-size: clamp(42px, 5vw, 62px); font-weight: 600; line-height: 1; letter-spacing: -.03em;
  margin-bottom: 12px;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats__label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.58); line-height: 1.6; }

/* ═══════════════ ÁREAS / SERVIÇOS ═══════════════ */
.practice { background: var(--paper); }
.practice__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }

.pcard {
  position: relative; text-align: left;
  background: var(--white); border: 1px solid var(--line-lighter);
  border-radius: 4px; padding: 34px 30px 30px; overflow: hidden;
  cursor: pointer; display: flex; flex-direction: column;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .4s;
}
.pcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease-luxe);
}
.pcard:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); border-color: rgba(185,138,46,.4); }
.pcard:hover::before { transform: scaleX(1); }
.pcard__num {
  font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--gold-500); margin-bottom: 20px;
}
.pcard__icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  border: 1px solid rgba(185,138,46,.35); border-radius: 50%;
  color: var(--gold-600); margin-bottom: 22px;
  transition: background .5s, color .5s, transform .5s var(--ease-out);
}
.pcard__icon svg { width: 24px; height: 24px; }
.pcard:hover .pcard__icon { background: var(--ink); color: var(--gold-300); transform: rotate(-6deg); }
.pcard__title { font-size: 20px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); margin-bottom: 10px; }
.pcard__text { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.68; margin-bottom: 22px; flex: 1; }
.pcard__more {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-600);
}
.pcard__more svg { width: 15px; height: 15px; transition: transform .4s var(--ease-out); }
.pcard:hover .pcard__more svg { transform: translateX(5px); }

/* ═══════════════ INTERNACIONAL (destaque) ═══════════════ */
.intl { position: relative; background: var(--black-950); overflow: hidden; }
.intl__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(8,8,10,.96) 30%, rgba(8,8,10,.6) 100%),
    url('../assets/towers-1.webp') center / cover no-repeat;
}
.intl__bg::after { content:''; position:absolute; inset:0; background: radial-gradient(70% 90% at 90% 20%, rgba(185,138,46,.12), transparent 60%); }
.intl .sec-title { color: var(--white); }
.intl__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.intl__body .sec-title { margin-bottom: 24px; }
.intl__lead { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.66); line-height: 1.78; max-width: 480px; margin-bottom: 38px; }
.intl__services { display: grid; gap: 2px; margin-bottom: 40px; border: 1px solid var(--line-dark); border-radius: 4px; overflow: hidden; }
.intl__service {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 26px; background: rgba(255,255,255,.02);
  transition: background .4s, padding-left .4s var(--ease-out);
}
.intl__service:hover { background: rgba(185,138,46,.07); padding-left: 34px; }
.intl__service-icon {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid rgba(185,138,46,.35); border-radius: 50%; color: var(--gold-300);
}
.intl__service-icon svg { width: 22px; height: 22px; }
.intl__service-txt strong { display: block; font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.intl__service-txt span { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55); }
.intl__flags { display: flex; align-items: center; gap: 14px; margin-bottom: 34px; flex-wrap: wrap; }
.intl__flags span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.intl__flag-codes { font-weight: 700; color: var(--gold-300) !important; letter-spacing: .16em !important; }
.intl__flag-sep { width: 1px; height: 14px; background: rgba(185,138,46,.5); }

/* ═══════════════ PROCESSO ═══════════════ */
.process { background: var(--paper-2); }
.process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  border: 1px solid var(--line-light); border-radius: 4px; overflow: hidden; background: var(--line-light);
}
.process__step {
  position: relative; padding: 40px 30px 44px; background: var(--paper);
  transition: background .4s;
}
.process__step:hover { background: var(--white); }
.process__num { display: block; font-size: 54px; font-weight: 600; line-height: 1; letter-spacing: -.03em; color: rgba(185,138,46,.28); margin-bottom: 18px; transition: color .4s; }
.process__step:hover .process__num { color: var(--gold-500); }
.process__line { display: block; width: 30px; height: 2px; background: var(--gold-grad); margin-bottom: 20px; transition: width .5s var(--ease-luxe); }
.process__step:hover .process__line { width: 52px; }
.process__title { font-size: 18px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); margin-bottom: 11px; }
.process__text { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.72; }

/* ═══════════════ QUOTE ═══════════════ */
.quote { background: var(--black-950); position: relative; overflow: hidden; }
.quote__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.quote__mark { font-size: 60px; line-height: 1; color: var(--gold-500); margin-bottom: 14px; font-weight: 600; }
.quote__text { font-size: clamp(24px, 3vw, 38px); font-weight: 400; line-height: 1.32; letter-spacing: -.02em; color: var(--white); margin-bottom: 28px; }
.quote__text em { font-style: italic; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.quote__sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.6); max-width: 500px; margin-bottom: 30px; line-height: 1.75; }
.quote__sign-name { font-size: 20px; font-weight: 600; color: var(--white); }
.quote__sign-role { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-300); margin-top: 3px; }
.quote__media { position: relative; width: 100%; max-width: 400px; margin-inline: auto; aspect-ratio: 4/5; }
.quote__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; border-radius: 4px; filter: grayscale(.2) contrast(1.05); box-shadow: var(--shadow-lg); }
.quote__media::before { content: ''; position: absolute; inset: 0; transform: translate(-18px, -18px); border: 1px solid rgba(185,138,46,.5); border-radius: 4px; }

/* ═══════════════ CTA ═══════════════ */
.cta { position: relative; background: var(--black-950); text-align: center; overflow: hidden; padding: clamp(84px, 10vw, 130px) 0; }
.cta__bg { position: absolute; inset: 0; background: radial-gradient(60% 90% at 50% 50%, rgba(185,138,46,.1), transparent 65%); }
.cta__inner { position: relative; max-width: 720px; margin-inline: auto; }
.cta__title { font-size: clamp(30px, 4.4vw, 54px); font-weight: 500; line-height: 1.08; letter-spacing: -.025em; color: var(--white); margin-bottom: 22px; }
.cta__title em { font-style: italic; background: var(--gold-grad); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shine 6s linear infinite; }
.cta__text { font-size: 16.5px; font-weight: 300; color: rgba(255,255,255,.66); max-width: 540px; margin: 0 auto 40px; line-height: 1.75; }
.cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════ CONTATO ═══════════════ */
.contact { background: var(--paper); }
.contact__grid { display: grid; grid-template-columns: 1fr minmax(360px, 480px); gap: clamp(44px, 6vw, 88px); align-items: start; }
.contact__lead { color: var(--ink-soft); font-size: 16px; font-weight: 300; margin: 22px 0 40px; max-width: 460px; line-height: 1.75; }
.contact__list { display: grid; gap: 24px; }
.contact__list li { display: flex; gap: 18px; align-items: flex-start; }
.contact__icon { flex: none; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(185,138,46,.35); border-radius: 50%; color: var(--gold-600); }
.contact__icon svg { width: 21px; height: 21px; }
.contact__list strong { display: block; font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink); margin-bottom: 5px; }
.contact__list a, .contact__list div > span { display: block; font-size: 15.5px; font-weight: 300; color: var(--ink-soft); transition: color .3s; }
.contact__list a:hover { color: var(--gold-600); }

.form {
  background: linear-gradient(170deg, var(--black-850), var(--black-950));
  border: 1px solid rgba(185,138,46,.22); border-radius: 4px;
  padding: clamp(30px, 4vw, 46px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); }
.form h3 { font-size: 24px; font-weight: 600; letter-spacing: -.01em; color: var(--white); margin-bottom: 8px; }
.form > p { color: rgba(255,255,255,.58); font-size: 14px; font-weight: 300; margin-bottom: 28px; }
.field { position: relative; margin-bottom: 18px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font); font-size: 15px; font-weight: 300; color: var(--white);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); border-radius: 3px;
  padding: 15px 16px; outline: none; resize: vertical;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--black-850); color: var(--white); }
.field label { position: absolute; left: 16px; top: 15px; font-size: 15px; color: rgba(255,255,255,.45); pointer-events: none; transition: all .3s var(--ease-out); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-500); background: rgba(185,138,46,.05); box-shadow: 0 0 0 3px rgba(185,138,46,.1); }
.field input:focus ~ label, .field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label, .field textarea:not(:placeholder-shown) ~ label {
  top: -8px; left: 12px; font-size: 10.5px; letter-spacing: .06em; color: var(--gold-300);
  background: var(--black-850); padding: 0 7px; border-radius: 2px;
}
.form__note { display: block; text-align: center; margin-top: 16px; font-size: 11.5px; color: rgba(255,255,255,.42); }

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: var(--black-950); color: rgba(255,255,255,.6); padding: clamp(60px, 7vw, 88px) 0 0; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gold-line); }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1.3fr; gap: clamp(32px, 4vw, 60px); padding-bottom: 52px; }
.footer__logo { height: 104px; width: auto; max-width: 100%; object-fit: contain; margin-bottom: 22px; }
.footer__brand p { font-size: 14px; font-weight: 300; line-height: 1.8; max-width: 340px; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; color: rgba(255,255,255,.7); transition: all .35s var(--ease-out); }
.footer__social a:hover { border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 { font-size: 11.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 20px; }
.footer__col a, .footer__col p { display: block; font-size: 14px; font-weight: 300; padding: 5px 0; color: rgba(255,255,255,.6); transition: color .3s, transform .3s var(--ease-out); }
.footer__col a:hover { color: var(--gold-200); transform: translateX(4px); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid var(--line-darker); font-size: 12.5px; color: rgba(255,255,255,.4); }
.footer__bottom-oab { letter-spacing: .14em; text-transform: uppercase; font-size: 11px; }
.footer__credit { text-align: center; padding: 4px 0 24px; font-size: 12px; color: rgba(255,255,255,.32); }
.footer__credit a { color: var(--gold-300); text-decoration: none; transition: color .3s var(--ease-out); }
.footer__credit a:hover { color: var(--gold-200); text-decoration: underline; }

/* ═══════════════ MODAL ═══════════════ */
.modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8,8,10,.78); backdrop-filter: blur(8px); opacity: 0; transition: opacity .45s; }
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative; width: min(660px, 100%); max-height: min(86vh, 800px); overflow-y: auto;
  background: var(--white); border-radius: 6px; padding: clamp(30px, 4.5vw, 50px);
  box-shadow: 0 50px 120px -20px rgba(0,0,0,.7);
  opacity: 0; transform: translateY(40px) scale(.98);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.modal.is-open .modal__panel { opacity: 1; transform: none; }
.modal__panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-grad); border-radius: 6px 6px 0 0; }
.modal__close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; color: var(--ink); transition: all .35s var(--ease-out); }
.modal__close svg { width: 17px; height: 17px; }
.modal__close:hover { background: var(--ink); color: var(--gold-300); transform: rotate(90deg); }
.modal__head { display: flex; gap: 20px; align-items: center; margin-bottom: 22px; padding-right: 46px; }
.modal__icon { flex: none; width: 62px; height: 62px; display: grid; place-items: center; background: var(--ink); border-radius: 50%; color: var(--gold-300); }
.modal__icon svg { width: 28px; height: 28px; }
.modal__eyebrow { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 5px; }
.modal__title { font-size: clamp(23px, 3vw, 31px); font-weight: 600; letter-spacing: -.02em; color: var(--ink); line-height: 1.12; }
.modal__desc { color: var(--ink-soft); font-size: 15px; font-weight: 300; line-height: 1.7; margin-bottom: 26px; }
.modal__list-title { font-size: 11.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--ink); margin-bottom: 15px; display: flex; align-items: center; gap: 12px; }
.modal__list-title::after { content: ''; flex: 1; height: 1px; background: var(--line-light); }
.modal__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-bottom: 32px; }
.modal__list li { display: flex; gap: 10px; align-items: baseline; font-size: 14px; color: var(--ink); }
.modal__list li::before { content: ''; width: 6px; height: 6px; flex: none; transform: rotate(45deg); background: var(--gold-500); }

/* Modal bio */
.modal__panel--bio { max-width: 720px; }
.bio__group { margin-bottom: 24px; }
.bio__group:last-of-type { margin-bottom: 28px; }
.bio__list { display: grid; gap: 11px; }
.bio__list li { position: relative; padding-left: 22px; font-size: 14.5px; font-weight: 300; color: var(--ink-soft); line-height: 1.55; }
.bio__list li strong, .bio__list li b { font-weight: 600; color: var(--ink); }
.bio__list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; transform: rotate(45deg); background: var(--gold-500); }
.bio__list--inline { grid-template-columns: repeat(2, 1fr); gap: 11px 22px; }
@media (max-width: 520px) { .bio__list--inline { grid-template-columns: 1fr; } }

/* ═══════════════ WHATSAPP FLUTUANTE ═══════════════ */
.whats { position: fixed; right: 24px; bottom: 24px; z-index: 400; width: 58px; height: 58px; display: grid; place-items: center; background: linear-gradient(135deg, #25B843, #1B9E37); color: var(--white); border-radius: 50%; box-shadow: 0 14px 34px -8px rgba(30,158,55,.55); transition: transform .4s var(--ease-out), box-shadow .4s; }
.whats:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 20px 42px -8px rgba(30,158,55,.65); }
.whats svg { width: 26px; height: 26px; }
.whats__pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(37,184,67,.65); animation: pulse 2.4s var(--ease-out) infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }

/* ═══════════════ RESPONSIVO ═══════════════ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__portrait { display: none; }
  .intl__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .nav__links, .nav__cta.nav__cta--desktop { display: none; }
  .header__burger { display: flex; }
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 30px;
    background: linear-gradient(160deg, var(--black-900), var(--black-950));
    opacity: 0; visibility: hidden; transition: opacity .5s var(--ease-out), visibility 0s .5s; z-index: 110;
  }
  .nav.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
  .nav__links { display: flex; flex-direction: column; gap: 24px; }
  .nav__link { font-size: 17px; }
  /* seletor de idioma dentro do menu mobile, com área de toque maior */
  .lang { border-color: rgba(255,255,255,.22); }
  .lang__btn { padding: 13px 24px; font-size: 13px; letter-spacing: .14em; }
  .about__grid, .quote__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media, .quote__media { max-width: 420px; }
  .quote__media { margin-top: 20px; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .stats__item:nth-child(2)::after { display: none; }
  .header__logo img, .header.is-scrolled .header__logo img { height: 70px; }
  .footer__logo { height: 88px; }
}
@media (max-width: 620px) {
  .process__grid { grid-template-columns: 1fr; }
  .stats__item::after { display: none !important; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
  .modal__list { grid-template-columns: 1fr; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
  .hero__meta-sep { display: none; }
  .whats { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .header__logo img, .header.is-scrolled .header__logo img { height: 56px; }
  .footer__logo { height: 72px; }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, [data-anim] { opacity: 1 !important; transform: none !important; }
}
