/* =========================================================
   Studio Sara Dimas — identidade visual
   Preto quente · dourado champagne · Bodoni Moda + Jost
   ========================================================= */

:root {
  --ink: #0C0A09;
  --ink-2: #14110F;
  --ink-3: #1D1814;
  --ivory: #F4EFE7;
  --ivory-2: #D9D1C5;
  --sand: #A69B8C;
  --gold: #C8A567;
  --gold-2: #E8D5A3;
  --gold-3: #8E6F3B;
  --gold-dim: rgba(200, 165, 103, 0.22);
  --line: rgba(244, 239, 231, 0.10);
  --line-strong: rgba(244, 239, 231, 0.18);

  --font-display: "Bodoni Moda", "Didot", "Bodoni 72", "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Futura", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, dl, dd, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.skip {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--gold); color: var(--ink); padding: 8px 14px; border-radius: var(--radius);
}
.skip:focus { left: 8px; }

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.eyebrow__rule { display: inline-block; width: 34px; height: 1px; background: var(--gold); opacity: 0.8; }
.eyebrow--center { justify-content: center; }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin-top: 18px;
}
.section__title em, .hero__title em, .cta__title em {
  font-style: italic;
  color: var(--gold-2);
}
.section__lead {
  margin-top: 18px; max-width: 58ch; color: var(--ivory-2); font-size: 18px;
}
.muted { color: var(--sand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.35s;
  white-space: nowrap;
}
.btn--gold {
  color: var(--ink);
  background: linear-gradient(120deg, var(--gold-2) 0%, var(--gold) 55%, #B8934F 100%);
  box-shadow: 0 10px 30px -12px rgba(200, 165, 103, 0.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(200, 165, 103, 0.7); }
.btn--ghost {
  color: var(--ivory);
  border-color: var(--line-strong);
  background: rgba(244, 239, 231, 0.02);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn--sm { padding: 11px 20px; font-size: 12px; }
.btn--lg { padding: 18px 36px; font-size: 14px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-2); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  border-bottom: 1px solid var(--gold-dim); padding-bottom: 4px;
  transition: border-color 0.3s, gap 0.3s;
}
.link-arrow::after { content: "→"; font-family: var(--font-display); font-size: 18px; line-height: 1; }
.link-arrow:hover { border-color: var(--gold); gap: 16px; }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mono {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--gold);
  font-family: var(--font-display); font-style: italic; font-size: 18px; line-height: 1;
  color: var(--gold-2); letter-spacing: -0.04em;
  background: radial-gradient(circle at 30% 20%, rgba(232, 213, 163, 0.14), transparent 60%);
}
.brand__mono--lg { width: 56px; height: 56px; font-size: 25px; }
.brand__name {
  font-family: var(--font-display); font-size: 17px; letter-spacing: 0.02em; line-height: 1;
  color: var(--ivory);
}
.brand__name span { font-style: italic; color: var(--gold-2); }
.brand__logo { width: 84px; height: 84px; object-fit: cover; object-position: center 46%; transition: width 0.4s, height 0.4s; }
.nav--solid .brand__logo { width: 64px; height: 64px; }
.brand__logo-mobile { display: none; }
.mono-img { width: 30px; height: auto; flex: none; opacity: 0.95; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding-block: 10px;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav--solid {
  background: rgba(12, 10, 9, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: 6px;
}
.nav__inner {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
  display: flex; align-items: center; gap: 28px;
}
.nav__links { display: flex; gap: 32px; margin-left: auto; }
.nav__links a {
  position: relative;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400;
  color: var(--ivory-2); padding-block: 6px;
  transition: color 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ivory); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex; align-items: center;
  padding-block: 140px 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__ambient { position: absolute; inset: 0; z-index: -2; }
.hero__ambient video {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(18px) saturate(0.7) brightness(0.55);
  transform: scale(1.12);
}
.hero__ambient::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 15% 40%, rgba(12, 10, 9, 0.35), rgba(12, 10, 9, 0.92) 70%),
    linear-gradient(180deg, rgba(12, 10, 9, 0.55) 0%, rgba(12, 10, 9, 0.35) 45%, var(--ink) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.35; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.hero__eyebrow { animation: rise 0.9s var(--ease) both; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin-top: 26px;
  animation: rise 1s var(--ease) 0.1s both;
}
.hero__lead {
  margin-top: 28px; max-width: 52ch; font-size: clamp(17px, 1.4vw, 20px); color: var(--ivory-2);
  animation: rise 1s var(--ease) 0.2s both;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px;
  animation: rise 1s var(--ease) 0.3s both;
}
.hero__proof {
  display: flex; flex-wrap: wrap; gap: 0 36px; margin-top: 52px;
  border-top: 1px solid var(--line); padding-top: 26px;
  animation: rise 1s var(--ease) 0.4s both;
}
.hero__proof li { display: flex; flex-direction: column; gap: 2px; padding-block: 6px; }
.hero__proof strong {
  font-family: var(--font-display); font-weight: 400; font-size: 30px; line-height: 1; color: var(--gold-2);
  font-variant-numeric: tabular-nums;
}
.hero__proof span { font-size: 13px; letter-spacing: 0.06em; color: var(--sand); }

.hero__portrait { position: relative; margin: 0; animation: rise 1.2s var(--ease) 0.25s both; }
.hero__frame {
  position: relative;
  aspect-ratio: 9 / 13;
  max-height: 640px;
  margin-left: auto;
  width: 100%;
  overflow: hidden;
  border-radius: 200px 200px 6px 6px;
  border: 1px solid rgba(200, 165, 103, 0.35);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}
.hero__frame::before {
  content: ""; position: absolute; inset: 10px; z-index: 2; pointer-events: none;
  border: 1px solid rgba(232, 213, 163, 0.25);
  border-radius: 190px 190px 4px 4px;
}
.hero__frame video { width: 100%; height: 100%; object-fit: cover; }
.hero__caption {
  display: flex; align-items: center; gap: 14px;
  margin-top: 18px; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand);
}
.hero__caption .brand__mono { width: 34px; height: 34px; font-size: 15px; flex: none; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 22px; height: 36px; border: 1px solid var(--line-strong); border-radius: 12px;
  display: grid; place-items: start center; padding-top: 6px;
}
.hero__scroll span { width: 2px; height: 8px; background: var(--gold); border-radius: 2px; animation: drop 1.8s ease-in-out infinite; }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drop {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%      { transform: translateY(12px); opacity: 0.2; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 18px;
  overflow: hidden;
  background: var(--ink-2);
}
.marquee__track {
  display: flex; gap: 40px; width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display); font-size: 22px; letter-spacing: 0.06em; color: var(--ivory-2);
}
.marquee__track span { white-space: nowrap; }
.marquee__track i { font-style: normal; color: var(--gold); font-size: 14px; align-self: center; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(80px, 10vw, 140px); }
.section__head { max-width: 780px; }
.section__head--split {
  max-width: none;
  display: flex; justify-content: space-between; align-items: end; gap: 40px; flex-wrap: wrap;
}

/* ---------- Serviços ---------- */
.services {
  margin-top: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.service:hover { transform: translateY(-6px); border-color: rgba(200, 165, 103, 0.45); }
.service__media { position: relative; aspect-ratio: 9 / 14; overflow: hidden; background: var(--ink-3); }
.service__media video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
  filter: saturate(0.85) brightness(0.92);
}
.service:hover .service__media video { transform: scale(1.04); filter: saturate(1) brightness(1); }
.service__media::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(180deg, transparent, rgba(12, 10, 9, 0.85));
  pointer-events: none;
}
.service__body { padding: 22px 22px 26px; margin-top: -54px; position: relative; z-index: 1; }
.service__body h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 26px; line-height: 1.1; letter-spacing: 0.01em;
}
.service__body p { margin-top: 10px; font-size: 15px; color: var(--ivory-2); line-height: 1.55; }

.service--text {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(200, 165, 103, 0.16), transparent 55%),
    var(--ink-3);
  border-color: rgba(200, 165, 103, 0.28);
}
.service__body--full { margin-top: 0; padding: 30px 26px; display: flex; flex-direction: column; height: 100%; }
.service__mono { width: 56px; height: auto; opacity: 0.95; margin-bottom: 26px; }
.service__list { margin-top: 20px; display: grid; gap: 8px; margin-bottom: 26px; }
.service__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; letter-spacing: 0.04em; color: var(--ivory-2);
}
.service__list li::before { content: ""; width: 14px; height: 1px; background: var(--gold); flex: none; }
.service--text .link-arrow { margin-top: auto; align-self: flex-start; }

