/* ===== Design tokens ===== */
:root {
  --navy: #0f1b2d;
  --navy-deep: #0a1320;
  --gold: #c8a45c;
  --gold-soft: #e0c585;
  --paper: #f6f3ee;
  --text-light: #eef1f6;
  --text-muted: #b6c0cf;

  --radius: 10px;
  --duration: 280ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--navy-deep);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; color: var(--gold-soft); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--duration) var(--ease),
              background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
  white-space: nowrap;
}
.btn--solid {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--solid:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--ghost { color: var(--text-light); border-color: rgba(255,255,255,0.22); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn--line {
  color: var(--text-light);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(2px);
}
.btn--line:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.btn--lg { padding: 0.95rem 1.9rem; font-size: 1.02rem; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              padding var(--duration) var(--ease);
  padding: 1.25rem 0;
}
.nav.is-scrolled {
  background: rgba(10, 19, 32, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding: 0.7rem 0;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: #0a0a0a;
  overflow: hidden;
  flex-shrink: 0;
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.12);
}
.brand__name {
  display: flex;
  flex-direction: column;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.1;
}
.brand__name small {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}
.nav__links { display: flex; gap: 1.9rem; }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color var(--duration) var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--duration) var(--ease);
}
.nav__links a:hover { color: var(--text-light); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; gap: 0.7rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--text-light);
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  /* Optimized, self-hosted hero photo (WebP) — preloaded in <head> for LCP */
  background-image: url("assets/hero.webp");
  background-size: cover;
  background-position: center 28%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(10,19,32,0.96) 0%, rgba(10,19,32,0.82) 42%, rgba(15,27,45,0.55) 100%),
    radial-gradient(120% 120% at 80% 20%, rgba(200,164,92,0.12), transparent 55%);
}
.hero__grid {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.hero__content { min-width: 0; }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(200,164,92,0.35);
  border-radius: 100px;
  margin-bottom: 1.6rem;
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 1.2rem + 4.6vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin-bottom: 1.4rem;
}
.hero__subtitle {
  font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.22rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 2.2rem;
}
.hero__subtitle strong {
  color: var(--text-light);
  font-weight: 700;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.hero__note {
  font-size: 0.86rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ===== Stats ===== */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: 3.5rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stats li { display: flex; flex-direction: column; gap: 0.3rem; }
.hero__stats strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem);
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
}
.hero__stats li > span {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}
.stat__star { color: var(--gold); font-size: 0.85em; }

/* ===== Sobre ===== */
.about {
  background: var(--navy);
  padding: clamp(4rem, 3rem + 5vw, 7rem) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.about__inner {
  max-width: 760px;
  margin: 0 auto;
}
.about__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 1.3rem + 2vw, 3rem);
  font-weight: 700;
  margin: 0.5rem 0 1.2rem;
}
.about__text { color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; max-width: 60ch; }
.about__text strong { color: var(--text-light); font-weight: 600; }
.about__creds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.5rem;
  margin: 1.8rem 0 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.about__creds li { display: flex; flex-direction: column; gap: 0.25rem; }
.about__cred-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.about__creds li > span:last-child { color: var(--text-light); }

/* ===== Áreas de Atuação ===== */
.areas {
  background: var(--navy-deep);
  padding: clamp(4rem, 3rem + 5vw, 7rem) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.areas__inner { max-width: var(--maxw); margin: 0 auto; }
.areas__head { max-width: 60ch; margin-bottom: 3rem; }
.areas__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 1.3rem + 2vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0.6rem 0 0.8rem;
}
.areas__lead { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }

.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.area {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem 1.7rem 1.9rem;
  overflow: hidden;
  transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.area::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width var(--duration) var(--ease);
}
.area:hover { transform: translateY(-4px); border-color: rgba(200, 164, 92, 0.4); }
.area:hover::after { width: 100%; }
.area__title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.7rem;
}
.area__title a { color: inherit; transition: color var(--duration) var(--ease); }
.area__title a:hover { color: var(--gold-soft); }
.area__text { color: var(--text-muted); line-height: 1.65; font-size: 0.97rem; flex: 1; }
.area__actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.3rem;
}
.area__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease), gap var(--duration) var(--ease);
}
.area__link span { transition: transform var(--duration) var(--ease); }
.area__link:hover { color: var(--gold); gap: 0.6rem; }
.area__link:hover span { transform: translate(2px, -2px); }
.area__link--more { color: var(--gold-soft); }
.area__link--more:hover { color: var(--gold); }
.area__link--more:hover span { transform: translateX(3px); }

