/* ═══════════════════════════════════════════════════════════
   HEIDI LOUISE — Advocacia & Consultoria Jurídica
   Vinho · Dourado · Off-white — luxo institucional
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Paleta */
  --wine-950: #2A070F;
  --wine-900: #3B0B16;
  --wine-800: #4A0F1B;
  --wine-700: #621424;
  --wine-600: #7A1A2E;
  --wine-100: #F4E3E7;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --paper: #F5F0EA;
  --ink: #38242B;
  --ink-soft: #6E5A61;

  --gold-300: #F2DE9E;
  --gold-400: #E4C56A;
  --gold-500: #C9952A;
  --gold-600: #A87A1E;
  --gold-grad: linear-gradient(115deg, #8F6716 0%, #C9952A 28%, #F2DE9C 50%, #C9952A 72%, #8F6716 100%);

  /* Tipografia */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --shadow-soft: 0 20px 60px -20px rgba(42, 7, 15, .22);
  --shadow-gold: 0 14px 40px -12px rgba(201, 149, 42, .45);

  /* 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; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -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; }
em { font-style: italic; }

::selection { background: var(--gold-500); color: var(--wine-950); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--wine-950); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-600), var(--gold-500)); border-radius: 5px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }

/* ═══════════════ BOTÕES ═══════════════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 3px;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), color .3s, border-color .3s;
  will-change: transform;
}
.btn--lg { padding: 17px 36px; font-size: 14px; }
.btn--block { width: 100%; }

.btn--gold {
  color: var(--wine-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,.65) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-luxe);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -12px rgba(201,149,42,.6); background-position: right center; }
.btn--gold:hover::after { transform: translateX(120%); }

.btn--ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-3px); }

/* ═══════════════ PRELOADER ═══════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: var(--wine-950);
  transition: opacity .5s ease .9s, visibility 0s 1.5s;
}
.preloader__inner { position: relative; z-index: 2; display: grid; place-items: center; gap: 22px; }
.preloader__monogram svg { width: 110px; height: 110px; }
.preloader__ring {
  stroke: var(--gold-500); stroke-width: 1.2; 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: 42px; fill: var(--gold-300);
  letter-spacing: .06em;
  opacity: 0; animation: fadeIn .8s ease .5s forwards;
}
.preloader__label {
  font-family: var(--font-body); font-size: 12px; letter-spacing: .42em;
  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: 20px 0;
  transition: padding .45s var(--ease-out), background .45s, box-shadow .45s;
}
.header::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: rgba(42, 7, 15, .93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,149,42,.3);
  opacity: 0;
  transition: opacity .45s;
}
.header.is-scrolled { padding: 10px 0; }
.header.is-scrolled::after { opacity: 1; }

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

.header__logo img {
  height: 130px; width: auto;
  transition: height .45s var(--ease-out);
}
.header.is-scrolled .header__logo img { height: 92px; }

.nav { display: flex; align-items: center; gap: 18px; }
.nav__link {
  position: relative;
  font-size: 12.5px; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,.85);
  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-400); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { margin-left: 8px; padding: 11px 18px; font-size: 11.5px; white-space: nowrap; }

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

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--wine-950);
  overflow: hidden;
  padding: 185px 0 90px;
}
.hero__bg { position: absolute; inset: 0; }
.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 85% 20%, rgba(122,26,46,.5) 0%, transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(74,15,27,.65) 0%, transparent 60%),
    linear-gradient(160deg, var(--wine-900) 0%, var(--wine-950) 55%, #1C0409 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(70% 70% at 60% 40%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 60% 40%, #000 20%, transparent 100%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero__glow--1 {
  width: 560px; height: 560px; top: -160px; right: -80px;
  background: radial-gradient(circle, rgba(201,149,42,.20), transparent 65%);
  animation: glowFloat 9s ease-in-out infinite alternate;
}
.hero__glow--2 {
  width: 420px; height: 420px; bottom: -140px; left: -60px;
  background: radial-gradient(circle, rgba(122,26,46,.85), transparent 65%);
  animation: glowFloat 11s ease-in-out infinite alternate-reverse;
}
@keyframes glowFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(-40px, 30px) scale(1.12); } }

.hero__grain {
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  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='.9' 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");
}

/* Imagem de fundo: estátua da justiça em opacidade */
.hero__image {
  position: absolute; inset: 0;
  background: url('../assets/bg1.jpg') center 24% / cover no-repeat;
  opacity: .26;
  mask-image: linear-gradient(100deg, transparent 2%, rgba(0,0,0,.55) 34%, #000 62%);
  -webkit-mask-image: linear-gradient(100deg, transparent 2%, rgba(0,0,0,.55) 34%, #000 62%);
}

/* Retrato da Heidi em arco, com anéis dourados */
.hero__portrait {
  position: absolute;
  right: clamp(24px, 8vw, 150px);
  bottom: 0;
  z-index: 2;
  height: min(78%, 650px);
  aspect-ratio: 0.68;
  opacity: 0;
  transform: translateY(60px);
}
.is-loaded .hero__portrait { animation: heroUp 1.3s var(--ease-out) 1.05s forwards; }
.hero__portrait img {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 42% 18%;
  border-radius: 400px 400px 0 0;
  border: 1px solid rgba(201,149,42,.45);
  border-bottom: none;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.65);
  filter: contrast(1.03);
}
.hero__portrait-arch {
  position: absolute; inset: 0; z-index: 1;
  border-radius: 400px 400px 0 0;
  border: 1px solid rgba(201,149,42,.5);
  border-bottom: none;
  transform: translate(-20px, -20px);
}
.hero__portrait-rings {
  position: absolute; z-index: 0;
  width: 135%;
  left: -17.5%;
  top: -14%;
  aspect-ratio: 1;
  pointer-events: none;
}
.hero__ring { stroke: rgba(201,149,42,.28); stroke-width: 1; stroke-dasharray: 3 9; }
.hero__ring--outer { animation: spin 90s linear infinite; transform-origin: center; }
.hero__ring--mid { stroke-dasharray: 2 6; animation: spin 70s linear infinite reverse; transform-origin: center; }
.hero__ring--inner { stroke: rgba(201,149,42,.16); stroke-dasharray: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero .container { width: 100%; }
.hero__content { position: relative; z-index: 3; }

/* animação de entrada orquestrada */
[data-hero] { opacity: 0; transform: translateY(34px); }
.is-loaded [data-hero] { animation: heroUp 1.1s var(--ease-out) forwards; }
.is-loaded [data-hero="1"] { animation-delay: 1.15s; }
.is-loaded [data-hero="2"] { animation-delay: 1.3s; }
.is-loaded [data-hero="3"] { animation-delay: 1.45s; }
.is-loaded [data-hero="4"] { animation-delay: 1.7s; }
.is-loaded [data-hero="5"] { animation-delay: 1.9s; }
.is-loaded [data-hero="6"] { animation-delay: 2.1s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

.hero__eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 28px;
}
.hero__eyebrow-line { width: 54px; height: 1px; background: var(--gold-grad); flex: none; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 30px;
  letter-spacing: .01em;
  max-width: 680px;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__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;
  animation: goldShine 5s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

.hero__subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 60px; }

.hero__badges { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero__badge { display: grid; gap: 2px; }
.hero__badge strong {
  font-family: var(--font-display); font-size: 24px; font-weight: 500;
  color: var(--gold-400); line-height: 1;
}
.hero__badge span {
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero__badge-sep { width: 1px; height: 38px; background: linear-gradient(transparent, rgba(201,149,42,.5), transparent); }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%;
  transform: translateX(-50%);
  display: grid; place-items: center; gap: 12px;
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(var(--gold-400), transparent);
  overflow: hidden; position: relative;
}
.hero__scroll-line::after {
  content: '';
  position: absolute; top: -52px; left: 0;
  width: 100%; height: 52px;
  background: linear-gradient(transparent, var(--white));
  animation: scrollDrop 2.2s var(--ease-luxe) infinite;
}
@keyframes scrollDrop { 60%, 100% { transform: translateY(104px); } }
.hero__scroll-text {
  font-size: 10.5px; letter-spacing: .4em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.hero__scroll:hover .hero__scroll-text { color: var(--gold-400); }

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  background: var(--white);
  border-bottom: 1px solid rgba(74,15,27,.08);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }
.marquee__track {
  display: flex; align-items: center; gap: 48px;
  width: max-content;
  animation: marquee 36s 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(--wine-700);
  white-space: nowrap;
  letter-spacing: .04em;
}
.marquee__track i { font-style: normal; color: var(--gold-500); font-size: 13px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════ SEÇÕES (base) ═══════════════ */
.section { padding: clamp(90px, 10vw, 140px) 0; }

.section__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 20px;
}
.section__eyebrow::before {
  content: '';
  width: 40px; height: 1px; background: var(--gold-grad);
}
.section__eyebrow--light { color: var(--gold-400); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(31px, 3.8vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--wine-800);
  letter-spacing: .01em;
}
.section__title em {
  font-style: italic;
  background: linear-gradient(115deg, #8F6716, #C9952A 45%, #A87A1E);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section__title--light { color: var(--white); }
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: clamp(48px, 6vw, 72px);
}
.section__lead {
  max-width: 340px; font-size: 15.5px; color: var(--ink-soft);
  padding-bottom: 6px;
  border-left: 2px solid var(--gold-500);
  padding-left: 20px;
}
.section__lead--light { color: rgba(255,255,255,.6); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal--left { transform: translateX(-54px); }
.reveal--right { transform: translateX(54px); }
.reveal.is-visible { opacity: 1; transform: translate(0, 0); }

/* ═══════════════ SOBRE ═══════════════ */
.about { background: var(--white); position: relative; }
.about::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 38%; height: 100%;
  background: linear-gradient(180deg, var(--off-white), transparent 70%);
  pointer-events: none;
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(320px, 460px) 1fr;
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
  position: relative;
}

.about__frame { position: relative; }
.about__photo {
  position: relative; z-index: 2;
  aspect-ratio: 4 / 5;
  background: linear-gradient(165deg, var(--wine-700), var(--wine-950));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.about__frame-border {
  position: absolute; inset: 0; z-index: 1;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius);
  transform: translate(22px, 22px);
  transition: transform .7s var(--ease-out);
}
.about__frame:hover .about__frame-border { transform: translate(14px, 14px); }
.about__frame-card {
  position: absolute; z-index: 3;
  right: -26px; bottom: 38px;
  display: grid; gap: 2px;
  background: var(--white);
  border: 1px solid rgba(201,149,42,.35);
  border-radius: 10px;
  padding: 20px 26px;
  box-shadow: var(--shadow-soft);
}
.about__frame-card-num {
  font-family: var(--font-display); font-size: 34px; font-weight: 500; line-height: 1;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about__frame-card-label {
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft);
}

.about__body .section__title { margin-bottom: 30px; }
.about__text p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; }
.about__text strong { color: var(--wine-800); font-weight: 500; }

.about__points { margin: 30px 0 36px; display: grid; gap: 13px; }
.about__points li {
  display: flex; align-items: baseline; gap: 13px;
  font-size: 15.5px; color: var(--ink);
}
.about__point-icon { color: var(--gold-500); font-size: 12px; }

.about__signature {
  display: grid; gap: 3px;
  padding-top: 26px;
  border-top: 1px solid rgba(74,15,27,.1);
}
.about__signature-name {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 500;
  color: var(--wine-800);
}
.about__signature-role {
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-600);
}

/* ═══════════════ NÚMEROS ═══════════════ */
.stats {
  position: relative;
  background: var(--wine-950);
  padding: clamp(64px, 7vw, 96px) 0;
  overflow: hidden;
}
.stats__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(45% 90% at 50% 0%, rgba(201,149,42,.1), transparent 70%),
    linear-gradient(120deg, rgba(59,11,22,.9), rgba(42,7,15,.92)),
    url('../assets/bg2.webp') center / cover no-repeat;
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.stats__item {
  text-align: center;
  padding: 8px 18px;
  position: relative;
}
.stats__item:not(:last-child)::after {
  content: '';
  position: absolute; right: -17px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 64px;
  background: linear-gradient(transparent, rgba(201,149,42,.45), transparent);
}
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: goldShine 6s linear infinite;
}
.stats__label {
  font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* ═══════════════ ÁREAS DE ATUAÇÃO ═══════════════ */
.practice { background: var(--off-white); position: relative; }
.practice::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(74,15,27,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
  pointer-events: none;
}

.practice__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.p-card {
  position: relative;
  text-align: left;
  background: var(--white);
  border: 1px solid rgba(74,15,27,.08);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .4s;
  display: flex; flex-direction: column; gap: 0;
}
.p-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);
}
.p-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 0%, rgba(201,149,42,.06), transparent 55%);
  opacity: 0; transition: opacity .5s;
}
.p-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(201,149,42,.4);
}
.p-card:hover::before { transform: scaleX(1); }
.p-card:hover::after { opacity: 1; }