/* ---------- Sobre ---------- */
.section--sobre {
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 18%, var(--ink-2) 82%, var(--ink) 100%);
  border-block: 1px solid var(--line);
}
.sobre {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
.sobre__gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  aspect-ratio: 1 / 1.08;
}
.sobre__photo {
  overflow: hidden; border: 1px solid rgba(200, 165, 103, 0.25);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
  background: var(--ink-3);
}
.sobre__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); transition: transform 1s var(--ease), filter 0.6s; }
.sobre__photo:hover img { transform: scale(1.03); filter: saturate(1); }
.sobre__photo--1 { grid-column: 1 / 8;  grid-row: 1 / 9;  z-index: 1; }
.sobre__photo--2 { grid-column: 6 / 13; grid-row: 3 / 11; z-index: 2; border-radius: 160px 160px 4px 4px; }
.sobre__photo--3 { grid-column: 2 / 8;  grid-row: 8 / 13; z-index: 3; }
.sobre__seal {
  position: absolute; right: 0; bottom: 6%; z-index: 4;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.sobre__role { margin-top: 14px; font-size: 16px; letter-spacing: 0.04em; color: var(--sand); }
.sobre__quote {
  margin-top: 34px;
  font-family: var(--font-display); font-style: italic; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.25;
  color: var(--gold-2);
  padding-left: 22px; border-left: 1px solid var(--gold);
  text-wrap: balance;
}
.sobre__text { margin-top: 30px; display: grid; gap: 16px; max-width: 60ch; color: var(--ivory-2); }
.sobre__text em { color: var(--ivory); font-style: italic; }
.sobre__actions { margin-top: 34px; }

/* ---------- Avaliações ---------- */
.rating {
  display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: center;
  padding: 18px 22px; border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--ink-2);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.rating:hover { border-color: var(--gold); transform: translateY(-2px); }
.rating__num {
  grid-row: 1 / 3;
  font-family: var(--font-display); font-size: 48px; line-height: 1; color: var(--gold-2); font-variant-numeric: tabular-nums;
}
.rating__stars { color: var(--gold); letter-spacing: 0.12em; font-size: 15px; line-height: 1; }
.rating__meta { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand); margin-top: 4px; }