/* ===== Photo column ===== */
.hero__media {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}
.hero__glow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 115%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%,
    rgba(224, 197, 133, 0.55) 0%,
    rgba(200, 164, 92, 0.28) 38%,
    transparent 68%);
  filter: blur(6px);
  z-index: 0;
}
.hero__photo-wrap {
  position: relative;
  z-index: 1;
  width: min(82%, 380px);
  aspect-ratio: 1;
}
.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  /* Warm backdrop that blends the photo's white cut-out edges */
  background: radial-gradient(circle at 50% 38%, #fdfbf7 0%, #f3e9d6 55%, #e7d4ad 100%);
  border: 2px solid rgba(224, 197, 133, 0.6);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.55),
    inset 0 0 0 8px rgba(255, 255, 255, 0.5);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(1.08);
}
/* ===== Contact / Location ===== */
.contact {
  background: var(--navy-deep);
  padding: clamp(4rem, 3rem + 5vw, 7rem) 1.5rem clamp(2rem, 1.5rem + 2vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.contact__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.contact__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.6rem);
  font-weight: 700;
  margin: 0.4rem 0 0.9rem;
}
.contact__lead {
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 1.8rem;
}
.contact__region { color: var(--text-muted); line-height: 1.7; margin: -0.6rem 0 1.8rem; max-width: 46ch; font-size: 0.92rem; }
.contact__region a { color: var(--gold-soft); transition: color var(--duration) var(--ease); }
.contact__region a:hover { color: var(--gold); }
.contact__list { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.contact__list li { display: flex; flex-direction: column; gap: 0.2rem; }
.contact__label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.contact__list span:last-child { line-height: 1.5; color: var(--text-light); }
.contact__phone { color: var(--text-light); transition: color var(--duration) var(--ease); }
.contact__phone:hover { color: var(--gold-soft); }
.contact__reg { display: flex; flex-direction: column; gap: 0.3rem; }
.contact__regrow { display: inline-flex; align-items: center; gap: 0.6rem; }
.contact__regnum { color: var(--text-light); }
.contact__verify {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: color var(--duration) var(--ease);
}
.contact__verify:hover { color: var(--gold-soft); }

.copy-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              background var(--duration) var(--ease);
}
.copy-btn:hover { color: var(--gold-soft); border-color: rgba(200, 164, 92, 0.5); }
.copy-btn__icon, .copy-btn__check { grid-area: 1 / 1; }
.copy-btn__check { opacity: 0; transform: scale(0.5); transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease); }
.copy-btn__icon { transition: opacity var(--duration) var(--ease); }

/* Copied state (toggled via JS) */
.copy-btn.is-copied { color: #34d399; border-color: rgba(52, 211, 153, 0.5); }
.copy-btn.is-copied .copy-btn__icon { opacity: 0; }
.copy-btn.is-copied .copy-btn__check { opacity: 1; transform: scale(1); }

.copy-btn__msg {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--navy);
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(200, 164, 92, 0.4);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.copy-btn.is-copied .copy-btn__msg { opacity: 1; transform: translateX(-50%) translateY(0); }
.contact__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.contact__map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.7);
  min-height: 360px;
}
.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* ===== Páginas internas de área (legal pages) ===== */
.lp-hero {
  position: relative;
  padding: clamp(7rem, 6rem + 6vw, 11rem) 1.5rem clamp(3rem, 2rem + 4vw, 5rem);
  background:
    linear-gradient(105deg, rgba(10,19,32,0.96) 0%, rgba(10,19,32,0.85) 50%, rgba(15,27,45,0.7) 100%),
    radial-gradient(120% 120% at 80% 0%, rgba(200,164,92,0.14), transparent 55%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-hero__inner { max-width: 880px; margin: 0 auto; }
.breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.6; }
.lp-hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.1rem;
}
.lp-hero__lead { font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.25rem); color: var(--text-muted); line-height: 1.6; max-width: 60ch; }