.p-card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border: 1px solid rgba(201,149,42,.4);
  border-radius: 50%;
  color: var(--gold-600);
  margin-bottom: 22px;
  position: relative; z-index: 1;
  transition: background .5s, color .5s, transform .5s var(--ease-out), box-shadow .5s;
}
.p-card__icon svg { width: 26px; height: 26px; }
.p-card:hover .p-card__icon {
  background: var(--wine-800);
  color: var(--gold-400);
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 10px 26px -8px rgba(42,7,15,.45);
}

.p-card__title {
  font-family: var(--font-display);
  font-size: 23px; font-weight: 600;
  color: var(--wine-800);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.p-card__excerpt {
  font-size: 14.5px; color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 22px;
  position: relative; z-index: 1;
  flex: 1;
}
.p-card__more {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-600);
  position: relative; z-index: 1;
}
.p-card__more svg { width: 16px; height: 16px; transition: transform .4s var(--ease-out); }
.p-card:hover .p-card__more svg { transform: translateX(6px); }

/* ═══════════════ COMO FUNCIONA ═══════════════ */
.process {
  position: relative;
  background: var(--wine-950);
  padding: clamp(90px, 10vw, 140px) 0;
  overflow: hidden;
}
.process__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 70% at 90% 10%, rgba(122,26,46,.55) 0%, transparent 60%),
    radial-gradient(45% 60% at 5% 100%, rgba(201,149,42,.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--wine-950), var(--wine-900));
}
.process .container { position: relative; }

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.process__step {
  position: relative;
  padding: 42px 32px 46px;
  background: rgba(255,255,255,.03);
  transition: background .4s, transform .55s var(--ease-out),
              opacity 1s var(--ease-out);
}
.process__step:not(:last-child) { border-right: 1px solid rgba(255,255,255,.07); }
.process__step:hover { background: rgba(201,149,42,.07); }
.process__num {
  display: block;
  font-family: var(--font-display);
  font-size: 68px; font-weight: 600;
  line-height: 1;
  color: rgba(201,149,42,.22);
  margin-bottom: 18px;
  transition: color .4s;
}
.process__step:hover .process__num { color: rgba(201,149,42,.55); }
.process__line {
  display: block;
  width: 34px; height: 2px;
  background: var(--gold-grad);
  margin-bottom: 22px;
  transition: width .5s var(--ease-luxe);
}
.process__step:hover .process__line { width: 58px; }
.process__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.process__text { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; }

