/* ═══════════════════════════════════════════════════════════
   PÂMELA OLIVEIRA — Advocacia e Consultoria Jurídica
   Direito Previdenciário Internacional
   Marrom · Dourado · Creme
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ── Marrom ── */
  --brown-950: #17100C;
  --brown-900: #241812;
  --brown-850: #2E1F17;
  --brown-800: #3B281D;
  --brown-700: #4E3627;
  --brown-600: #6B4B36;
  --brown-500: #8A6547;

  /* ── Dourado / areia (identidade do logo) ── */
  --gold-200: #F3E3C9;
  --gold-300: #EBD3B0;
  --gold-400: #DDBB8A;
  --gold-500: #C29A63;
  --gold-600: #A17A45;
  --gold-700: #7E5D33;
  --gold-grad: linear-gradient(115deg, #7E5D33 0%, #C29A63 26%, #F5E5C8 50%, #C29A63 74%, #7E5D33 100%);

  /* ── Creme ── */
  --cream-50: #FDFAF5;
  --cream-100: #F9F3EA;
  --cream-200: #F2E8D9;
  --cream-300: #E8D9C4;

  --ink: #33241B;
  --ink-soft: #6E5B4C;
  --white: #FFFFFF;

  /* ── Tipografia ── */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;

  /* ── Layout ── */
  --container: 1220px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 24px 70px -26px rgba(35, 22, 14, .28);
  --shadow-card: 0 14px 40px -22px rgba(35, 22, 14, .35);
  --shadow-gold: 0 16px 42px -14px rgba(162, 122, 69, .55);

  /* ── Motion ── */
  --ease-out: cubic-bezier(.19, 1, .22, 1);
  --ease-luxe: cubic-bezier(.65, 0, .15, 1);
}

/* ═══════════════ RESET ═══════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 124px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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: italic; }

::selection { background: var(--gold-300); color: var(--brown-900); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--brown-950); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-600), var(--gold-500)); border-radius: 6px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 4vw, 44px); }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ═══════════════ TEXTURA / GRÃO ═══════════════ */
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%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='.06'/%3E%3C/svg%3E");
}

