/* ============================================================
   ANNA E NEVITA · Advocacia de Família
   Design system: monocromático preto/branco (manual da marca),
   Montserrat, acento acobreado sutil, ponto do logo como assinatura.
   ============================================================ */

:root {
  --bg: #0b0b0c;
  --bg-elev: #141416;
  --paper: #f4f4f2;
  --paper-elev: #ffffff;
  --ink: #131315;
  --ink-soft: #45454a;
  --white: #fafaf9;
  --white-soft: rgba(250, 250, 249, 0.78);
  --copper: #c68d60;
  --copper-deep: #a06a41;
  --line-dark: rgba(250, 250, 249, 0.16);
  --line-light: rgba(19, 19, 21, 0.16);

  --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.89rem);
  --step-0: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --step-1: clamp(1.35rem, 1.2rem + 0.7vw, 1.7rem);
  --step-2: clamp(1.8rem, 1.5rem + 1.4vw, 2.6rem);
  --step-3: clamp(2.3rem, 1.8rem + 2.6vw, 4rem);
  --step-4: clamp(2.8rem, 2rem + 4.2vw, 5.4rem);

  --space-s: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  --space-m: clamp(1.75rem, 1.4rem + 1.2vw, 2.75rem);
  --space-l: clamp(3rem, 2.2rem + 3vw, 5.5rem);
  --space-xl: clamp(4.5rem, 3.2rem + 5.5vw, 8.5rem);

  --container: 72rem;
  --radius: 10px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-header: 50;
  --z-float: 60;
  --z-banner: 70;
  --z-menu: 80;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: var(--step-3); }
h2 { font-size: var(--step-2); }
h3 { font-size: var(--step-1); font-weight: 700; }

p { margin: 0 0 1.1em; max-width: 68ch; text-wrap: pretty; }
ul, ol { max-width: 68ch; padding-left: 1.3em; margin: 0 0 1.2em; }
li { margin-bottom: 0.45em; }
li::marker { color: var(--copper-deep); }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--copper-deep); }

strong { font-weight: 700; }

::selection { background: var(--copper); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}

/* — assinatura da marca: o ponto do logo — */
.dot { color: var(--copper); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 100;
  background: var(--copper);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 1rem; color: var(--bg); }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container--narrow { width: min(100% - 2.5rem, 50rem); }

