/* Moura & Prado Advogados — site fictício de demonstração (NeuralWeb)
   Celular primeiro. Sem build, sem bibliotecas. */

:root {
  --ink: #0e1c21;
  --ink-2: #13252b;
  --ink-3: #0a1519;
  --ivory: #f5f1e8;
  --paper: #fbf9f4;
  --text: #17252b;
  --text-2: #4d5a5f;
  --light: #ece6da;
  --light-2: #a9b5b4;
  --gold: #c9a96a;
  --gold-2: #dcc08a;
  --gold-ink: #7a5c24;
  --line-d: rgba(201, 169, 106, .22);
  --line-l: #ddd3bf;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --bar-h: 44px;
  --head-h: 60px;
  --top: calc(var(--bar-h) + var(--head-h));
  --ease: cubic-bezier(.2, .7, .2, 1);
}
@media (min-width: 1080px) {
  :root { --head-h: 76px; }
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--top);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font: 400 1rem/1.65 var(--sans);
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
@supports (overflow: clip) {
  body { overflow-x: clip; }
}
.menu-open body { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.section--ivory :focus-visible { outline-color: var(--gold-ink); }

.icon {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--fill { fill: currentColor; stroke: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .container { padding-inline: 40px; }
}

.skip {
  position: fixed;
  left: 12px;
  top: 8px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-200%);
}
.skip:focus { transform: none; }

/* Faixa NeuralWeb */
.demo-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--bar-h);
  background: #0a0d13;
  color: rgba(255, 255, 255, .74);
  border-bottom: 1px solid rgba(126, 196, 255, .22);
  font: 500 12px/1.2 var(--sans);
  letter-spacing: .01em;
}
.demo-bar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 12px;
}
.demo-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.demo-bar a:hover { color: #e8eef6; }
.demo-bar__note {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  white-space: nowrap;
}
.demo-bar__sep { opacity: .5; }
.demo-bar .demo-bar__cta { color: #7ec4ff; font-weight: 600; }
.demo-bar .demo-bar__cta:hover { color: #a9d8ff; }
.hide-sm { display: none; }
@media (min-width: 720px) {
  .hide-sm { display: inline; }
  .demo-bar { font-size: 12.5px; }
  .demo-bar__in { padding-inline: 24px; }
}
@media (max-width: 359px) {
  .demo-bar__note > span:first-child, .demo-bar__sep { display: none; }
}

/* Cabeçalho */
.header {
  position: fixed;
  top: var(--bar-h);
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--head-h);
  color: var(--light);
  background: rgba(14, 28, 33, .97);
  border-bottom: 1px solid var(--line-d);
  transition: background-color .35s ease, border-color .35s ease;
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .header {
    background: rgba(14, 28, 33, .95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}
.js .header:not(.is-scrolled) {
  background: transparent;
  border-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.menu-open .header {
  background: var(--ink) !important;
  border-color: var(--line-d) !important;
}
.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .header__in { padding-inline: 40px; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--light);
  text-decoration: none;
}
.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 106, .7);
  font: 600 16px/1 var(--serif);
  letter-spacing: .02em;
  color: var(--gold);
}
.brand__mark i { font-style: italic; font-weight: 500; margin: 0 1px; }
.brand__text {
  display: flex;
  flex-direction: column;
  font: 600 19px/1 var(--serif);
  letter-spacing: .01em;
  white-space: nowrap;
}
.brand__text small {
  margin-top: 5px;
  font: 500 9.5px/1 var(--sans);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--light-2);
}

/* Menu: painel no celular */
.nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100vh - var(--top));
  height: calc(100dvh - var(--top));
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 8px 20px calc(28px + env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--ink);
  border-top: 1px solid var(--line-d);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
}
.nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity .25s ease, transform .25s ease;
}
.nav__list a {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line-d);
  font: 500 1.625rem/1.2 var(--serif);
  color: var(--light);
  text-decoration: none;
}
.nav__list a:hover, .nav__list a[aria-current="true"] { color: var(--gold); }
.nav__extra {
  margin-top: auto;
  font-size: 14px;
  line-height: 1.6;
  color: var(--light-2);
}
.burger { display: none; }
.js .burger {
  display: inline-grid;
  place-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--light);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease);
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