/* ═══════════════ BOTÕES ═══════════════ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-size: 13px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  border-radius: 999px;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out),
              color .3s, border-color .3s, background-color .3s;
}
.btn--lg { padding: 17px 38px; font-size: 13.5px; }
.btn--block { width: 100%; }

.btn--gold {
  color: var(--brown-950);
  background: var(--gold-grad);
  background-size: 220% auto;
  box-shadow: var(--shadow-gold);
}
.btn--gold::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.7) 50%, transparent 60%);
  transform: translateX(-130%);
  transition: transform .9s var(--ease-luxe);
}
.btn--gold:hover { transform: translateY(-3px); background-position: right center; box-shadow: 0 24px 54px -14px rgba(162,122,69,.7); }
.btn--gold:hover::after { transform: translateX(130%); }

.btn--ghost {
  color: var(--gold-200);
  border: 1px solid rgba(235,211,176,.4);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--gold-400); background: rgba(235,211,176,.09); transform: translateY(-3px); }

.btn--outline {
  color: var(--brown-800);
  border: 1px solid rgba(162,122,69,.45);
}
.btn--outline:hover { background: var(--brown-800); color: var(--gold-300); border-color: var(--brown-800); transform: translateY(-3px); }

/* ═══════════════ PRELOADER ═══════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: var(--brown-950);
  transition: opacity .6s ease .8s, visibility 0s 1.4s;
}
.preloader__inner { display: grid; place-items: center; gap: 24px; }
.preloader__mono svg { width: 116px; height: 116px; }
.preloader__ring {
  stroke: var(--gold-500); stroke-width: 1.1; fill: none;
  stroke-dasharray: 352; stroke-dashoffset: 352;
  transform-origin: center; transform: rotate(-90deg);
  animation: ringDraw 1.4s var(--ease-luxe) forwards;
}
.preloader__initials {
  font-family: var(--font-display); font-size: 44px; fill: var(--gold-300);
  letter-spacing: .04em; opacity: 0; animation: fadeIn .8s ease .5s forwards;
}
.preloader__label {
  font-size: 11px; letter-spacing: .44em; text-transform: uppercase;
  color: var(--gold-400); opacity: 0; animation: fadeIn .8s ease .8s forwards;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes ringDraw { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ═══════════════ HEADER ═══════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: padding .45s var(--ease-out);
}
.header::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: rgba(23, 16, 12, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(194,154,99,.28);
  opacity: 0; transition: opacity .45s;
}
.header.is-scrolled { padding: 8px 0; }
.header.is-scrolled::after { opacity: 1; }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.header__logo img { height: 92px; width: auto; transition: height .45s var(--ease-out); }
.header.is-scrolled .header__logo img { height: 66px; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav__link {
  position: relative;
  font-size: 12.5px; font-weight: 300;
  letter-spacing: .14em; text-transform: uppercase;
  white-space: nowrap;
  color: rgba(253,250,245,.82);
  padding: 6px 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; }
.nav__cta { padding: 12px 22px; font-size: 11px; }

.header__burger { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 110; }
.header__burger span {
  display: block; width: 26px; height: 1.5px; background: var(--cream-50);
  transition: transform .4s var(--ease-out), opacity .3s;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--brown-950);
  overflow: hidden;
  padding: 146px 0 66px;
}
.hero__bg { position: absolute; inset: 0; }
.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(65% 75% at 78% 18%, rgba(107,75,54,.55) 0%, transparent 62%),
    radial-gradient(55% 65% at 8% 92%, rgba(126,93,51,.35) 0%, transparent 62%),
    linear-gradient(165deg, var(--brown-900) 0%, var(--brown-950) 58%, #100A07 100%);
}
.hero__photoBg {
  position: absolute; inset: 0;
  background: url('../assets/bg1.jpg') center 26% / cover no-repeat;
  opacity: .2;
  filter: sepia(.5) saturate(.75);
  mask-image: linear-gradient(100deg, transparent 4%, rgba(0,0,0,.5) 36%, #000 70%);
  -webkit-mask-image: linear-gradient(100deg, transparent 4%, rgba(0,0,0,.5) 36%, #000 70%);
}
/* mapa-múndi pontilhado — atuação internacional */
.hero__map {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(235,211,176,.16) 1.1px, transparent 1.2px);
  background-size: 22px 22px;
  mask-image: radial-gradient(58% 62% at 30% 46%, #000 6%, transparent 72%);
  -webkit-mask-image: radial-gradient(58% 62% at 30% 46%, #000 6%, transparent 72%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(100px); }
.hero__glow--1 {
  width: 620px; height: 620px; top: -180px; right: -60px;
  background: radial-gradient(circle, rgba(194,154,99,.26), transparent 66%);
  animation: glowFloat 10s ease-in-out infinite alternate;
}
.hero__glow--2 {
  width: 460px; height: 460px; bottom: -160px; left: -80px;
  background: radial-gradient(circle, rgba(78,54,39,.9), transparent 66%);
  animation: glowFloat 13s ease-in-out infinite alternate-reverse;
}
@keyframes glowFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(-44px, 28px) scale(1.14); } }