/* ============ HEADER ============ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}
.site-header__logo img { height: 30px; width: auto; }

.site-nav { display: none; }

@media (min-width: 60em) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 2.5vw, 2.2rem);
  }
  .site-nav a {
    color: var(--white-soft);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    text-transform: lowercase;
  }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] { color: var(--copper); }
  .site-nav a.nav-cta {
    color: var(--bg);
    background: var(--white);
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
  }
  .site-nav a.nav-cta:hover { background: var(--copper); color: var(--bg); }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 0;
  color: var(--white);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: lowercase;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle__lines {
  width: 22px; height: 10px;
  position: relative;
}
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out);
}
.menu-toggle__lines::before { top: 0; }
.menu-toggle__lines::after { bottom: 0; }
@media (min-width: 60em) { .menu-toggle { display: none; } }

/* menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  background: var(--bg);
  color: var(--white);
  padding: 5.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  border: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  overflow-y: auto;
}
.mobile-menu nav > a {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: lowercase;
  text-decoration: none;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu nav > a:hover { color: var(--copper); }
.mobile-menu__close {
  position: absolute;
  top: 1.1rem; right: 1.2rem;
  background: none; border: 0;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: lowercase;
  cursor: pointer;
  padding: 0.6rem;
}
.mobile-menu__meta {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--white-soft);
  font-size: 0.85rem;
}
.mobile-menu__meta a { color: var(--copper); }

/* ============ BOTÕES ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.btn:active { transform: scale(0.98); }

.btn--solid { background: var(--white); color: var(--bg); }
.btn--solid:hover { background: var(--copper); color: var(--bg); }

.btn--ghost { border-color: var(--line-dark); color: var(--white); }
.btn--ghost:hover { border-color: var(--copper); color: var(--copper); }

.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--copper-deep); color: var(--white); }

.btn--wa { background: var(--copper); color: var(--bg); }
.btn--wa:hover { background: var(--white); color: var(--bg); }

.btn svg { flex: none; }

/* ============ HERO (home) ============ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
  background-image: image-set(
    url("../img/hero-socias-v2-1600.webp") 1x,
    url("../img/hero-socias-v2-2400.webp") 2x
  );
  background-size: cover;
  background-position: 18% center;
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(11, 11, 12, 0.96) 0%, rgba(11, 11, 12, 0.72) 45%, rgba(11, 11, 12, 0.28) 100%);
}
@media (min-width: 60em) {
  .hero__scrim {
    background:
      linear-gradient(to right, rgba(11, 11, 12, 0) 30%, rgba(11, 11, 12, 0.55) 52%, rgba(11, 11, 12, 0.96) 72%);
  }
}
.hero__inner {
  width: 100%;
  padding-block: 7rem 3.5rem;
}
.hero__content { max-width: 34rem; }
@media (min-width: 60em) {
  .hero { align-items: center; }
  .hero__content { margin-left: auto; text-align: left; }
}
.hero__kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 1.6rem + 2.9vw, 3.9rem);
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  margin-bottom: 0.5em;
}
.hero__sub {
  color: var(--white-soft);
  font-size: var(--step-0);
  font-weight: 400;
  max-width: 44ch;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero__scrollhint {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  translate: -50% 0;
  color: var(--white-soft);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 60em) { .hero__scrollhint { display: block; } }

/* marca d'água an. com parallax */
.watermark {
  position: absolute;
  z-index: -1;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.watermark img { width: clamp(340px, 55vw, 900px); height: auto; }

/* ============ SEÇÕES ============ */

.section { padding-block: var(--space-xl); position: relative; overflow: clip; }
.section--dark { background: var(--bg); color: var(--white); }
.section--paper { background: var(--paper); color: var(--ink); }
.section--tight { padding-block: var(--space-l); }

.section--dark p { color: var(--white-soft); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section__lead {
  font-size: var(--step-1);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 30ch;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  margin-bottom: var(--space-m);
}
.section-head h2 { text-transform: lowercase; margin-bottom: 0; }
.section-head__aside {
  font-size: 0.9rem;
  color: inherit;
  opacity: 0.75;
  font-weight: 500;
}

/* faixa de credibilidade */
.cred-band {
  border-block: 1px solid var(--line-dark);
  padding-block: 1.2rem;
  background: var(--bg);
  color: var(--white-soft);
}
.cred-band ul {
  list-style: none;
  margin: 0; padding: 0;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}
.cred-band li { margin: 0; display: inline-flex; align-items: center; }
.cred-band li + li::before {
  content: "/";
  color: var(--copper);
  font-weight: 700;
  margin-inline: 1.1rem;
}

/* quem somos (home) */
.duo {
  display: grid;
  gap: var(--space-m);
  align-items: center;
}
@media (min-width: 55em) {
  .duo { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: var(--space-l); }
}
.duo__media {
  position: relative;
}
.duo__media img {
  width: 100%;
  border-radius: var(--radius);
  filter: grayscale(1) contrast(1.03);
}
.duo__media::after {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 42%;
  height: 42%;
  border: 1px solid var(--copper);
  border-radius: var(--radius);
  z-index: -1;
}

/* manifesto */
.manifesto {
  text-align: center;
}
.manifesto blockquote {
  margin: 0 auto;
  max-width: 22ch;
  font-size: var(--step-3);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  text-wrap: balance;
}
.manifesto figcaption {
  margin-top: 1.6rem;
  color: var(--white-soft);
  font-size: 0.9rem;
}

/* índice de áreas — lista tipográfica */
.area-index {
  list-style: none;
  margin: 0; padding: 0;
  max-width: none;
  border-top: 1px solid var(--line-light);
}
.area-index li { margin: 0; }
.area-index a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.2rem 1.5rem;
  padding: 1.05rem 0.2rem;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
  transition: padding-left 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.area-index a:hover { padding-left: 0.9rem; background: rgba(19, 19, 21, 0.03); }
.area-index__name {
  grid-column: 1;
  grid-row: 1;
  font-size: var(--step-1);
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: lowercase;
  color: var(--ink);
}
.area-index a:hover .area-index__name { color: var(--copper-deep); }
.area-index__desc {
  grid-column: 1;
  grid-row: 2;
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 58ch;
}
.area-index__arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--copper-deep);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.area-index a:hover .area-index__arrow { opacity: 1; transform: none; }
@media (max-width: 40em) { .area-index__arrow { display: none; } }

/* como trabalhamos */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  max-width: none;
  display: grid;
  gap: 1.6rem;
  counter-reset: step;
}
@media (min-width: 55em) { .steps { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.steps li {
  counter-increment: step;
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-dark);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
}
.steps h3 {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 0.4rem;
}
.steps p { font-size: 0.92rem; margin: 0; }

/* blog list */
.post-list {
  list-style: none;
  margin: 0; padding: 0;
  max-width: none;
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 55em) { .post-list--3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.post-card {
  margin: 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line-light);
}
.section--dark .post-card { border-top-color: var(--line-dark); }
.post-card time {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--copper-deep);
}
.section--dark .post-card time { color: var(--copper); }
.post-card h3 {
  margin: 0.5rem 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.3;
}
.post-card h3 a { text-decoration: none; }
.post-card h3 a:hover { color: var(--copper-deep); }
.post-card p { font-size: 0.92rem; margin: 0; }
.post-card__meta {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* FAQ — accordion nativo */
.faq { border-top: 1px solid var(--line-light); max-width: 50rem; }
.faq details { border-bottom: 1px solid var(--line-light); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0.2rem;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--copper-deep);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
  flex: none;
  transition: rotate 0.3s var(--ease-out);
}
.faq details[open] summary::after { rotate: 45deg; }
.faq summary:hover { color: var(--copper-deep); }
.faq .faq__a { padding: 0 0.2rem 1.3rem; }
.faq .faq__a p { font-size: 0.95rem; margin-bottom: 0.7em; }
.faq .faq__a :last-child { margin-bottom: 0; }