/* ═══════════════ FILOSOFIA / CITAÇÃO ═══════════════ */
.quote-band {
  background: var(--white);
  padding: clamp(80px, 9vw, 120px) 0 0;
  overflow: hidden;
}
.quote-band__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}
.quote-band__body { padding-bottom: clamp(80px, 9vw, 120px); }
.quote-band__ornament {
  display: inline-block;
  color: var(--gold-500); font-size: 18px;
  margin-bottom: 24px;
  animation: spin 14s linear infinite;
}
.quote-band__quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--wine-800);
  margin-bottom: 24px;
}
.quote-band__quote em {
  font-style: italic;
  background: linear-gradient(115deg, #8F6716, #C9952A 45%, #A87A1E);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.quote-band__text {
  font-size: 16px; color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 34px;
}
.quote-band__signature { display: grid; gap: 3px; }
.quote-band__name {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 500;
  color: var(--wine-800);
}
.quote-band__role {
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-600);
}
.quote-band__media {
  position: relative; align-self: end;
  width: 100%; max-width: 420px;
  margin-inline: auto;
  aspect-ratio: 0.68;
}
.quote-band__media img {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 40%;
  border-radius: 400px 400px 0 0;
  border: 1px solid rgba(201,149,42,.45);
  border-bottom: none;
  box-shadow: 0 30px 80px -30px rgba(42,7,15,.28);
  filter: contrast(1.02);
}
.quote-band__arch {
  position: absolute; inset: 0; z-index: 1;
  border-radius: 400px 400px 0 0;
  border: 1px solid rgba(201,149,42,.5);
  border-bottom: none;
  transform: translate(-18px, -18px);
  pointer-events: none;
}
.quote-band__rings {
  position: absolute; z-index: 0;
  width: 135%;
  left: -17.5%;
  top: -14%;
  aspect-ratio: 1;
  pointer-events: none;
}