.hero .container { width: 100%; position: relative; z-index: 3; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

/* Entrada orquestrada */
[data-hero] { opacity: 0; transform: translateY(34px); }
.is-loaded [data-hero] { animation: riseIn 1.1s var(--ease-out) forwards; }
.is-loaded [data-hero="1"] { animation-delay: 1.05s; }
.is-loaded [data-hero="2"] { animation-delay: 1.2s; }
.is-loaded [data-hero="3"] { animation-delay: 1.45s; }
.is-loaded [data-hero="4"] { animation-delay: 1.65s; }
.is-loaded [data-hero="5"] { animation-delay: 1.85s; }
@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-300);
  border: 1px solid rgba(194,154,99,.32);
  border-radius: 999px;
  padding: 8px 20px 8px 14px;
  background: rgba(194,154,99,.07);
  margin-bottom: 22px;
}
.hero__eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--gold-400);
  box-shadow: 0 0 0 0 rgba(221,187,138,.7);
  animation: ping 2.4s var(--ease-out) infinite;
}
@keyframes ping { 70%, 100% { box-shadow: 0 0 0 10px rgba(221,187,138,0); } }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 500; line-height: 1.08;
  color: var(--cream-50);
  letter-spacing: .005em;
  margin-bottom: 22px;
  max-width: 17ch;
}
.hero__title em {
  font-style: italic;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: goldShine 6s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

.hero__subtitle {
  font-size: clamp(15.5px, 1.5vw, 18px);
  color: rgba(249,243,234,.68);
  max-width: 52ch; line-height: 1.75;
  margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }

.hero__badges {
  display: flex; align-items: stretch; gap: 26px; flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(235,211,176,.16);
}
.hero__badge { display: grid; gap: 3px; }
.hero__badge strong {
  font-family: var(--font-display); font-size: 27px; font-weight: 500; line-height: 1;
  color: var(--gold-300);
}
.hero__badge span {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(249,243,234,.5);
}
.hero__badge-sep { width: 1px; background: linear-gradient(transparent, rgba(194,154,99,.45), transparent); }

/* Retrato */
.hero__portrait {
  position: relative;
  justify-self: center;
  width: min(100%, 480px);
  aspect-ratio: 0.82;
  display: grid; place-items: end center;
  opacity: 0; transform: translateY(50px);
}
.is-loaded .hero__portrait { animation: riseIn 1.4s var(--ease-out) .95s forwards; }
.hero__halo {
  position: absolute; left: 50%; bottom: 4%;
  translate: -50% 0;
  width: 88%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 55%, rgba(194,154,99,.34), rgba(194,154,99,.06) 55%, transparent 72%);
}
.hero__arc {
  position: absolute; left: 50%; bottom: 0; translate: -50% 0;
  width: 78%; height: 88%;
  border: 1px solid rgba(235,211,176,.35);
  border-radius: 999px 999px 26px 26px;
  background: linear-gradient(180deg, rgba(235,211,176,.09), rgba(235,211,176,.01));
}
.hero__rings {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  width: 116%; aspect-ratio: 1; pointer-events: none;
}
.ring { stroke: rgba(194,154,99,.3); stroke-width: 1; fill: none; stroke-dasharray: 3 10; }
.ring--outer { animation: spin 100s linear infinite; transform-origin: center; }
.ring--mid { stroke-dasharray: 2 7; animation: spin 76s linear infinite reverse; transform-origin: center; }
.ring--inner { stroke: rgba(194,154,99,.14); stroke-dasharray: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__portrait img {
  position: relative; z-index: 2;
  width: 92%; height: auto;
  filter: drop-shadow(0 34px 60px rgba(0,0,0,.6));
  mask-image: linear-gradient(180deg, #000 78%, rgba(0,0,0,.25) 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 78%, rgba(0,0,0,.25) 96%, transparent 100%);
}
.hero__tag {
  position: absolute; z-index: 3;
  left: -6%; bottom: 20%;
  display: grid; gap: 2px;
  padding: 14px 20px;
  background: rgba(23,16,12,.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(194,154,99,.32);
  border-radius: 14px;
  box-shadow: 0 20px 44px -20px rgba(0,0,0,.8);
}
.hero__tag strong {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  color: var(--gold-300); line-height: 1.2;
}
.hero__tag span { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(249,243,234,.55); }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; translate: -50% 0;
  display: grid; place-items: center; gap: 10px; z-index: 4;
}
.hero__scroll-line {
  width: 1px; height: 48px; position: relative; overflow: hidden;
  background: linear-gradient(var(--gold-400), transparent);
}
.hero__scroll-line::after {
  content: '';
  position: absolute; top: -48px; left: 0; width: 100%; height: 48px;
  background: linear-gradient(transparent, var(--cream-50));
  animation: scrollDrop 2.3s var(--ease-luxe) infinite;
}
@keyframes scrollDrop { 60%, 100% { transform: translateY(96px); } }
.hero__scroll-text {
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase;
  color: rgba(249,243,234,.45); transition: color .3s;
}
.hero__scroll:hover .hero__scroll-text { color: var(--gold-300); }

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  background: var(--cream-100);
  border-bottom: 1px solid rgba(162,122,69,.16);
  padding: 22px 0; overflow: hidden; position: relative;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 130px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--cream-100), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--cream-100), transparent); }