.reviews {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.review {
  display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
  padding: 30px 28px;
  background: var(--ink-2); border: 1px solid var(--line);
  transition: border-color 0.4s, transform 0.5s var(--ease);
}
.review:hover { border-color: rgba(200, 165, 103, 0.4); transform: translateY(-4px); }
.review blockquote { position: relative; font-size: 16.5px; line-height: 1.6; color: var(--ivory-2); padding-top: 30px; }
.review blockquote::before {
  content: "“"; position: absolute; top: -6px; left: -4px;
  font-family: var(--font-display); font-size: 68px; line-height: 1; color: var(--gold); opacity: 0.7;
}
.review figcaption { display: flex; align-items: center; gap: 14px; }
.review figcaption > span:last-child { display: flex; flex-direction: column; }
.review figcaption strong { font-weight: 500; font-size: 14.5px; letter-spacing: 0.02em; }
.review figcaption small { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-top: 2px; }
.review__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--gold-2);
  border: 1px solid var(--gold-dim); background: var(--ink-3);
}

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  padding-block: clamp(90px, 12vw, 160px);
  text-align: center;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(200, 165, 103, 0.18), transparent 70%),
    var(--ink-2);
}
.cta::before {
  content: "";
  background: url("/media/monograma.png") center / contain no-repeat; opacity: 0.07;
  width: clamp(240px, 36vw, 480px); height: clamp(300px, 45vw, 600px); position: absolute; left: 50%; top: 50%; transform: translate(-50%, -52%);
  pointer-events: none;
}
.cta__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.cta__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6vw, 80px); line-height: 1; letter-spacing: -0.01em; margin-top: 22px; text-wrap: balance;
}
.cta__lead { margin-top: 22px; max-width: 48ch; color: var(--ivory-2); font-size: 18px; }
.cta .btn { margin-top: 38px; }