/* ═══════════════ DEPOIMENTOS ═══════════════ */
.reviews { background: var(--off-white); overflow: hidden; }
.reviews .section__head { margin-bottom: clamp(40px, 5vw, 60px); align-items: center; }

.reviews__summary {
  display: flex; align-items: center; gap: 18px;
  border: 1px solid rgba(74,15,27,.1);
  border-radius: 14px;
  padding: 18px 26px;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}
.reviews__glogo { width: 42px; height: 42px; flex: none; }
.reviews__score { display: grid; gap: 3px; }
.reviews__score strong {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 500; line-height: 1;
  color: var(--wine-800);
}
.reviews__stars { display: inline-flex; gap: 3px; }
.reviews__stars svg { width: 16px; height: 16px; fill: #F5B01E; }
.reviews__based {
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
}

.reviews__slider {
  position: relative;
  overflow: hidden;
}
.reviews__slider::before, .reviews__slider::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: clamp(40px, 10vw, 180px); z-index: 2;
  pointer-events: none;
}
.reviews__slider::before { left: 0; background: linear-gradient(90deg, var(--off-white), transparent); }
.reviews__slider::after { right: 0; background: linear-gradient(-90deg, var(--off-white), transparent); }

.reviews__track {
  display: flex; gap: 24px;
  width: max-content;
  padding: 10px 0 26px;
  animation: reviewsScroll 55s linear infinite;
}
.reviews__slider:hover .reviews__track { animation-play-state: paused; }
@keyframes reviewsScroll { to { transform: translateX(calc(-50% - 12px)); } }