.marquee__track {
  display: flex; align-items: center; gap: 44px;
  width: max-content; animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  color: var(--brown-700); white-space: nowrap; letter-spacing: .03em;
}
.marquee__track i { font-style: normal; color: var(--gold-500); font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════ SEÇÕES (base) ═══════════════ */
.section { padding: clamp(84px, 9.5vw, 140px) 0; }

.section__eyebrow {
  display: inline-flex; align-items: center; gap: 13px;
  font-size: 11.5px; font-weight: 400;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 18px;
}
.section__eyebrow::before { content: ''; width: 38px; height: 1px; background: var(--gold-grad); }
.section__eyebrow--light { color: var(--gold-300); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.7vw, 47px);
  font-weight: 500; line-height: 1.16;
  color: var(--brown-850); letter-spacing: .005em;
}
.section__title em {
  font-style: italic;
  background: linear-gradient(115deg, #7E5D33, #C29A63 48%, #A17A45);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section__title--light { color: var(--cream-50); }

.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: clamp(44px, 5.5vw, 68px);
}
.section__lead {
  max-width: 350px; font-size: 15px; color: var(--ink-soft);
  border-left: 2px solid var(--gold-500); padding-left: 20px;
}
.section__lead--light { color: rgba(249,243,234,.6); border-color: var(--gold-400); }

.reveal {
  opacity: 0; transform: translateY(42px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal--left { transform: translateX(-50px); }
.reveal--right { transform: translateX(50px); }
.reveal.is-visible { opacity: 1; transform: translate(0, 0); }

/* ═══════════════ SOBRE ═══════════════ */
.about { background: var(--cream-50); position: relative; overflow: hidden; }
.about::before {
  content: '';
  position: absolute; top: -140px; left: -160px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(235,211,176,.35), transparent 68%);
  pointer-events: none;
}
.about__grid {
  position: relative;
  display: grid; grid-template-columns: minmax(300px, 440px) 1fr;
  gap: clamp(44px, 6vw, 88px); align-items: center;
}
.about__media { position: relative; }
.about__frame {
  position: relative;
  aspect-ratio: 4 / 4.6;
  border-radius: 240px 240px var(--radius) var(--radius);
  background: linear-gradient(170deg, var(--brown-700), var(--brown-950));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid; place-items: end center;
}
.about__frame::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(70% 55% at 50% 88%, rgba(194,154,99,.28), transparent 70%);
}
.about__frame img {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.about__outline {
  position: absolute; inset: 0; z-index: -1;
  border: 1px solid var(--gold-500);
  border-radius: 240px 240px var(--radius) var(--radius);
  transform: translate(20px, 20px);
  transition: transform .7s var(--ease-out);
}
.about__media:hover .about__outline { transform: translate(12px, 12px); }
.about__card {
  position: absolute; z-index: 3; right: -22px; bottom: 34px;
  display: grid; gap: 2px;
  background: var(--white);
  border: 1px solid rgba(194,154,99,.35);
  border-radius: 14px; padding: 18px 24px;
  box-shadow: var(--shadow-soft);
}
.about__card strong {
  font-family: var(--font-display); font-size: 32px; font-weight: 500; line-height: 1;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about__card span { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }

.about__body .section__title { margin-bottom: 26px; }
.about__text p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; }
.about__text strong { color: var(--brown-800); font-weight: 500; }

.about__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0 34px; }
.about__pillar {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--cream-100);
  border: 1px solid rgba(162,122,69,.16);
  border-radius: 14px; padding: 16px 18px;
  transition: border-color .4s, transform .5s var(--ease-out), background .4s;
}
.about__pillar:hover { border-color: rgba(194,154,99,.5); transform: translateY(-4px); background: var(--cream-200); }
.about__pillar svg { width: 22px; height: 22px; flex: none; color: var(--gold-600); margin-top: 3px; }
.about__pillar b { display: block; font-size: 14.5px; font-weight: 500; color: var(--brown-800); }
.about__pillar small { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

.about__signature { display: grid; gap: 2px; padding-top: 24px; border-top: 1px solid rgba(162,122,69,.2); }
.about__signature-name { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--brown-800); }
.about__signature-role { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-600); }

/* ═══════════════ NÚMEROS ═══════════════ */
.stats { position: relative; background: var(--brown-950); padding: clamp(60px, 7vw, 92px) 0; overflow: hidden; }
.stats__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 90% at 50% 0%, rgba(194,154,99,.14), transparent 72%),
    linear-gradient(120deg, rgba(36,24,18,.93), rgba(23,16,12,.95)),
    url('../assets/bg2.webp') center / cover no-repeat;
}
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stats__item { text-align: center; padding: 6px 16px; position: relative; }
.stats__item:not(:last-child)::after {
  content: ''; position: absolute; right: -16px; top: 50%; translate: 0 -50%;
  width: 1px; height: 62px;
  background: linear-gradient(transparent, rgba(194,154,99,.45), transparent);
}
.stats__num {
  display: block; margin-bottom: 10px;
  font-family: var(--font-display); font-size: clamp(42px, 4.8vw, 62px); font-weight: 500; line-height: 1;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: goldShine 7s linear infinite;
}
.stats__label {
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(249,243,234,.58); line-height: 1.75;
}

