/* ─── CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  --bg-cream:    #F5F1E8;
  --bg-paper:    #EDE6D6;
  --bg-dark:     #1F3329;
  --ink-forest:  #1F3329;
  --ink-dark:    #1A1A1A;
  --ink-mid:     #3D3D3D;
  --ink-light:   #6B6457;
  --gold:        #B8924A;
  --gold-soft:   #8C7A4D;
  --rule:        #C8BFA8;
  --white:       #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter Tight', system-ui, sans-serif;

  --max-w: 1200px;
  --section-v: clamp(80px, 10vw, 130px);
  --radius: 4px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--ink-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── ACCESSIBILITY ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--ink-forest);
  color: var(--bg-cream);
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--gold); outline-offset: 2px; }

*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section { padding-block: var(--section-v); }
.section--alt { background-color: var(--bg-paper); }

.section-head { margin-bottom: 3.5rem; }
.section-head .section-heading { margin-top: 0.5rem; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink-dark);
  max-width: 26ch;
}

.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 60ch;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--ink-forest);
  color: var(--bg-cream);
  border: 2px solid var(--ink-forest);
}
.btn--primary:hover { background: #142A1E; border-color: #142A1E; }

.btn--outline {
  background: transparent;
  color: var(--ink-forest);
  border: 2px solid var(--ink-forest);
}
.btn--outline:hover { background: var(--ink-forest); color: var(--bg-cream); }

.btn--ghost {
  background: transparent;
  color: var(--ink-forest);
  border: 2px solid var(--rule);
}
.btn--ghost:hover { border-color: var(--ink-forest); }

.btn--full { width: 100%; justify-content: center; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s;
}

.nav.scrolled {
  background: var(--bg-cream);
  box-shadow: 0 1px 0 var(--rule);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav__monogram {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink-forest);
  line-height: 1;
  border: 1.5px solid var(--ink-forest);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}
.nav__name {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-dark);
  letter-spacing: 0.01em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}
.nav__link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-mid);
  position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}
.nav__link:hover { color: var(--ink-dark); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--bg-cream);
  background: var(--ink-forest);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav__cta:hover { background: #142A1E; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 110;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink-dark);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--bg-paper);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink-dark);
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 45ch;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero__photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.hero__photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(12%);
  transition: filter 0.4s;
}
.hero__photo:hover { filter: grayscale(0%); }

.hero__badge {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-cream);
  border-left: 3px solid var(--gold);
}
.hero__badge-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero__badge-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* ─── HERO ANIMATIONS ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-1, .anim-2, .anim-3, .anim-4, .anim-5 {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) forwards;
}
.anim-1 { animation-delay: 0.1s; }
.anim-2 { animation-delay: 0.25s; }
.anim-3 { animation-delay: 0.4s; }
.anim-4 { animation-delay: 0.55s; }
.anim-5 { animation-delay: 0.7s; }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SOBRE ──────────────────────────────────────────────── */
.sobre__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.sobre__img-wrap {
  position: relative;
}
.sobre__photo {
  width: 100%;
  border-radius: 2px;
  filter: grayscale(10%);
  transition: filter 0.4s;
}
.sobre__photo:hover { filter: grayscale(0%); }
.sobre__caption {
  font-size: 0.72rem;
  color: var(--ink-light);
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule);
}

.sobre__text-col .eyebrow { margin-bottom: 0.6rem; }
.sobre__text-col .section-heading { margin-bottom: 1.5rem; }
.sobre__text-col .body-text { margin-bottom: 1.25rem; max-width: 55ch; }

.sobre__creds {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.sobre__creds-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.9rem;
}
.sobre__creds-list li {
  font-size: 0.92rem;
  color: var(--ink-mid);
  padding: 0.45rem 0;
  padding-left: 1rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.sobre__creds-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.sobre__since {
  font-size: 0.78rem;
  color: var(--ink-light);
  margin-top: 1.2rem;
  letter-spacing: 0.04em;
}

/* ─── ÁREAS ──────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.area-card {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
  position: relative;
}
.area-card:hover { background: var(--bg-cream); }
.area-card:nth-child(3n) { border-right: none; }
.area-card:nth-last-child(-n+3) { border-bottom: none; }

.area-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.area-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.area-card__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-light);
}

/* ─── NÚMEROS ────────────────────────────────────────────── */
.numeros { background: var(--ink-forest); }

.numeros__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.numeros__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 0.6rem;
}
.numeros__val {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.numeros__val sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--gold-soft);
}
.numeros__lbl {
  font-size: 0.8rem;
  color: rgba(245, 241, 232, 0.65);
  letter-spacing: 0.03em;
  max-width: 18ch;
  line-height: 1.5;
}
.numeros__sep {
  width: 1px;
  height: 80px;
  background: rgba(200, 191, 168, 0.25);
  flex-shrink: 0;
}

/* ─── DEPOIMENTOS ────────────────────────────────────────── */
.depos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depo {
  background: var(--bg-cream);
  padding: 2.25rem 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.depo__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.4;
  font-weight: 300;
  user-select: none;
}
.depo__text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--ink-mid);
  flex: 1;
}
.depo__footer { margin-top: auto; }
.depo__name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-dark);
  letter-spacing: 0.03em;
  font-style: normal;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq__wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.faq__header .eyebrow { margin-bottom: 0.6rem; }