@media (min-width: 1080px) {
  .js .burger { display: none; }
  .nav {
    position: static;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    padding: 0;
    overflow: visible;
    background: none;
    border: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav__list { display: flex; gap: 28px; }
  .nav__list a {
    position: relative;
    min-height: 44px;
    border: 0;
    font: 500 14px/1 var(--sans);
    letter-spacing: .01em;
    color: rgba(236, 230, 218, .84);
  }
  .nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
  }
  .nav__list a:hover, .nav__list a[aria-current="true"] { color: #fff; }
  .nav__list a:hover::after, .nav__list a[aria-current="true"]::after { transform: scaleX(1); }
  .nav__cta { min-height: 44px; padding-inline: 20px; font-size: 14px; }
  .nav__extra { display: none; }
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font: 600 15px/1.2 var(--sans);
  letter-spacing: .01em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn .icon { width: 20px; height: 20px; }
.btn--gold { background: var(--gold); color: #10191d; }
.btn--gold:hover { background: var(--gold-2); }
.btn--line { border-color: rgba(236, 230, 218, .45); color: var(--light); }
.btn--line:hover { border-color: var(--gold); color: var(--gold-2); }
.btn--ink { background: var(--ink); color: var(--light); }
.btn--ink:hover { background: #1c323a; }
.btn--line-ink { border-color: rgba(23, 37, 43, .4); color: var(--text); }
.btn--line-ink:hover { border-color: var(--gold-ink); color: var(--gold-ink); }

/* Títulos de seção */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font: 600 12px/1.3 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.section--dark .eyebrow, .hero .eyebrow { color: var(--gold); }
.eyebrow__n {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font: italic 500 19px/1 var(--serif);
  letter-spacing: .04em;
  text-transform: none;
}
.eyebrow__n::after, .hero .eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: .75;
}
h2 {
  font: 500 clamp(2.1rem, 1.45rem + 2.6vw, 3.5rem)/1.07 var(--serif);
  letter-spacing: -.01em;
  text-wrap: balance;
}
.section--dark h2 { color: #f4efe6; }
h3 { font: 600 1.5rem/1.2 var(--serif); }
h1, h2, h3 { font-variant-numeric: lining-nums; }
.lead {
  max-width: 34em;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-2);
}
.section--dark .lead { color: var(--light-2); }
@media (min-width: 768px) {
  .lead { font-size: 1.125rem; }
}

.section { padding-block: clamp(68px, 11vw, 136px); }
.section--ivory { background: var(--ivory); color: var(--text); }
.section--dark { background: var(--ink); color: var(--light); }
.head { display: grid; gap: 18px; margin-bottom: clamp(40px, 6vw, 64px); }
.head .eyebrow { margin-bottom: 18px; }
@media (min-width: 900px) {
  .head--split { grid-template-columns: 1.15fr .85fr; align-items: end; gap: 64px; }
  .head--split .lead { justify-self: end; padding-bottom: 6px; }
}

/* 1. Abertura */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 640px;
  min-height: clamp(620px, 100vh, 960px);
  min-height: clamp(620px, 100svh, 960px);
  padding: calc(var(--top) + 40px) 0 32px;
  overflow: hidden;
  background: var(--ink-3);
  color: var(--light);
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media picture, .hero__poster, .hero__video, .hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__poster, .hero__video {
  object-fit: cover;
  object-position: 16% 50%;
  filter: saturate(.7);
}
.hero__video { opacity: 0; transition: opacity .7s ease; }
.hero__video.is-on { opacity: 1; }
.hero__shade {
  background:
    linear-gradient(180deg, rgba(10, 21, 25, .82) 0%, rgba(10, 21, 25, .62) 26%, rgba(10, 21, 25, .8) 56%, rgba(10, 21, 25, .97) 100%);
}
.hero__content { margin-top: auto; }
@media (max-width: 420px) {
  .hero .eyebrow { font-size: 11px; letter-spacing: .12em; }
  .hero .eyebrow::before { display: none; }
}
.hero h1 {
  max-width: 12em;
  font: 500 clamp(2.6rem, 1.35rem + 5.2vw, 5.1rem)/1.03 var(--serif);
  letter-spacing: -.015em;
  color: #f6f1e7;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__lead {
  max-width: 31em;
  margin-top: 22px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(236, 230, 218, .9);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__actions .btn { flex: 1 1 auto; }
.hero__facts { display: none; }

/* Em retrato (celular, tablet), o quadro mostra a luminária e a estante, sem o rosto da cena */
@media (min-width: 600px) and (orientation: portrait) {
  .hero__poster, .hero__video { object-position: 4% 50%; }
}
/* Tablet em retrato: a caixa da abertura fica quase quadrada; amplia o lado esquerdo do quadro */
@media (orientation: portrait) and (min-width: 750px) and (max-width: 1100px),
       (orientation: portrait) and (min-aspect-ratio: 39/50) and (max-width: 1100px) {
  .hero__poster, .hero__video {
    inset: 50% auto auto 0;
    width: 228.6%;
    max-width: none;
    height: auto;
    aspect-ratio: 16 / 9;
    object-position: 0 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 1101px), (min-width: 761px) and (orientation: landscape) {
  .hero__poster, .hero__video { object-position: 50% 40%; }
  .hero__shade {
    background:
      linear-gradient(90deg, rgba(10, 21, 25, .95) 0%, rgba(10, 21, 25, .88) 38%, rgba(10, 21, 25, .66) 70%, rgba(10, 21, 25, .76) 100%),
      linear-gradient(180deg, rgba(10, 21, 25, .6) 0%, rgba(10, 21, 25, 0) 24%, rgba(10, 21, 25, 0) 62%, rgba(10, 21, 25, .9) 100%);
  }
}
@media (min-width: 761px) {
  .hero { padding-bottom: 36px; }
  .hero__content { margin-block: auto; padding-top: 24px; }
  .hero__lead { max-width: 38em; font-size: 1.25rem; }
  .hero__actions .btn { flex: 0 0 auto; }
  .hero__facts { display: block; margin-top: 48px; }
  .hero__facts dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(201, 169, 106, .3);
  }
  .hero__facts dl > div { padding: 18px 24px 0 0; }
  .hero__facts dt {
    font: 600 11px/1.3 var(--sans);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .hero__facts dd { margin-top: 6px; font-size: 15px; color: rgba(236, 230, 218, .88); }
}

/* 2. O escritório */
.id-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 12px;
  margin-bottom: clamp(44px, 6vw, 72px);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-l);
  font: 500 13px/1.5 var(--sans);
  letter-spacing: .02em;
  color: var(--text-2);
}
.id-line__dot { color: var(--gold-ink); }
@media (max-width: 639px) {
  .id-line { flex-direction: column; align-items: flex-start; }
  .id-line__dot { display: none; }
}
.about { display: grid; gap: 56px; }
.about__text h2 { margin-bottom: 24px; }
.about__text > p:not(.eyebrow) { font-size: 1.0625rem; color: var(--text-2); }
.about__text > p + p { margin-top: 16px; }
.frame { position: relative; }
.frame::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold);
  opacity: .65;
  pointer-events: none;
}
.frame--left::before { inset: 14px 14px -14px -14px; }
.frame img { position: relative; width: 100%; }
.about__media .frame img { aspect-ratio: 720 / 436; object-fit: cover; }
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line-l);
}
.facts dt, .info dt {
  font: 600 11px/1.3 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.facts dd { margin-top: 6px; font: 600 1.3rem/1.2 var(--serif); font-variant-numeric: lining-nums; color: var(--text); }
.values { display: grid; gap: 36px; margin-top: clamp(64px, 9vw, 104px); }
.values li { padding-top: 26px; border-top: 1px solid var(--line-l); }
.values .icon { width: 28px; height: 28px; margin-bottom: 18px; color: var(--gold-ink); }
.values h3 { margin-bottom: 8px; }
.values p { color: var(--text-2); }
@media (min-width: 760px) {
  .values { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}
@media (min-width: 900px) {
  .about { grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
}

/* 3. Áreas de atuação */
.areas {
  display: grid;
  border-right: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
}
.area {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 26px 20px 30px;
  border-top: 1px solid var(--line-d);
  border-left: 1px solid var(--line-d);
  background: var(--ink);
  transition: background-color .35s ease;
}
.area:hover { background: #112329; }
.area__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 169, 106, .45);
  border-radius: 50%;
  color: var(--gold);
  transition: background-color .35s ease, color .35s ease;
}
.area:hover .area__icon { background: var(--gold); color: var(--ink); }
.area h3 { font-size: 1.5rem; color: #f4efe6; }
.area p { grid-column: 1 / -1; margin-top: 14px; font-size: .98rem; color: var(--light-2); }
@media (min-width: 640px) {
  .areas { grid-template-columns: repeat(2, 1fr); }
  .area { display: block; padding: 36px 32px 40px; }
  .area__icon { width: 56px; height: 56px; margin-bottom: 24px; }
  .area h3 { margin-bottom: 12px; font-size: 1.625rem; }
  .area p { margin-top: 0; }
}
@media (min-width: 1024px) {
  .areas { grid-template-columns: repeat(3, 1fr); }
  .area { padding: 44px 40px 48px; }
}

/* 4. Como trabalhamos */
.band { margin-bottom: clamp(52px, 7vw, 88px); overflow: hidden; }
.band img {
  width: 100%;
  height: clamp(190px, 30vw, 360px);
  object-fit: cover;
  object-position: 50% 45%;
}
.steps { display: grid; }
.step { position: relative; padding: 0 0 40px 76px; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 60px;
  bottom: 10px;
  width: 1px;
  background: var(--line-l);
}
.step:last-child::before { display: none; }
.step__n {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border: 1px solid var(--gold-ink);
  border-radius: 50%;
  background: var(--ivory);
  font: italic 500 1.25rem/1 var(--serif);
  font-variant-numeric: lining-nums;
  color: var(--gold-ink);
}
.step h3 { margin: 8px 0 8px; }
.step p { color: var(--text-2); }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 40px; }
  .step { padding: 80px 0 0; }
  .step::before { left: 64px; right: -25px; top: 24px; bottom: auto; width: auto; height: 1px; }
}

/* 5. Equipe */
.team { display: grid; gap: 0 32px; }
.member {
  display: grid;
  grid-template-columns: 68px 1fr;
  column-gap: 20px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line-d);
}
.member__mono {
  position: relative;
  grid-row: span 3;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(201, 169, 106, .55);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(201, 169, 106, .15), rgba(201, 169, 106, 0) 62%);
  font: 500 1.6rem/1 var(--serif);
  letter-spacing: .06em;
  color: var(--gold);
}
.member__mono::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201, 169, 106, .2);
  border-radius: 50%;
}
.member h3 { font-size: 1.6rem; color: #f4efe6; }
.member__role { margin-top: 4px; font-size: .95rem; color: var(--light-2); }
.member__role span { font-weight: 500; letter-spacing: .02em; color: var(--gold); }
.member__areas {
  margin-top: 12px;
  font-size: .95rem;
  color: var(--light-2);
}
@media (min-width: 600px) {
  .team { grid-template-columns: repeat(2, 1fr); }
  .member { display: block; padding: 36px 0 8px; }
  .member__mono { width: 96px; height: 96px; margin-bottom: 26px; font-size: 2.2rem; }
  .member__mono::after { inset: 6px; }
  .member h3 { font-size: 1.75rem; }
  .member__areas { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(236, 230, 218, .1); }
}
@media (min-width: 1024px) {
  .team { grid-template-columns: repeat(4, 1fr); }
}

/* 6. Conteúdos */
.posts { display: grid; gap: 20px; }
.post {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line-l);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.post:hover, .post:focus-within {
  border-color: var(--gold);
  box-shadow: 0 22px 44px -28px rgba(23, 37, 43, .45);
}
.post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-2);
}
.post__meta span {
  padding: 5px 10px;
  border: 1px solid rgba(122, 92, 36, .35);
  font: 600 11px/1.2 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.post h3 { font-size: 1.6rem; line-height: 1.18; }
.post h3 a { text-decoration: none; }
.post h3 a::after { content: ""; position: absolute; inset: 0; }
.post h3 a:focus-visible { outline: none; }
.post h3 a:focus-visible::after { outline: 2px solid var(--gold-ink); outline-offset: 3px; }
.post > p:not(.post__meta) { margin-top: 12px; color: var(--text-2); }
.post__more {
  margin-top: auto;
  padding-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-ink);
}
.post__more span { display: inline-block; transition: transform .3s var(--ease); }
.post:hover .post__more span { transform: translateX(4px); }
@media (min-width: 900px) {
  .posts { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .post { padding: 36px 32px 32px; }
}

/* 7. Contato */
.section--contact {
  background:
    radial-gradient(ellipse 70% 60% at 90% 0%, rgba(201, 169, 106, .09), rgba(201, 169, 106, 0) 70%),
    var(--ink);
}
.contact { display: grid; gap: 48px; }
.contact__intro h2 { margin-bottom: 18px; }
.privacy {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  padding: 20px;
  border: 1px solid var(--line-d);
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, .02);
  font-size: .92rem;
  line-height: 1.6;
  color: var(--light-2);
}
.privacy .icon { margin-top: 1px; color: var(--gold); }
.privacy strong { font-weight: 600; color: var(--light); }
.form {
  display: grid;
  gap: 20px;
  padding: 28px 20px;
  border: 1px solid var(--line-d);
  background: rgba(255, 255, 255, .025);
}
.field label {
  display: block;
  margin-bottom: 8px;
  font: 600 12px/1.3 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--light-2);
}
.field label span { font-weight: 400; letter-spacing: .02em; text-transform: none; }
.field input, .field select, .field textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid rgba(236, 230, 218, .26);
  border-radius: 2px;
  background: rgba(10, 21, 25, .55);
  color: var(--light);
  font-size: 16px;
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field select {
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%23c9a96a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.field select option { color: #17252b; background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: rgba(236, 230, 218, .58); opacity: 1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(236, 230, 218, .42); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(10, 21, 25, .85);
  box-shadow: 0 0 0 3px rgba(201, 169, 106, .25);
}
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #e59a8a; }
.field__error { margin-top: 7px; font-size: 13px; color: #f2b6a9; }
.field__error:empty { display: none; }
.form__foot { display: grid; gap: 14px; margin-top: 4px; }
.form__foot .btn { width: 100%; }
.form__note { font-size: 13px; line-height: 1.6; color: var(--light-2); }
.form__note em { display: block; margin-top: 4px; font-style: normal; color: var(--gold); }
.form__status { font-size: 14px; color: var(--gold-2); }
.form__status:empty { display: none; }
@media (min-width: 640px) {
  .form { grid-template-columns: 1fr 1fr; padding: 40px; }
  .field--full, .form__foot { grid-column: 1 / -1; }
  .form__foot .btn { width: auto; justify-self: start; }
}
@media (min-width: 960px) {
  .contact { grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
}

/* 8. Endereço e horário */
.place { display: grid; gap: 56px; }
.place__media .frame img { aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 64%; }
.place__info h2 { margin-bottom: 32px; }
.info { border-top: 1px solid var(--line-l); }
.info > div { display: grid; gap: 8px; padding: 18px 0; border-bottom: 1px solid var(--line-l); }
.info dt { display: flex; align-items: center; gap: 10px; }
.info dt .icon { width: 20px; height: 20px; }
.info dd { font-size: 1.0625rem; color: var(--text); }
.info a {
  display: inline-block;
  padding-block: 12px;
  margin-block: -12px;
  text-decoration-color: rgba(122, 92, 36, .5);
  text-underline-offset: 3px;
}
.info a:hover { color: var(--gold-ink); }
.place__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.place__actions .btn { flex: 1 1 auto; }
@media (min-width: 640px) {
  .info > div { grid-template-columns: 210px 1fr; gap: 24px; align-items: baseline; }
  .place__actions .btn { flex: 0 0 auto; }
}
@media (min-width: 900px) {
  .place { grid-template-columns: .78fr 1.22fr; gap: 88px; align-items: center; }
  .place__media .frame img { aspect-ratio: 480 / 572; object-position: 50% 50%; }
}

/* Rodapé */
.footer {
  padding: 72px 0 calc(96px + env(safe-area-inset-bottom));
  background: var(--ink-3);
  border-top: 1px solid var(--line-d);
  font-size: 14px;
  line-height: 1.65;
  color: var(--light-2);
}
.footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(236, 230, 218, .1);
}
.footer .brand { margin-bottom: 22px; }
.footer__id { margin-bottom: 8px; font-weight: 500; color: var(--light); }
.footer__nav ul { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
.footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--light-2);
  text-decoration: none;
}
.footer__nav a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding-top: 24px;
  font-size: 13px;
}
.footer__bottom a {
  display: inline-block;
  padding-block: 12px;
  margin-block: -12px;
  color: var(--gold);
  text-underline-offset: 3px;
}
@media (min-width: 900px) {
  .footer { padding-bottom: 40px; }
  .footer__grid { grid-template-columns: 1.25fr 1fr 1fr; gap: 56px; }
}