/* ═══════════════ ÁREAS — 3 PILARES ═══════════════ */
.areas { background: var(--cream-100); position: relative; }
.areas::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(126,93,51,.09) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}
.areas__grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.area-card {
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(162,122,69,.16);
  border-radius: var(--radius);
  padding: 38px 32px 34px;
  display: flex; flex-direction: column;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .4s;
}
.area-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease-luxe);
}
.area-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: rgba(194,154,99,.4); }
.area-card:hover::before { transform: scaleX(1); }
.area-card__num {
  position: absolute; top: 22px; right: 28px;
  font-family: var(--font-display); font-size: 46px; font-weight: 600; line-height: 1;
  color: rgba(162,122,69,.14);
  transition: color .4s;
}
.area-card:hover .area-card__num { color: rgba(162,122,69,.3); }
.area-card__icon {
  width: 58px; height: 58px; display: grid; place-items: center;
  border: 1px solid rgba(194,154,99,.42);
  border-radius: 50%; color: var(--gold-600);
  margin-bottom: 22px;
  transition: background .5s, color .5s, transform .5s var(--ease-out), box-shadow .5s;
}
.area-card__icon svg { width: 26px; height: 26px; }
.area-card:hover .area-card__icon {
  background: var(--brown-800); color: var(--gold-300);
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 12px 28px -10px rgba(35,22,14,.5);
}
.area-card h3 {
  font-family: var(--font-display); font-size: 25px; font-weight: 600;
  color: var(--brown-800); margin-bottom: 10px; line-height: 1.2;
}
.area-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; flex: 1; margin-bottom: 22px; }
.area-card__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-600);
}
.area-card__link svg { width: 16px; height: 16px; transition: transform .4s var(--ease-out); }
.area-card:hover .area-card__link svg { transform: translateX(6px); }

/* ═══════════════ ESPECIALIDADES (BENTO) ═══════════════ */
.spec { background: var(--cream-50); position: relative; overflow: hidden; }
.spec__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.s-card {
  grid-column: span 2;
  position: relative; overflow: hidden; text-align: left;
  background: var(--white);
  border: 1px solid rgba(162,122,69,.16);
  border-radius: var(--radius);
  padding: 30px 28px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .4s;
}
/* grade fixa 3 × 2 */
.s-card::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(130% 100% at 0% 0%, rgba(194,154,99,.1), transparent 58%);
  transition: opacity .5s;
}
.s-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); border-color: rgba(194,154,99,.45); }
.s-card:hover::after { opacity: 1; }
.s-card__top { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.s-card__icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--cream-200); color: var(--gold-700);
  transition: background .45s, color .45s;
}
.s-card__icon svg { width: 22px; height: 22px; }
.s-card:hover .s-card__icon { background: var(--brown-800); color: var(--gold-300); }
.s-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--brown-800); line-height: 1.2;
}
.s-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; position: relative; z-index: 1; flex: 1; }
.s-card__more {
  display: inline-flex; align-items: center; gap: 9px; position: relative; z-index: 1;
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-600);
}
.s-card__more svg { width: 15px; height: 15px; transition: transform .4s var(--ease-out); }
.s-card:hover .s-card__more svg { transform: translateX(6px); }

/* ═══════════════ COMO FUNCIONA ═══════════════ */
.process { position: relative; background: var(--brown-950); padding: clamp(84px, 9.5vw, 140px) 0; overflow: hidden; }
.process__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 70% at 88% 8%, rgba(107,75,54,.5) 0%, transparent 62%),
    radial-gradient(45% 60% at 4% 100%, rgba(194,154,99,.1) 0%, transparent 62%),
    linear-gradient(180deg, var(--brown-950), var(--brown-900));
}
.process .container { position: relative; }
.process__track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process__track::before {
  content: ''; position: absolute; left: 26px; right: 26px; top: 27px; height: 1px;
  background: linear-gradient(90deg, rgba(194,154,99,.15), rgba(194,154,99,.55), rgba(194,154,99,.15));
}
.step { position: relative; padding-top: 0; transition: transform .5s var(--ease-out), opacity 1s var(--ease-out); }
.step__dot {
  position: relative; z-index: 2;
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brown-900);
  border: 1px solid rgba(194,154,99,.45);
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 24px;
  transition: background .45s, transform .5s var(--ease-out), box-shadow .5s;
}
.step:hover .step__dot {
  background: var(--gold-grad); color: var(--brown-950);
  transform: scale(1.08); box-shadow: var(--shadow-gold);
}
.step h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--cream-50); margin-bottom: 10px; }
.step p { font-size: 14px; color: rgba(249,243,234,.55); line-height: 1.8; }