.review-card {
  width: min(400px, 84vw);
  flex: none;
  background: var(--white);
  border: 1px solid rgba(74,15,27,.1);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: 0 10px 34px -18px rgba(42,7,15,.22);
  transition: transform .5s var(--ease-out), border-color .4s, box-shadow .5s;
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,149,42,.45);
  box-shadow: var(--shadow-soft);
}
.review-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-card__avatar {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-body); font-size: 19px; font-weight: 500;
  background: linear-gradient(150deg, var(--wine-600), var(--wine-900));
  border: 1px solid rgba(201,149,42,.4);
}
.review-card__id { display: grid; gap: 1px; flex: 1; min-width: 0; }
.review-card__id strong {
  font-size: 15.5px; font-weight: 500; color: var(--wine-800);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.review-card__id span { font-size: 12.5px; color: var(--ink-soft); }
.review-card__stars { display: inline-flex; gap: 3px; margin-bottom: 12px; }
.review-card__stars svg { width: 15px; height: 15px; fill: #F5B01E; }
.review-card__text { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; }

/* ═══════════════ CTA ═══════════════ */
.cta {
  position: relative;
  background: var(--wine-950);
  padding: clamp(90px, 10vw, 130px) 0;
  overflow: hidden;
  text-align: center;
}
.cta__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 100% at 50% 50%, rgba(42,7,15,.55) 0%, rgba(42,7,15,.94) 100%),
    linear-gradient(180deg, rgba(42,7,15,.82), rgba(42,7,15,.78)),
    url('../assets/bg3.jpg') center 30% / cover no-repeat;
}
.cta__glow {
  position: absolute; left: 50%; top: 50%;
  width: 900px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(201,149,42,.13), transparent 70%);
  animation: glowFloat 8s ease-in-out infinite alternate;
}
.cta__inner { position: relative; max-width: 760px; }
.cta__ornament {
  color: var(--gold-500); font-size: 20px; margin-bottom: 26px;
  animation: spin 14s linear infinite; display: inline-block;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 50px);
  font-weight: 500; line-height: 1.2;
  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: goldShine 5s linear infinite;
}
.cta__text { color: rgba(255,255,255,.68); font-size: 16.5px; max-width: 560px; margin: 0 auto 40px; }
.cta__actions { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

/* ═══════════════ CONTATO ═══════════════ */
.contact { background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 480px);
  gap: clamp(48px, 6vw, 90px);
  align-items: start;
}
.contact__lead { color: var(--ink-soft); font-size: 16px; margin: 22px 0 40px; max-width: 480px; }