.lp-body { max-width: 880px; margin: 0 auto; padding: clamp(3rem, 2rem + 4vw, 5rem) 1.5rem; }
.lp-section { margin-bottom: 2.8rem; }
.lp-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.lp-section p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.lp-section strong { color: var(--text-light); font-weight: 600; }
.lp-steps { list-style: none; counter-reset: step; display: grid; gap: 1rem; margin-top: 1.2rem; }
.lp-steps li {
  counter-increment: step;
  position: relative;
  padding: 1.1rem 1.3rem 1.1rem 3.4rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--text-light);
  line-height: 1.6;
}
.lp-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1.1rem; top: 1.1rem;
  width: 1.7rem; height: 1.7rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
}

.lp-faq details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin-bottom: 0.9rem;
  background: rgba(255,255,255,0.03);
}
.lp-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-light);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; line-height: 1; transition: transform var(--duration) var(--ease); }
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq details p { color: var(--text-muted); line-height: 1.7; margin: 0.9rem 0 0; }

.lp-cta {
  text-align: center;
  background: var(--navy);
  border: 1px solid rgba(200, 164, 92, 0.25);
  border-radius: 16px;
  padding: clamp(2rem, 1.5rem + 2vw, 3rem);
  margin-top: 1rem;
}
.lp-cta h2 { font-family: "Playfair Display", serif; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); margin-bottom: 0.7rem; }
.lp-cta p { color: var(--text-muted); margin-bottom: 1.6rem; }
.lp-cta__btns { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

.lp-related { max-width: 880px; margin: 0 auto; padding: 0 1.5rem clamp(3rem, 2rem + 4vw, 5rem); }
.lp-related h2 { font-family: "Playfair Display", serif; font-size: 1.3rem; margin-bottom: 1.1rem; }
.lp-related__grid { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.lp-related__grid a {
  font-size: 0.9rem;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  transition: border-color var(--duration) var(--ease), color var(--duration) var(--ease);
}
.lp-related__grid a:hover { border-color: var(--gold); color: var(--gold-soft); }

/* ===== Footer ===== */
.footer {
  background: transparent;
}
.footer__bar {
  padding: 0.5rem 1.5rem 1.6rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== Floating WhatsApp button ===== */
.whatsapp {
  position: fixed;
  z-index: 60;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.7), 0 6px 16px rgba(0,0,0,0.25);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  animation: wa-pop 0.6s var(--ease) 0.9s both;
}
.whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 36px -8px rgba(37, 211, 102, 0.85), 0 8px 20px rgba(0,0,0,0.3);
}
.whatsapp svg { flex-shrink: 0; }
.whatsapp__label { font-size: 0.95rem; letter-spacing: 0.01em; }

@keyframes wa-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Reveal animation ===== */
.hero__content > * {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 0.9s var(--ease) forwards;
}
.hero__eyebrow { animation-delay: 0.05s; }
.hero__title { animation-delay: 0.16s; }
.hero__subtitle { animation-delay: 0.28s; }
.hero__cta { animation-delay: 0.4s; }
.hero__note { animation-delay: 0.5s; }
.hero__stats { animation-delay: 0.6s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__content > * { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7rem;
    gap: 2.5rem;
  }
  .hero__media { order: -1; }
  .hero__title, .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__eyebrow { margin-top: 0; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }

  .contact__inner { grid-template-columns: 1fr; }
  .contact__map { min-height: 300px; order: 2; }

  .areas__grid { grid-template-columns: repeat(2, 1fr); }

  .about__creds { grid-template-columns: 1fr; }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,19,32,0.98);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav__links.is-open a { padding: 0.95rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__links.is-open a::after { display: none; }
}
@media (max-width: 540px) {
  .hero__cta .btn { width: 100%; }
  .brand__name small { display: none; }
  .areas__grid { grid-template-columns: 1fr; }

  /* Favorece 6% à esquerda no celular (mostra o lado esquerdo da imagem) */
  .hero { background-position: 44% 28%; }

  /* Collapse WhatsApp button to a circle */
  .whatsapp { padding: 0.9rem; }
  .whatsapp__label { display: none; }
}