.faq__header .section-heading { margin-bottom: 1rem; }
.faq__header .body-text { font-size: 0.92rem; }

.faq__list { border-top: 1px solid var(--rule); }

.faq-item { border-bottom: 1px solid var(--rule); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--ink-dark);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.35s var(--ease-out);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 1.25rem;
}
.faq-a p {
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--ink-mid);
  max-width: 58ch;
}

/* ─── ESCRITÓRIOS ────────────────────────────────────────── */
.offices-grid {
  display: grid;
  grid-template-columns: minmax(0, 480px);
  gap: 1.5rem;
}

.office {
  padding: 2rem 1.75rem;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  background: var(--bg-cream);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: box-shadow 0.2s;
}
.office:hover { box-shadow: 0 4px 20px rgba(31, 51, 41, 0.08); }

.office__city {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink-dark);
}
.office__addr {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-mid);
  flex: 1;
}
.office__map {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: letter-spacing 0.2s;
}
.office__map:hover { letter-spacing: 0.05em; }

/* ─── CONTATO ────────────────────────────────────────────── */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.contato__left .eyebrow { margin-bottom: 0.6rem; }
.contato__left .section-heading { margin-bottom: 1rem; }
.contato__left .body-text { margin-bottom: 2rem; }

.contato__channels {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}

.channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
  color: var(--ink-dark);
}
.channel:last-child { border-bottom: none; }
.channel:hover { background: var(--bg-paper); }
.channel svg { color: var(--gold); flex-shrink: 0; }
.channel__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.1rem;
}
.channel__value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-dark);
}

.contato__card {
  background: var(--ink-forest);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contato__card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bg-cream);
}
.contato__card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.75);
  margin-bottom: 0.5rem;
}
.contato__card .btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-dark);
}
.contato__card .btn--primary:hover { background: #a07d3e; border-color: #a07d3e; }
.contato__card .btn--ghost {
  border-color: rgba(200, 191, 168, 0.35);
  color: rgba(245, 241, 232, 0.8);
}
.contato__card .btn--ghost:hover {
  border-color: rgba(200, 191, 168, 0.7);
  color: var(--bg-cream);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--ink-dark);
  color: rgba(245, 241, 232, 0.7);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200, 191, 168, 0.15);
}

.footer__monogram {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 40px;
  margin-bottom: 1rem;
}
.footer__tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.55);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__nav a {
  font-size: 0.85rem;
  color: rgba(245, 241, 232, 0.6);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--gold); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__contact a {
  font-size: 0.85rem;
  color: rgba(245, 241, 232, 0.6);
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--bg-cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-block: 1.5rem;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(245, 241, 232, 0.35);
}
.footer__oab { font-size: 0.7rem !important; }

/* ─── RESPONSIVE: TABLET (≤ 1024px) ─────────────────────── */
@media (max-width: 1024px) {
  .sobre__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .area-card:nth-child(3n) { border-right: 1px solid var(--rule); }
  .area-card:nth-child(2n) { border-right: none; }
  .area-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--rule); }
  .area-card:nth-last-child(-n+2) { border-bottom: none; }
  .faq__wrap { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ─── RESPONSIVE: MOBILE (≤ 768px) ──────────────────────── */
@media (max-width: 768px) {
  html { font-size: 17px; }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0;
    background: var(--bg-cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 105;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { font-size: 1.25rem; }
  .nav__cta { font-size: 1rem; padding: 0.7rem 2rem; }

  .hero::before { display: none; }
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  .hero__visual {
    order: -1;
    flex-direction: row;
    align-items: flex-end;
    gap: 1rem;
  }
  .hero__photo-wrap { max-width: 55%; }
  .hero__badge { flex-direction: column; gap: 0.3rem; }
  .hero__heading { max-width: 100%; }

  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__photo-col { order: -1; }
  .sobre__photo { max-height: 380px; width: 100%; object-fit: cover; }

  .areas-grid { grid-template-columns: 1fr; }
  .area-card { border-right: none !important; }
  .area-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule) !important; }
  .area-card:last-child { border-bottom: none !important; }

  .numeros__grid { flex-direction: column; gap: 0; }
  .numeros__sep { width: 80px; height: 1px; }
  .numeros__item { padding: 2.5rem 1.5rem; }

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

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

  .contato__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer__bottom-right { align-items: flex-start; }
}

/* ─── RESPONSIVE: SMALL MOBILE (≤ 480px) ────────────────── */
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
}

/* ─── WHATSAPP FLUTUANTE ─────────────────────────────────── */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  60%       { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem 0.75rem 0.9rem;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: background 0.2s, transform 0.2s var(--ease-out), padding 0.3s;
  text-decoration: none;
  overflow: hidden;
  max-width: 52px;
}
.whatsapp-float:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  max-width: 200px;
  padding-right: 1.2rem;
}
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-float__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s 0.05s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-float__label { opacity: 1; }

/* ─── FOOTER: privacidade ────────────────────────────────── */
.footer__bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}
.footer__privacy {
  font-size: 0.72rem;
  color: rgba(245, 241, 232, 0.4);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.footer__privacy:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