/* WhatsApp flutuante */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 45;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(201, 169, 106, .6);
  border-radius: 50%;
  background: var(--ink-2);
  color: var(--gold);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .6);
  transition: opacity .35s ease, transform .35s var(--ease), visibility .35s, background-color .25s ease, color .25s ease;
}
.wa-float:hover { background: var(--gold); color: var(--ink); }
.js .wa-float:not(.is-on) { opacity: 0; visibility: hidden; transform: translateY(14px); }
@media (min-width: 900px) {
  .wa-float { right: 28px; bottom: 28px; }
}

/* Aviso rápido (links ilustrativos) */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(86px + env(safe-area-inset-bottom));
  z-index: 70;
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 14px 18px;
  border: 1px solid var(--line-d);
  border-left: 2px solid var(--gold);
  background: var(--ink-2);
  color: var(--light);
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .6);
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s var(--ease);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }
@media (min-width: 900px) {
  .toast { bottom: 32px; }
}

/* Movimento: a abertura anima só com CSS; o resto revela ao rolar (JS) */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero__content > * { animation: rise 1s var(--ease) both; }
.hero__content > :nth-child(2) { animation-delay: .1s; }
.hero__content > :nth-child(3) { animation-delay: .22s; }
.hero__content > :nth-child(4) { animation-delay: .34s; }
.hero__facts { animation: fade 1.2s ease .5s both; }

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal-ready [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }
  .hero__video { display: none; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}