.contact__list { display: grid; gap: 26px; }
.contact__list li { display: flex; gap: 20px; align-items: flex-start; }
.contact__icon {
  flex: none;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1px solid rgba(201,149,42,.4);
  border-radius: 50%;
  color: var(--gold-600);
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__list strong {
  display: block;
  font-size: 12px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--wine-800);
  margin-bottom: 5px;
}
.contact__list a, .contact__list div > span {
  display: block;
  font-size: 16px; color: var(--ink-soft);
  transition: color .3s;
}
.contact__list a:hover { color: var(--gold-600); }

/* Formulário */
.contact__form {
  background: linear-gradient(170deg, var(--wine-800), var(--wine-950));
  border: 1px solid rgba(201,149,42,.25);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 46px);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.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(--white);
  margin-bottom: 8px;
}
.contact__form > p { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 30px; }

.form__field { position: relative; margin-bottom: 20px; }
.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  font-family: var(--font-body); font-size: 15px; font-weight: 300;
  color: var(--white);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  padding: 15px 16px;
  outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
  resize: vertical;
}
.form__field select { appearance: none; cursor: pointer; }
.form__field select option { background: var(--wine-900); color: var(--white); }
.form__field label {
  position: absolute; left: 16px; top: 15px;
  font-size: 15px; color: rgba(255,255,255,.5);
  pointer-events: none;
  transition: all .3s var(--ease-out);
}
.form__field input:focus, .form__field textarea:focus, .form__field select:focus {
  border-color: var(--gold-500);
  background: rgba(201,149,42,.06);
  box-shadow: 0 0 0 3px rgba(201,149,42,.12);
}
.form__field input:focus ~ label,
.form__field input:not(:placeholder-shown) ~ label,
.form__field textarea:focus ~ label,
.form__field textarea:not(:placeholder-shown) ~ label {
  top: -9px; left: 12px;
  font-size: 11px; letter-spacing: .08em;
  color: var(--gold-400);
  background: var(--wine-900);
  padding: 0 7px;
  border-radius: 3px;
}
.form__note {
  display: block; text-align: center;
  margin-top: 18px;
  font-size: 12px; letter-spacing: .06em;
  color: rgba(255,255,255,.45);
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--wine-950);
  color: rgba(255,255,255,.65);
  padding: clamp(64px, 7vw, 90px) 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,149,42,.6), transparent);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(34px, 4vw, 60px);
  padding-bottom: 56px;
}
.footer__logo { height: 130px; width: auto; margin-bottom: 22px; }
.footer__brand p { font-size: 14.5px; line-height: 1.8; max-width: 340px; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 14.5px;
  padding: 5px 0;
  color: rgba(255,255,255,.65);
  transition: color .3s, transform .3s var(--ease-out);
}
.footer__col a:hover { color: var(--gold-300); transform: translateX(5px); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.footer__oab { letter-spacing: .14em; text-transform: uppercase; font-size: 11.5px; }

/* ═══════════════ 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(42,7,15,.72);
  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(--white);
  border-radius: 18px;
  padding: clamp(30px, 4.5vw, 52px);
  box-shadow: 0 40px 120px -20px rgba(42,7,15,.6);
  opacity: 0;
  transform: translateY(46px) 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: 18px 18px 0 0;
}
.modal__panel::-webkit-scrollbar { width: 6px; }
.modal__panel::-webkit-scrollbar-track { background: transparent; }
.modal__panel::-webkit-scrollbar-thumb { background: rgba(201,149,42,.5); }

.modal__close {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid rgba(74,15,27,.12);
  border-radius: 50%;
  color: var(--wine-800);
  transition: all .35s var(--ease-out);
  z-index: 2;
}
.modal__close svg { width: 18px; height: 18px; }
.modal__close:hover { background: var(--wine-800); color: var(--gold-400); border-color: var(--wine-800); transform: rotate(90deg); }

.modal__head { display: flex; gap: 22px; align-items: center; margin-bottom: 24px; padding-right: 50px; }
.modal__icon {
  flex: none;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  background: var(--wine-800);
  border-radius: 50%;
  color: var(--gold-400);
  box-shadow: 0 12px 30px -10px rgba(42,7,15,.5);
}
.modal__icon svg { width: 30px; height: 30px; }
.modal__eyebrow {
  display: block;
  font-size: 11px; 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(25px, 3vw, 34px);
  font-weight: 600;
  color: var(--wine-800);
  line-height: 1.15;
}
.modal__desc { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 28px; }
.modal__list-title {
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--wine-800);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.modal__list-title::after { content: ''; flex: 1; height: 1px; background: rgba(74,15,27,.1); }
.modal__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-bottom: 34px; }
.modal__list li {
  display: flex; gap: 11px; align-items: baseline;
  font-size: 14.5px; color: var(--ink);
  opacity: 0; transform: translateY(14px);
}
.modal.is-open .modal__list li { animation: heroUp .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; }

.modal__page-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  margin-top: 14px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-600);
  transition: color .3s;
}
.modal__page-link svg { width: 16px; height: 16px; transition: transform .4s var(--ease-out); }
.modal__page-link:hover { color: var(--wine-700); }
.modal__page-link:hover svg { transform: translateX(6px); }

/* ═══════════════ WHATSAPP FLUTUANTE ═══════════════ */
.whats-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 400;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #23B33A, #1E9E33);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 36px -8px rgba(30,158,51,.55);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.whats-float:hover { transform: translateY(-5px) scale(1.06); box-shadow: 0 20px 44px -8px rgba(30,158,51,.65); }
.whats-float__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(35,179,58,.7);
  animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ═══════════════ RESPONSIVO ═══════════════ */
@media (max-width: 1180px) {
  .hero__portrait { height: min(72%, 560px); right: clamp(12px, 4vw, 60px); }
  .hero__content { max-width: 560px; }
}

@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .process__step:nth-child(2) { border-right: none; }
  .process__step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.07); }
}