/* ═══════════════ CITAÇÃO ═══════════════ */
.quote { background: var(--cream-100); padding: clamp(80px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.quote__inner { position: relative; max-width: 900px; margin-inline: auto; text-align: center; }
.quote__mark {
  font-family: var(--font-display); font-size: 120px; line-height: .6;
  color: rgba(194,154,99,.28); display: block; margin-bottom: 10px;
}
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 500; line-height: 1.32;
  color: var(--brown-800); margin-bottom: 28px;
}
.quote__text em {
  font-style: italic;
  background: linear-gradient(115deg, #7E5D33, #C29A63 48%, #A17A45);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.quote__author { display: grid; gap: 3px; }
.quote__author strong { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--brown-800); }
.quote__author span { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-600); }

/* ═══════════════ DEPOIMENTOS ═══════════════ */
.reviews { background: var(--cream-50); position: relative; overflow: hidden; }
.reviews__summary {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1px solid rgba(162,122,69,.18);
  border-radius: 14px; padding: 16px 24px;
  box-shadow: var(--shadow-card);
}
.reviews__score { display: grid; gap: 2px; }
.reviews__score strong { font-family: var(--font-display); font-size: 28px; font-weight: 500; line-height: 1; color: var(--brown-800); }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 15px; height: 15px; fill: var(--gold-500); }
.reviews__based { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.r-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(162,122,69,.16);
  border-radius: var(--radius);
  padding: 30px 30px 28px;
  box-shadow: 0 10px 34px -24px rgba(35,22,14,.4);
  transition: transform .5s var(--ease-out), border-color .4s, box-shadow .5s;
}
.r-card:hover { transform: translateY(-6px); border-color: rgba(194,154,99,.45); box-shadow: var(--shadow-soft); }
.r-card__quote {
  position: absolute; top: 18px; right: 26px;
  font-family: var(--font-display); font-size: 62px; line-height: .8;
  color: rgba(194,154,99,.18);
}
.r-card__text { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 22px; position: relative; }
.r-card__foot { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(162,122,69,.15); }
.r-card__avatar {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 50%; color: var(--gold-200);
  font-size: 18px; font-weight: 400;
  background: linear-gradient(150deg, var(--brown-600), var(--brown-900));
  border: 1px solid rgba(194,154,99,.4);
}
.r-card__id { display: grid; gap: 1px; flex: 1; min-width: 0; }
.r-card__id strong { font-size: 15px; font-weight: 500; color: var(--brown-800); }
.r-card__id span { font-size: 12.5px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 6px; }
.r-card__id span::before { content: '◦'; color: var(--gold-500); }

/* ═══════════════ CTA ═══════════════ */
.cta { position: relative; background: var(--brown-950); padding: clamp(84px, 9.5vw, 130px) 0; overflow: hidden; text-align: center; }
.cta__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(72% 100% at 50% 50%, rgba(23,16,12,.5) 0%, rgba(23,16,12,.95) 100%),
    linear-gradient(180deg, rgba(36,24,18,.84), rgba(23,16,12,.82)),
    url('../assets/bg3.jpg') center 34% / cover no-repeat;
}
.cta__glow {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  width: 900px; height: 480px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(194,154,99,.16), transparent 70%);
  animation: glowFloat 9s ease-in-out infinite alternate;
}
.cta__inner { position: relative; max-width: 780px; }
.cta__ornament { display: inline-block; color: var(--gold-500); font-size: 18px; margin-bottom: 24px; animation: spin 16s linear infinite; }
.cta__title {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 50px);
  font-weight: 500; line-height: 1.2; color: var(--cream-50); margin-bottom: 20px;
}
.cta__title em {
  font-style: italic;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: goldShine 6s linear infinite;
}
.cta__text { color: rgba(249,243,234,.66); font-size: 16px; max-width: 580px; margin: 0 auto 38px; }
.cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════ CONTATO ═══════════════ */
.contact { background: var(--cream-100); }
.contact__grid {
  display: grid; grid-template-columns: 1fr minmax(340px, 470px);
  gap: clamp(44px, 6vw, 84px); align-items: start;
}
.contact__lead { color: var(--ink-soft); font-size: 16px; margin: 20px 0 38px; max-width: 46ch; }
.contact__list { display: grid; gap: 22px; }
.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(194,154,99,.4); border-radius: 50%;
  color: var(--gold-600); background: var(--white);
  transition: background .4s, color .4s, transform .5s var(--ease-out);
}
.contact__list li:hover .contact__icon { background: var(--brown-800); color: var(--gold-300); transform: translateY(-3px); }
.contact__icon svg { width: 21px; height: 21px; }
.contact__list strong {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--brown-800); margin-bottom: 4px;
}
.contact__list a, .contact__list div > span { display: block; font-size: 15.5px; color: var(--ink-soft); transition: color .3s; }
.contact__list a:hover { color: var(--gold-600); }

.contact__form {
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--brown-800), var(--brown-950));
  border: 1px solid rgba(194,154,99,.25);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}