/* ---------- Contato ---------- */
.contato {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.contato__list { margin-top: 40px; display: grid; gap: 26px; }
.contato__list dt { font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contato__list dd { font-size: 18px; line-height: 1.5; }
.contato__list dd a { border-bottom: 1px solid var(--gold-dim); transition: border-color 0.3s, color 0.3s; }
.contato__list dd a:hover { color: var(--gold-2); border-color: var(--gold); }
.contato__list .dot { color: var(--sand); margin-inline: 8px; }
.contato .link-arrow { margin-top: 36px; }
.contato__map {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9);
}
.contato__map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.95) brightness(0.9) sepia(0.25);
}
.contato__map::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(200, 165, 103, 0.18), inset 0 0 80px rgba(12, 10, 9, 0.5);
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--ink); }
.footer__inner {
  display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: center;
  padding-block: 56px 40px;
}
.footer__brand { display: flex; align-items: center; gap: 22px; }
.footer__logo { width: 120px; height: 120px; object-fit: cover; object-position: center 46%; flex: none; }
.footer__tagline { font-family: var(--font-display); font-style: italic; font-size: 17px; line-height: 1.35; color: var(--ivory-2); }
.footer__links { display: flex; gap: 26px; }
.footer__links a { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); transition: color 0.3s; }
.footer__links a:hover { color: var(--gold-2); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--ivory-2);
  transition: border-color 0.3s, color 0.3s, transform 0.4s var(--ease);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.footer__legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-block: 18px 28px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--sand); letter-spacing: 0.04em;
}

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 34px -10px rgba(200, 165, 103, 0.7);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.whats-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 20px 40px -10px rgba(200, 165, 103, 0.9); }
.whats-float::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(200, 165, 103, 0.5);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 1080px) {
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero { min-height: 0; padding-block: 112px 60px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__portrait { max-width: 320px; margin-inline: auto; width: 100%; }
  .hero__frame { max-height: 440px; }
  .hero__caption { justify-content: center; }
  .hero__title { font-size: clamp(42px, 11vw, 68px); margin-top: 18px; }
  .hero__lead { margin-top: 20px; }
  .hero__actions { margin-top: 28px; }
  .hero__proof { margin-top: 36px; }
  .hero__scroll { display: none; }

  .sobre { grid-template-columns: 1fr; }
  .sobre__gallery { max-width: 520px; margin-inline: auto; width: 100%; }

  .contato { grid-template-columns: 1fr; }
  .contato__map { aspect-ratio: 4 / 3.2; }

  .footer__inner { grid-template-columns: 1fr; gap: 26px; padding-block: 44px 30px; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; align-items: center; gap: 30px;
    background: rgba(12, 10, 9, 0.96);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none; transition: opacity 0.35s;
  }
  .nav__links a { font-family: var(--font-display); font-size: 30px; text-transform: none; letter-spacing: 0; }
  .menu-open .nav__links { opacity: 1; pointer-events: auto; }
  .menu-open .nav { background: rgba(12, 10, 9, 0.96); }
  .menu-open { overflow: hidden; }
  .nav__cta { margin-left: auto; }
  .nav__toggle {
    display: grid; gap: 6px; width: 40px; height: 40px; place-content: center;
    border: 1px solid var(--line-strong); border-radius: 50%;
  }
  .nav__toggle span { display: block; width: 18px; height: 1px; background: var(--ivory); transition: transform 0.3s, opacity 0.3s; }
  .menu-open .nav__toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .nav__toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .brand__name { display: none; }
  .brand__logo { display: none; }
  .brand__logo-mobile { display: block; width: 34px; height: auto; }
  .nav { padding-block: 12px; }
  .nav--solid { padding-block: 8px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .services, .reviews { grid-template-columns: 1fr; }
  .service__media { aspect-ratio: 4 / 3.4; }
  .service__media video { object-position: center 30%; }
  .service__body { padding: 18px 20px 22px; }
  .service__body--full { padding: 26px 22px; }
  .service__mono { width: 44px; margin-bottom: 18px; }
  .section { padding-block: 64px; }
  .sobre__gallery { aspect-ratio: 1 / 1; }
  .sobre__quote { font-size: 21px; }
  .review { padding: 24px 20px; }
  .contato__map { aspect-ratio: 1 / 1; }
  .hero__proof { gap: 10px 26px; }
  .hero__proof strong { font-size: 24px; }
  .hero__actions .btn { width: 100%; }
  .section__head--split .rating { width: 100%; }
  .whats-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .footer__links { flex-wrap: wrap; gap: 14px 22px; }
}