@media (max-width: 1000px) {
  .hero__portrait { display: none; }
  .hero__image { mask-image: none; -webkit-mask-image: none; opacity: .16; }
  .hero__content { max-width: 680px; }
}

@media (max-width: 1250px) {
  .nav {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center;
    gap: 28px;
    background: linear-gradient(165deg, var(--wine-900), var(--wine-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; color: rgba(255,255,255,.85) !important; opacity: 0; transform: translateY(20px); }
  .nav.is-open .nav__link { animation: heroUp .6s var(--ease-out) forwards; }
  .nav.is-open .nav__link:nth-child(1) { animation-delay: .1s; }
  .nav.is-open .nav__link:nth-child(2) { animation-delay: .16s; }
  .nav.is-open .nav__link:nth-child(3) { animation-delay: .22s; }
  .nav.is-open .nav__link:nth-child(4) { animation-delay: .28s; }
  .nav.is-open .nav__link:nth-child(5) { animation-delay: .34s; }
  .nav.is-open .nav__link:nth-child(6) { animation-delay: .4s; }
  .nav__cta { margin: 10px 0 0; opacity: 0; transform: translateY(20px); }
  .nav.is-open .nav__cta { animation: heroUp .6s var(--ease-out) .48s forwards; }
  .header__burger { display: flex; }
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; }
  .about__frame-card { right: 10px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 44px 20px; }
  .stats__item:nth-child(2)::after { display: none; }
  .section__head { flex-direction: column; align-items: flex-start; }
  .contact__grid { grid-template-columns: 1fr; }
  .modal__list { grid-template-columns: 1fr; }

  .quote-band__grid { grid-template-columns: 1fr; }
  .quote-band__body { padding-bottom: 0; }
  .quote-band__media { margin-top: 30px; }
}

@media (max-width: 640px) {
  .process__grid { grid-template-columns: 1fr; }
  .process__step { border-right: none !important; }
  .process__step:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.07); }
}

@media (max-width: 560px) {
  .hero { padding-top: 165px; }
  .hero__badges { gap: 18px; }
  .hero__badge-sep { display: none; }
  .hero__actions .btn { width: 100%; }
  .cta__actions .btn { width: 100%; }
  .stats__item::after { display: none !important; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
  .whats-float { right: 18px; bottom: 18px; width: 54px; height: 54px; }
  .about__frame-card { padding: 14px 18px; bottom: 20px; }
  .about__frame-card-num { font-size: 26px; }
  .header__logo img { height: 96px; }
}

/* Acessibilidade: reduz movimento */
@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] { opacity: 1 !important; transform: none !important; }
}