.contact__form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-grad); }
.contact__form h3 { font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--cream-50); margin-bottom: 6px; }
.contact__form > p { color: rgba(249,243,234,.58); font-size: 14px; margin-bottom: 28px; }

.field { position: relative; margin-bottom: 18px; }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-body); font-size: 15px; font-weight: 300;
  color: var(--cream-50);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; 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(--brown-900); color: var(--cream-50); }
.field label {
  position: absolute; left: 16px; top: 15px;
  font-size: 15px; color: rgba(249,243,234,.5);
  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(194,154,99,.08);
  box-shadow: 0 0 0 3px rgba(194,154,99,.14);
}
.field input:focus ~ label, .field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label, .field textarea:not(:placeholder-shown) ~ label {
  top: -9px; left: 12px; font-size: 11px; letter-spacing: .08em;
  color: var(--gold-300); background: var(--brown-850);
  padding: 0 7px; border-radius: 4px;
}
.form__note {
  display: block; text-align: center; margin-top: 16px;
  font-size: 11.5px; letter-spacing: .05em; color: rgba(249,243,234,.45);
}

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: var(--brown-950); color: rgba(249,243,234,.62); padding: clamp(60px, 7vw, 88px) 0 0; position: relative; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,154,99,.6), transparent);
}
.footer__top {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 58px); padding-bottom: 52px;
}
.footer__logo { height: 110px; width: auto; margin-bottom: 20px; }
.footer__brand p { font-size: 14px; line-height: 1.85; max-width: 36ch; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(194,154,99,.3); border-radius: 50%;
  color: var(--gold-300);
  transition: background .4s, color .4s, transform .4s var(--ease-out), border-color .4s;
}
.footer__social a:hover { background: var(--gold-grad); color: var(--brown-950); border-color: transparent; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 {
  font-size: 11.5px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-300); margin-bottom: 18px;
}
.footer__col a {
  display: block; font-size: 14px; padding: 5px 0; color: rgba(249,243,234,.62);
  transition: color .3s, transform .3s var(--ease-out);
}
.footer__col a:hover { color: var(--gold-200); transform: translateX(5px); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px; color: rgba(249,243,234,.42);
}