.section--dark .faq { border-top-color: var(--line-dark); }
.section--dark .faq details { border-bottom-color: var(--line-dark); }
.section--dark .faq summary::after { color: var(--copper); }
.section--dark .faq summary:hover { color: var(--copper); }

/* ============ PÁGINAS INTERNAS ============ */

.page-hero {
  background: var(--bg);
  color: var(--white);
  padding: 8.5rem 0 var(--space-l);
  position: relative;
  overflow: clip;
}
.page-hero h1 {
  text-transform: lowercase;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.page-hero__lead {
  color: var(--white-soft);
  font-size: var(--step-1);
  font-weight: 400;
  line-height: 1.45;
  max-width: 34ch;
  margin: 0;
}

.breadcrumb {
  font-size: 0.82rem;
  margin-bottom: 2.2rem;
}
.breadcrumb ol {
  list-style: none;
  margin: 0; padding: 0;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  color: var(--white-soft);
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; color: var(--copper); margin-inline: 0.55rem; }
.breadcrumb a { color: var(--white-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb [aria-current] { color: var(--white); font-weight: 600; }

/* prosa de conteúdo */
.prose h2 {
  font-size: var(--step-1);
  text-transform: lowercase;
  letter-spacing: -0.015em;
  margin-top: 2.2em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; }
.prose hr {
  border: 0;
  border-top: 1px solid var(--line-light);
  margin: var(--space-m) 0;
}

.notice {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-elev);
  padding: 1.1rem 1.3rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 68ch;
}

/* CTA band */
.cta-band { text-align: left; }
.cta-band h2 {
  font-size: var(--step-3);
  text-transform: lowercase;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.cta-band p { max-width: 52ch; }
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

/* perfis (quem somos) */
.profiles { display: grid; gap: var(--space-l); }
.profile {
  display: grid;
  gap: var(--space-m);
  align-items: start;
}
@media (min-width: 55em) {
  .profile { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: var(--space-l); }
  .profile--flip .profile__media { order: 2; }
}
.profile__media img {
  border-radius: var(--radius);
  filter: grayscale(1);
}
.profile h3 {
  font-size: var(--step-2);
  text-transform: lowercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.2em;
}
.profile__oab {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--copper-deep);
  margin-bottom: 1.2em;
}
.profile__quote {
  border-top: 1px solid var(--line-light);
  margin-top: 1.4em;
  padding-top: 1.2em;
  font-weight: 600;
  font-style: normal;
  max-width: 50ch;
}

.values {
  list-style: none;
  padding: 0;
  max-width: none;
  display: grid;
  gap: 1.5rem 2rem;
}
@media (min-width: 55em) { .values { grid-template-columns: repeat(2, 1fr); } }
.values li { margin: 0; padding-top: 1rem; border-top: 1px solid var(--line-dark); }
.values h3 { font-size: 1.05rem; text-transform: lowercase; margin-bottom: 0.3rem; }
.values p { font-size: 0.93rem; margin: 0; }

/* ============ ARTIGO / BLOG ============ */

.article-layout { display: grid; gap: var(--space-l); }
@media (min-width: 62em) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 16rem; align-items: start; }
}
.article-toc {
  position: sticky;
  top: 6rem;
  font-size: 0.88rem;
  border-left: 1px solid var(--line-light);
  padding-left: 1.2rem;
  display: none;
}
@media (min-width: 62em) { .article-toc { display: block; } }
.article-toc strong {
  display: block;
  text-transform: lowercase;
  margin-bottom: 0.6rem;
}
.article-toc ol { list-style: none; padding: 0; margin: 0; }
.article-toc a { text-decoration: none; color: var(--ink-soft); }
.article-toc a:hover { color: var(--copper-deep); }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  font-size: 0.85rem;
  color: var(--white-soft);
  margin-top: 1.4rem;
}
.article-meta span + span::before { content: "/"; color: var(--copper); margin-inline: 0.7rem; }