/* ═══════════════ 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(23,16,12,.74); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .45s;
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative; width: min(680px, 100%);
  max-height: min(86vh, 820px); overflow-y: auto;
  background: var(--cream-50);
  border-radius: 22px; padding: clamp(30px, 4.5vw, 50px);
  box-shadow: 0 40px 120px -20px rgba(23,16,12,.62);
  opacity: 0; transform: translateY(42px) scale(.97);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.modal.is-open .modal__panel { opacity: 1; transform: translateY(0) scale(1); }
.modal__panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold-grad); border-radius: 22px 22px 0 0;
}
.modal__panel::-webkit-scrollbar { width: 6px; }
.modal__panel::-webkit-scrollbar-track { background: transparent; }
.modal__panel::-webkit-scrollbar-thumb { background: rgba(194,154,99,.5); }
.modal__close {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(162,122,69,.24); border-radius: 50%;
  color: var(--brown-800); transition: all .35s var(--ease-out); z-index: 2;
}
.modal__close svg { width: 18px; height: 18px; }
.modal__close:hover { background: var(--brown-800); color: var(--gold-300); border-color: var(--brown-800); transform: rotate(90deg); }
.modal__head { display: flex; gap: 20px; align-items: center; margin-bottom: 22px; padding-right: 48px; }
.modal__icon {
  flex: none; width: 64px; height: 64px; display: grid; place-items: center;
  background: var(--brown-800); border-radius: 18px; color: var(--gold-300);
  box-shadow: 0 12px 30px -10px rgba(23,16,12,.5);
}
.modal__icon svg { width: 28px; height: 28px; }
.modal__eyebrow {
  display: block; font-size: 10.5px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 5px;
}
.modal__title {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 33px);
  font-weight: 600; color: var(--brown-800); line-height: 1.15;
}
.modal__desc { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 26px; }
.modal__list-title {
  font-size: 11.5px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brown-800); margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
}
.modal__list-title::after { content: ''; flex: 1; height: 1px; background: rgba(162,122,69,.2); }
.modal__list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px; margin-bottom: 30px; }
.modal__list li {
  display: flex; gap: 10px; align-items: baseline;
  font-size: 14.5px; color: var(--ink);
  opacity: 0; transform: translateY(14px);
}
.modal.is-open .modal__list li { animation: riseIn .6s var(--ease-out) forwards; animation-delay: calc(.15s + var(--i) * .045s); }
.modal__list li::before { content: '✦'; color: var(--gold-500); font-size: 10px; flex: none; }

/* ═══════════════ SELETOR DE IDIOMA ═══════════════ */
.langs {
  position: fixed; left: 24px; bottom: 24px; z-index: 400;
  display: flex; gap: 4px; padding: 5px;
  background: rgba(23,16,12,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(194,154,99,.32);
  border-radius: 999px;
  box-shadow: 0 16px 40px -14px rgba(23,16,12,.7);
}
.lang {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  opacity: .5;
  transition: opacity .35s, background .35s, transform .4s var(--ease-out);
}
.lang:hover { opacity: .9; transform: translateY(-2px); }
.lang.is-active { opacity: 1; background: rgba(194,154,99,.16); }
.lang__flag {
  width: 26px; height: 26px; flex: none;
  border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(235,211,176,.45);
  display: grid; place-items: center;
}
.lang__flag svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.lang__code {
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  color: rgba(249,243,234,.75);
  transition: color .35s;
}
.lang.is-active .lang__code { color: var(--gold-300); }

/* ═══════════════ 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, #1C9433);
  color: var(--white); border-radius: 50%;
  box-shadow: 0 14px 36px -8px rgba(28,148,51,.55);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.whats:hover { transform: translateY(-5px) scale(1.06); box-shadow: 0 20px 44px -8px rgba(28,148,51,.7); }
.whats__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37,184,67,.7);
  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: 1150px) {
  .areas__grid { grid-template-columns: 1fr; }
  .spec__grid { grid-template-columns: repeat(2, 1fr); }
  .s-card { grid-column: span 1; }
  .nav { gap: 16px; }
}

@media (max-width: 1180px) {
  .nav {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; gap: 26px;
    background: linear-gradient(165deg, var(--brown-900), var(--brown-950));
    opacity: 0; visibility: hidden;
    transition: opacity .5s var(--ease-out), visibility 0s .5s;
    z-index: 105;
  }
  .nav.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
  .nav__link { font-size: 17px; opacity: 0; transform: translateY(20px); }
  .nav.is-open .nav__link { animation: riseIn .6s var(--ease-out) forwards; }
  .nav.is-open .nav__link:nth-child(1) { animation-delay: .08s; }
  .nav.is-open .nav__link:nth-child(2) { animation-delay: .14s; }
  .nav.is-open .nav__link:nth-child(3) { animation-delay: .2s; }
  .nav.is-open .nav__link:nth-child(4) { animation-delay: .26s; }
  .nav.is-open .nav__link:nth-child(5) { animation-delay: .32s; }
  .nav.is-open .nav__link:nth-child(6) { animation-delay: .38s; }
  .nav__cta { opacity: 0; transform: translateY(20px); }
  .nav.is-open .nav__cta { animation: riseIn .6s var(--ease-out) .46s forwards; }
  .header__burger { display: flex; }
}

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__portrait { order: -1; width: min(74%, 360px); }
  .hero__tag { left: auto; right: -4%; bottom: 12%; }
  .hero__photoBg { display: none; }
  .hero__content { text-align: center; }
  .hero__title, .hero__subtitle { max-width: none; margin-inline: auto; }
  .hero__actions, .hero__badges { justify-content: center; }
  .hero { padding-top: 140px; }
  .process__track { grid-template-columns: 1fr 1fr; gap: 34px 26px; }
  .process__track::before { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .about__card { right: 8px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 42px 20px; }
  .stats__item:nth-child(2)::after { display: none; }
  .section__head { flex-direction: column; align-items: flex-start; }
  .contact__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .modal__list { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero__badges { gap: 18px; }
  .hero__badge-sep { display: none; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
  .about__pillars { grid-template-columns: 1fr; }
  .spec__grid { grid-template-columns: 1fr; }
  .process__track { grid-template-columns: 1fr; }
  .stats__item::after { display: none !important; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
  .whats { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .langs { left: 12px; bottom: 16px; gap: 2px; padding: 4px; }
  .lang { padding: 5px 9px 5px 5px; gap: 5px; }
  .lang__flag { width: 22px; height: 22px; }
  .lang__code { font-size: 10px; letter-spacing: .1em; }
  .header__logo img { height: 72px; }
  .hero__tag { display: none; }
  .hero__portrait { width: min(82%, 320px); }
  .about__card { right: -6px; bottom: -16px; padding: 12px 18px; }
  .about__card strong { font-size: 26px; }
}

/* 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-hero], .hero__portrait { opacity: 1 !important; transform: none !important; }
}