/* ============ CONTATO ============ */

.contact-grid { display: grid; gap: var(--space-l); }
@media (min-width: 60em) { .contact-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); } }

.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: lowercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper-elev);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s var(--ease-out);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--copper-deep);
  box-shadow: 0 0 0 1px var(--copper-deep);
}
.form-field textarea { min-height: 9rem; resize: vertical; }
.form-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  max-width: 60ch;
}
.form-consent input { margin-top: 0.25rem; width: 1rem; height: 1rem; accent-color: var(--copper-deep); }

.contact-card { font-size: 0.95rem; }
.contact-card dl { margin: 0; }
.contact-card dt {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  color: var(--copper-deep);
  margin-top: 1.4rem;
}
.contact-card dd { margin: 0.2rem 0 0; }
.section--dark .contact-card dt { color: var(--copper); }

/* ============ RODAPÉ ============ */

.site-footer {
  background: var(--bg);
  color: var(--white-soft);
  border-top: 1px solid var(--line-dark);
  padding-block: var(--space-l) 2rem;
  font-size: 0.88rem;
}
.site-footer a { color: var(--white-soft); text-decoration: none; }
.site-footer a:hover { color: var(--copper); }
.footer-grid {
  display: grid;
  gap: 2.2rem;
  margin-bottom: var(--space-m);
}
@media (min-width: 55em) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2rem; }
}
.footer-grid img { height: 34px; width: auto; margin-bottom: 1rem; }
.footer-grid h3 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 0.8rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; max-width: none; }
.footer-grid li { margin-bottom: 0.45em; }
.footer-legal {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.6rem;
  display: grid;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: rgba(250, 250, 249, 0.55);
}
.footer-legal p { margin: 0; max-width: none; }

/* ============ FLUTUANTES ============ */

.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: var(--z-float);
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s var(--ease-out);
}
.wa-float:hover { transform: scale(1.07); color: #fff; }
.wa-float svg { width: 1.7rem; height: 1.7rem; }

.cookie-banner {
  position: fixed;
  z-index: var(--z-banner);
  inset: auto 1rem 1rem;
  max-width: 30rem;
  margin-inline: auto;
  background: var(--bg-elev);
  color: var(--white-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  font-size: 0.85rem;
  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.3);
}
.cookie-banner p { margin: 0 0 0.9rem; max-width: none; }
.cookie-banner a { color: var(--copper); }
.cookie-banner__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie-banner button {
  font: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  border: 1px solid var(--line-dark);
  background: none;
  color: var(--white);
}
.cookie-banner button.accept { background: var(--copper); border-color: var(--copper); color: var(--bg); }
.cookie-banner button:hover { border-color: var(--copper); }
.cookie-banner button.accept:hover { background: var(--white); border-color: var(--white); }

/* ============ MOTION ============ */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }

@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;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero__bg, .watermark { transform: none !important; }
}

/* ============ PRINT ============ */

@media print {
  .site-header, .wa-float, .cookie-banner, .hero__scrollhint, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
}
