/* ===========================
   GUILHERME MACHADO — STYLE
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:      #0A1628;
  --navy-mid:  #1E2D45;
  --navy-lite: #2C3E55;
  --gold:      #B8A06A;
  --gold-lite: #D4BC8A;
  --cream:     #F8F9FA;
  --gray:      #6B7280;
  --border:    #E5E7EB;
  --white:     #FFFFFF;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --r-card: 16px;
  --r-btn:  12px;

  --shadow-card:  0 1px 3px rgba(10,22,40,.06), 0 4px 16px rgba(10,22,40,.05);
  --shadow-hover: 0 4px 24px rgba(10,22,40,.13), 0 1px 4px rgba(10,22,40,.07);
}

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

html {
  width: 100%; max-width: 100%;
  scroll-behavior: smooth; scroll-padding-top: 88px; font-size: 16px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  width: 100%; max-width: 100%;
  font-family: var(--sans);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.1; letter-spacing: -.02em; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
main, nav, section, footer, .container,
.grid-2 > *, .grid-3 > *, .grid-4 > *, .contact-grid > *,
.authority-grid > *, .coverage-layout > *, .footer__grid > * { min-width: 0; }

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

::selection { background: rgba(184,160,106,.2); color: var(--navy); }

/* ── Layout ── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
@media(min-width:1024px){ .container { padding: 0 3rem; } }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.75rem;
  background: var(--gold); color: var(--white);
  font-size: .9rem; font-weight: 500; border-radius: var(--r-btn);
  transition: background .2s;
}
.btn-primary:hover { background: #9A8455; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8);
  font-size: .9rem; font-weight: 500; border-radius: var(--r-btn);
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.75rem;
  background: var(--navy); color: var(--white);
  font-size: .9rem; font-weight: 500; border-radius: var(--r-btn);
  transition: background .2s;
}
.btn-dark:hover { background: var(--navy-mid); }

/* ── Eyebrow ── */
.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  color: var(--gold); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  margin-bottom: 1.25rem;
}
.eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); }

/* ── Gold divider ── */
.gold-line { width: 3rem; height: 2px; background: linear-gradient(90deg,var(--gold),var(--gold-lite)); border-radius: 1px; }

/* ── Section spacing ── */
.section { padding: clamp(4rem,8vw,8rem) 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); }

/* ── Section header ── */
.section-header { max-width: 640px; margin-bottom: 3.5rem; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.center .eyebrow { justify-content: center; }

/* ── Headings scale ── */
.h-display { font-size: 4rem; }
.h-xl      { font-size: 2.8rem; }
.h-lg      { font-size: 2.2rem; }
.h-md      { font-size: 1.5rem; }

@media(max-width:1024px){
  .h-display { font-size: 3.25rem; }
  .h-xl { font-size: 2.4rem; }
  .h-lg { font-size: 2rem; }
}

.text-lead { font-size: 1.1rem; line-height: 1.7; color: var(--gray); }
.text-body { font-size: .95rem; line-height: 1.7; color: var(--gray); }

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media(max-width:1024px){ .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:768px){
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
}

/* ── Cards ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s, border-color .3s;
}
.card:hover { box-shadow: var(--shadow-hover); border-color: rgba(184,160,106,.3); }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 12px rgba(10,22,40,.08);
  backdrop-filter: blur(8px);
}
.navbar__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
@media(min-width:1024px){ .navbar__inner { padding: 0 3rem; } }

.navbar__logo {
  position: relative; flex: 0 0 auto; width: 205px; height: 54px;
  background: transparent url('images/branca_horizontal.png') center / 100% auto no-repeat;
}
.navbar.scrolled .navbar__logo {
  background-image: url('images/colorida_horizontal.png');
  background-size: calc(100% - 8px) auto;
}
.navbar__logo-name {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.navbar__logo-sub {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.navbar__links {
  display: none; list-style: none; gap: .25rem; align-items: center;
}
@media(min-width:1024px){ .navbar__links { display: flex; } }

.navbar__links a {
  padding: .5rem .75rem; font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.8); border-radius: 8px; transition: color .2s;
}
.navbar__links a:hover { color: white; }
.navbar.scrolled .navbar__links a { color: var(--navy-lite); }
.navbar.scrolled .navbar__links a:hover { color: var(--navy); }
.navbar__links a.active { color: white; }
.navbar.scrolled .navbar__links a.active { color: var(--navy); font-weight: 600; }

.navbar__cta {
  display: none;
}
@media(min-width:1024px){ .navbar__cta { display: flex; align-items: center; gap: 1rem; } }

.navbar__cta-link {
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.75); transition: color .2s;
}
.navbar__cta-link:hover { color: white; }
.navbar.scrolled .navbar__cta-link { color: var(--navy-lite); }
.navbar.scrolled .navbar__cta-link:hover { color: var(--navy); }

.navbar__btn {
  padding: .6rem 1.25rem; background: var(--gold); color: white;
  font-size: .8rem; font-weight: 500; border-radius: var(--r-btn);
  transition: background .2s;
}
.navbar__btn:hover { background: #9A8455; }

/* hamburger */
.navbar__burger {
  display: flex; flex-direction: column; gap: 5px; padding: .5rem;
  cursor: pointer; background: none; border: none;
}
@media(min-width:1024px){ .navbar__burger { display: none; } }
.navbar__burger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: background .3s;
}
.navbar.scrolled .navbar__burger span { background: var(--navy); }

/* mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 200;
  visibility: hidden; pointer-events: none;
  transition: visibility 0s linear .35s;
}
.nav-drawer.open {
  visibility: visible; pointer-events: auto;
  transition-delay: 0s;
}
.nav-drawer__bg {
  position: absolute; inset: 0;
  background: rgba(10,22,40,.75); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s ease;
}
.nav-drawer.open .nav-drawer__bg { opacity: 1; }
.nav-drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(320px, 90vw); background: white;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.nav-drawer.open .nav-drawer__panel { transform: translateX(0); }
.nav-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 72px; border-bottom: 1px solid var(--border);
}
.nav-drawer__head span { font-family: var(--serif); font-weight: 600; color: var(--navy); }
.nav-drawer__close { font-size: 1.4rem; color: var(--gray); background: none; border: none; cursor: pointer; line-height: 1; }
.nav-drawer__links { flex: 1; overflow-y: auto; padding: .5rem 0; list-style: none; }
.nav-drawer__links a {
  display: block; padding: 1rem 1.5rem;
  font-size: .95rem; font-weight: 500; color: var(--navy);
  transition: background .15s;
}
.nav-drawer__links a:hover { background: var(--cream); }
.nav-drawer__foot { padding: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: .75rem; }
.nav-drawer__foot a:first-child {
  text-align: center; padding: .85rem; border: 1.5px solid var(--navy);
  color: var(--navy); font-size: .875rem; font-weight: 500; border-radius: var(--r-btn);
  transition: background .2s, color .2s;
}
.nav-drawer__foot a:first-child:hover { background: var(--navy); color: white; }
.nav-drawer__foot a:last-child {
  text-align: center; padding: .85rem; background: var(--gold);
  color: white; font-size: .875rem; font-weight: 500; border-radius: var(--r-btn);
  transition: background .2s;
}
.nav-drawer__foot a:last-child:hover { background: #9A8455; }

/* ── Hero (home) ── */
.hero {
  min-height: 100vh; min-height: 100svh; display: flex; align-items: center;
  background: var(--navy); position: relative; overflow: hidden;
}
.hero__bg-img {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%; object-fit: cover; object-position: top center;
  opacity: .4;
}
@media(max-width:768px){ .hero__bg-img { width: 100%; opacity: .15; } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy) 45%, transparent 80%);
}
@media(max-width:768px){ .hero__overlay { background: linear-gradient(to bottom, rgba(10,22,40,.9) 60%, var(--navy)); } }
.hero__gold-top { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,rgba(184,160,106,.5),transparent); }
.hero__content { position: relative; z-index: 2; max-width: 640px; padding: 8rem 0 5rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem; border-radius: 999px;
  border: 1px solid rgba(184,160,106,.3); background: rgba(184,160,106,.1);
  color: var(--gold-lite); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero__title { color: white; margin-bottom: 1.25rem; }
.hero__title em { display: block; font-style: italic; color: var(--gold-lite); }
.hero__sub { color: rgba(255,255,255,.6); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 520px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 2rem; }
.hero__stat-value { font-family: var(--serif); color: white; font-size: 1.3rem; font-weight: 600; white-space: pre-line; line-height: 1.2; }
.hero__stat-label { color: rgba(255,255,255,.35); font-size: .75rem; margin-top: .25rem; }
.hero__bottom-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 8rem; background: linear-gradient(to top, white, transparent); }

.hero__badge,
.hero__title,
.hero__sub,
.hero__ctas,
.hero__stats {
  opacity: 0;
  animation: enter-up .75s cubic-bezier(.22,1,.36,1) forwards;
}
.hero__title { animation-delay: .08s; }
.hero__sub { animation-delay: .16s; }
.hero__ctas { animation-delay: .24s; }
.hero__stats { animation-delay: .32s; }
.hero__bg-img { animation: image-settle 1.2s cubic-bezier(.22,1,.36,1) both; }

/* ── Stats row ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy); gap: 0;
}
@media(max-width:768px){ .stats-row { grid-template-columns: repeat(2,1fr); } }
.stats-row__item {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stats-row__item:last-child { border-right: none; }
.stats-row__val { font-family: var(--serif); color: white; font-size: 2rem; font-weight: 600; white-space: pre-line; line-height: 1.2; }
.stats-row__lbl { color: rgba(255,255,255,.4); font-size: .75rem; margin-top: .5rem; }

/* ── Problem cards ── */
.problem-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 10px;
  background: rgba(10,22,40,.05); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: background .3s;
}
.card:hover .problem-icon { background: rgba(184,160,106,.12); }
.problem-icon svg { width: 18px; height: 18px; color: var(--navy); transition: color .3s; }
.card:hover .problem-icon svg { color: var(--gold); }

/* ── Services grid ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden;
}
@media(max-width:1024px){ .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px){ .services-grid { grid-template-columns: 1fr; } }
.service-item {
  padding: 2.5rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background .3s; cursor: default;
}
.service-item:hover { background: var(--navy); }
.service-item__num { font-size: .65rem; letter-spacing: .18em; color: var(--gold); margin-bottom: .5rem; font-weight: 500; transition: color .3s; }
.service-item:hover .service-item__num { color: var(--gold-lite); }
.service-item h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--navy); margin-bottom: .75rem; transition: color .3s; }
.service-item:hover h3 { color: white; }
.service-item p { font-size: .875rem; line-height: 1.65; color: var(--gray); transition: color .3s; }
.service-item:hover p { color: rgba(255,255,255,.55); }
.service-item__arrow { margin-top: 1.25rem; font-size: .75rem; color: var(--gold); font-weight: 500; display: flex; align-items: center; gap: .35rem; transition: color .3s; }
.service-item:hover .service-item__arrow { color: var(--gold-lite); }

/* ── Services page cards ── */
.service-offers-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem;
}
.service-offer-card {
  display: flex; flex-direction: column; min-width: 0; padding: 2rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-card); box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,160,106,.38); box-shadow: var(--shadow-hover);
}
.service-offer-card__top {
  display: flex; justify-content: space-between; align-items: center; gap: .75rem;
  margin-bottom: 1.25rem;
}
.service-offer-card__num {
  color: var(--gold); font-size: .67rem; font-weight: 600; letter-spacing: .16em;
}
.service-offer-card__badge {
  padding: .35rem .65rem; border: 1px solid rgba(184,160,106,.3);
  border-radius: 999px; background: rgba(184,160,106,.08); color: #8d7542;
  font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.service-offer-card h3 {
  color: var(--navy); font-size: 1.35rem; margin-bottom: .75rem;
}
.service-offer-card > p {
  color: var(--gray); font-size: .875rem; line-height: 1.68; margin-bottom: 1.25rem;
}
.service-offer-card ul {
  display: flex; flex-direction: column; gap: .55rem; list-style: none;
  margin-bottom: 1.5rem;
}
.service-offer-card li {
  display: flex; align-items: flex-start; gap: .55rem;
  color: var(--gray); font-size: .8rem; line-height: 1.5;
}
.service-offer-card li::before {
  content: '✓'; flex: 0 0 auto; color: var(--gold); font-weight: 600;
}
.service-offer-card__link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: auto;
  color: var(--navy); font-size: .8rem; font-weight: 600;
}
.service-offer-card__link:hover { color: #8d7542; }
@media(max-width:1024px){ .service-offers-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media(max-width:680px){ .service-offers-grid { grid-template-columns: 1fr; } }

/* ── Methodology cards ── */
.method-card {
  padding: 2.5rem; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-card); background: rgba(255,255,255,.03);
  transition: background .3s, border-color .3s;
}
.method-card:hover { background: rgba(255,255,255,.06); border-color: rgba(184,160,106,.3); }
.method-card__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .85rem; border-radius: 999px;
  border: 1px solid rgba(184,160,106,.3); background: rgba(184,160,106,.1);
  color: var(--gold-lite); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.method-card h3 { font-family: var(--serif); font-size: 1.8rem; color: white; margin-bottom: .35rem; }
.method-card__sub { color: var(--gold); font-size: .85rem; margin-bottom: 1rem; }
.method-card p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.65; margin-bottom: 1.5rem; }
.method-card ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.75rem; }
.method-card ul li { display: flex; align-items: flex-start; gap: .65rem; color: rgba(255,255,255,.7); font-size: .875rem; }
.method-card ul li::before { content: ''; flex-shrink: 0; width: 14px; height: 14px; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8A06A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }
.method-card__link { color: var(--gold-lite); font-size: .85rem; font-weight: 500; display: inline-flex; align-items: center; gap: .35rem; transition: color .2s; }
.method-card__link:hover { color: white; }

/* ── Authority block ── */
.authority-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
@media(max-width:1024px){ .authority-grid { grid-template-columns: 1fr; gap: 3rem; } }
.authority-photo { border-radius: var(--r-card); overflow: hidden; position: relative; }
.authority-photo img { width: 100%; height: 520px; object-fit: cover; object-position: top; display: block; }
.authority-photo__bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-lite), var(--gold)); }
.authority-namecard { padding: 1.25rem 1.5rem; background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-card); margin-top: .75rem; }
.authority-namecard strong { font-family: var(--serif); color: var(--navy); font-size: 1.1rem; display: block; }
.authority-namecard span { color: var(--gold); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; margin-top: .2rem; display: block; }
.authority-namecard p { color: var(--gray); font-size: .825rem; line-height: 1.6; margin-top: .65rem; }
.authority-diffs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.75rem; }
@media(max-width:640px){ .authority-diffs { grid-template-columns: 1fr; } }
.diff-item { display: flex; gap: .875rem; align-items: flex-start; }
.diff-dot { flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 8px; background: rgba(10,22,40,.05); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.diff-dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.diff-item h4 { font-family: var(--sans); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: .3rem; }
.diff-item p { color: var(--gray); font-size: .8rem; line-height: 1.6; }

/* ── Process ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
@media(max-width:768px){ .process-steps { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .process-steps { grid-template-columns: 1fr; } }
.process-step__num {
  width: 4rem; height: 4rem; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; background: white;
  font-size: .6rem; color: var(--gold); font-weight: 600; letter-spacing: .1em;
}
.process-step h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); margin-bottom: .5rem; }
.process-step p { color: var(--gray); font-size: .825rem; line-height: 1.65; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; padding: 1.25rem 0; text-align: left; cursor: pointer; background: none; border: none;
}
.faq-btn span { font-weight: 500; font-size: .95rem; color: var(--navy-lite); line-height: 1.5; }
.faq-toggle {
  flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  margin-top: 1px; transition: background .2s, border-color .2s;
  font-size: 1rem; color: var(--gray);
}
.faq-item.open .faq-toggle { background: var(--gold); border-color: var(--gold); color: white; }
.faq-answer {
  display: grid; grid-template-rows: 0fr;
  opacity: 0; transition: grid-template-rows .3s ease, opacity .25s ease, padding-bottom .3s ease;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; opacity: 1; padding-bottom: 1.25rem; }
.faq-answer p { min-height: 0; overflow: hidden; color: var(--gray); font-size: .875rem; line-height: 1.7; }

/* ── CTA Section ── */
.cta-section {
  background: var(--navy); padding: clamp(4rem,8vw,7rem) 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section__top-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,rgba(184,160,106,.3),transparent); }
.cta-section h2 { color: white; font-size: 3rem; margin-bottom: 1rem; }
.cta-section h2 em { font-style: italic; color: var(--gold-lite); }
.cta-section p { color: rgba(255,255,255,.5); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-section__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-section__note { color: rgba(255,255,255,.2); font-size: .75rem; margin-top: 2rem; }

/* ── WhatsApp float ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .25s, box-shadow .2s, opacity .25s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.45); }
.wa-float svg { width: 1.6rem; height: 1.6rem; fill: white; }
body.wa-float-ready .wa-float {
  opacity: 0; pointer-events: none; transform: translateY(12px) scale(.92);
}
body.wa-float-ready .wa-float.is-visible {
  opacity: 1; pointer-events: auto; transform: translateY(0) scale(1);
}
@media(max-width:768px){ .wa-float { bottom: 1.5rem; right: 1.25rem; } }

/* ── Footer ── */
.footer { background: var(--navy); color: white; }
.footer__main { padding: 5rem 0 3rem; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 3rem; }
@media(max-width:1024px){ .footer__grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:640px){ .footer__grid { grid-template-columns: 1fr; } }
.footer__brand-name {
  width: min(220px, 100%); height: 76px; overflow: hidden; color: transparent; font-size: 0;
  background: transparent url('images/branca_horizontal.png') center / 100% auto no-repeat;
}
.footer__brand-sub { display: none; }
.footer__brand-desc { color: rgba(255,255,255,.45); font-size: .825rem; line-height: 1.65; margin-top: 1rem; max-width: 22ch; }
.footer__contact { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .65rem; }
.footer__contact-item { display: flex; align-items: flex-start; gap: .6rem; color: rgba(255,255,255,.45); font-size: .8rem; }
.footer__contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer__col-title { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1rem; }
.footer__col-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer__col-links a { color: rgba(255,255,255,.4); font-size: .825rem; transition: color .2s; }
.footer__col-links a:hover { color: white; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__legal { display: flex; flex-direction: column; gap: .35rem; }
.footer__copy, .footer__oab, .footer__credits { color: rgba(255,255,255,.35); font-size: .75rem; line-height: 1.5; }
.footer__credits a { color: var(--gold-lite); transition: color .2s ease; }
.footer__credits a:hover { color: white; }

/* ── Page heroes (inner pages) ── */
.page-hero { background: var(--navy); padding: 7rem 0 4.5rem; }
.page-hero .breadcrumb { display: flex; gap: .5rem; align-items: center; color: rgba(255,255,255,.35); font-size: .75rem; margin-bottom: 2rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.page-hero .breadcrumb a:hover { color: white; }
.page-hero .breadcrumb span { color: rgba(255,255,255,.6); }
.page-hero h1 { color: white; font-size: 3rem; max-width: 600px; margin-bottom: 1.25rem; }
.page-hero p { color: rgba(255,255,255,.55); font-size: 1.05rem; line-height: 1.7; max-width: 560px; margin-bottom: 2rem; }
.page-hero__btns { display: flex; flex-wrap: wrap; gap: .875rem; }

.page-hero .breadcrumb,
.page-hero h1,
.page-hero p,
.page-hero__btns,
.article-hero .breadcrumb,
.article-hero .article-meta,
.article-hero h1,
.article-hero p {
  opacity: 0;
  animation: enter-up .7s cubic-bezier(.22,1,.36,1) forwards;
}
.page-hero h1, .article-hero .article-meta { animation-delay: .08s; }
.page-hero p, .article-hero h1 { animation-delay: .16s; }
.page-hero__btns, .article-hero p { animation-delay: .24s; }

/* ── About page ── */
.about-bio { display: grid; grid-template-columns: 400px 1fr; gap: 5rem; align-items: start; }
@media(max-width:1024px){ .about-bio { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-photo { border-radius: var(--r-card); overflow: hidden; position: sticky; top: 6rem; }
.about-photo img { width: 100%; max-height: 580px; object-fit: cover; object-position: top; }
.about-photo__bar { height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-lite)); }
.about-namecard { background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-card); padding: 1.25rem 1.5rem; margin-top: .75rem; }
.about-namecard strong { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); display: block; }
.about-namecard em { color: var(--gold); font-style: normal; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; display: block; margin-top: .2rem; }
.about-namecard p { color: var(--gray); font-size: .8rem; line-height: 1.6; margin-top: .6rem; }
.about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-text p { color: var(--navy-lite); font-size: .95rem; line-height: 1.8; }

/* ── Stat boxes ── */
.stat-boxes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2.5rem 0; }
@media(max-width:768px){ .stat-boxes { grid-template-columns: repeat(2,1fr); } }
.stat-box { background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-card); padding: 1.25rem; text-align: center; }
.stat-box strong { font-family: var(--serif); font-size: 1.8rem; color: var(--navy); display: block; }
.stat-box span { color: var(--gray); font-size: .75rem; margin-top: .25rem; display: block; line-height: 1.4; }

/* ── Services page ── */
.service-detail { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; }
@media(max-width:1024px){ .service-detail { grid-template-columns: 1fr; } }
.service-detail__benefits { background: var(--navy); border-radius: var(--r-card); padding: 2rem; }
.service-detail__benefits h4 { color: var(--gold); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--sans); }
.service-detail__benefits ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.service-detail__benefits li { display: flex; align-items: flex-start; gap: .65rem; color: rgba(255,255,255,.75); font-size: .875rem; line-height: 1.5; }
.service-detail__benefits li::before { content: ''; flex-shrink: 0; width: 14px; height: 14px; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8A06A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media(max-width:1024px){ .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px){ .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: flex; flex-direction: column; }
.blog-card__img { display: block; aspect-ratio: 16/9; border-radius: var(--r-card); overflow: hidden; background: linear-gradient(135deg, rgba(10,22,40,.08), rgba(184,160,106,.12)); margin-bottom: 1.25rem; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__cat { font-size: .7rem; color: var(--gold); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .6rem; }
.blog-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: .6rem; line-height: 1.35; transition: color .2s; }
.blog-card:hover h3 { color: var(--gold); }
.blog-card p { color: var(--gray); font-size: .85rem; line-height: 1.65; flex: 1; margin-bottom: .875rem; }
.blog-card__read { font-size: .8rem; font-weight: 500; color: var(--navy); display: inline-flex; align-items: center; gap: .3rem; transition: color .2s; }
.blog-card:hover .blog-card__read { color: var(--gold); }

/* ── Article pages ── */
.article-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--navy); padding: 8rem 0 5rem;
}
.article-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background-image: linear-gradient(90deg, rgba(10,22,40,.93), rgba(10,22,40,.74) 48%, rgba(10,22,40,.52)), var(--article-cover);
  background-size: cover; background-position: center;
}
.article-hero::after {
  content: ''; position: absolute; inset: auto 0 0; height: 10rem; z-index: -1;
  background: linear-gradient(to top, var(--white), transparent);
}
.article-hero .breadcrumb { display: flex; gap: .5rem; align-items: center; color: rgba(255,255,255,.45); font-size: .75rem; margin-bottom: 2rem; }
.article-hero .breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.article-hero .breadcrumb a:hover { color: white; }
.article-hero h1 {
  color: white; font-size: 3.35rem;
  max-width: 820px; margin: 0 0 1.25rem; letter-spacing: 0;
  overflow-wrap: break-word; hyphens: auto;
}
.article-hero p { color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.75; max-width: 720px; }
.article-meta { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1rem; }
.article-meta span {
  display: inline-flex; align-items: center; min-height: 28px; padding: .35rem .75rem;
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  color: rgba(255,255,255,.78); background: rgba(255,255,255,.07);
  font-size: .7rem; text-transform: uppercase; letter-spacing: .08em;
}
.article-main { padding: clamp(3.5rem,7vw,6rem) 0; background: white; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 320px; gap: clamp(2.5rem,5vw,4.5rem); align-items: start; }
@media(max-width:1024px){ .article-layout { grid-template-columns: 1fr; } }
.article-content { min-width: 0; }
.article-lead { color: var(--navy-lite); font-size: 1.08rem; line-height: 1.85; margin-bottom: 2rem; }
.article-content p { color: var(--navy-lite); font-size: .98rem; line-height: 1.85; margin-bottom: 1.25rem; }
.article-content h2 { color: var(--navy); font-size: 1.7rem; margin: 2.6rem 0 1rem; letter-spacing: 0; }
.article-content h3 { color: var(--navy); font-family: var(--sans); font-size: 1rem; font-weight: 600; margin: 1.75rem 0 .6rem; letter-spacing: 0; }
.article-content ul, .article-content ol { margin: 0 0 1.5rem 1.15rem; color: var(--navy-lite); font-size: .95rem; line-height: 1.8; }
.article-content li { padding-left: .25rem; margin-bottom: .55rem; }
.article-figure { margin: 2.25rem 0; }
.article-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r-card); }
.article-figure figcaption { color: var(--gray); font-size: .78rem; line-height: 1.55; margin-top: .65rem; }
.article-callout {
  border-left: 3px solid var(--gold); background: var(--cream);
  padding: 1.35rem 1.5rem; margin: 2rem 0; color: var(--navy-lite);
  font-size: .95rem; line-height: 1.75;
}
.article-note {
  border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 1.25rem 1.35rem; margin-top: 2.5rem;
  color: var(--gray); font-size: .82rem; line-height: 1.7; background: white;
}
.article-sidebar { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1rem; }
@media(max-width:1024px){ .article-sidebar { position: static; } }
.article-sidebox {
  background: var(--navy); border-radius: var(--r-card); padding: 1.5rem;
  color: white; box-shadow: var(--shadow-card);
}
.article-sidebox--light { background: var(--cream); color: var(--navy); border: 1px solid var(--border); box-shadow: none; }
.article-sidebox span {
  display: block; color: var(--gold); font-size: .65rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: .75rem;
}
.article-sidebox h2 { font-size: 1.25rem; color: inherit; margin: 0 0 .75rem; letter-spacing: 0; }
.article-sidebox p { color: rgba(255,255,255,.62); font-size: .85rem; line-height: 1.65; margin-bottom: 1.1rem; }
.article-sidebox--light p { color: var(--gray); }
.article-sidebox .btn-primary, .article-sidebox .btn-dark { width: 100%; padding: .82rem 1rem; }
.article-related { display: flex; flex-direction: column; gap: .85rem; }
.article-related a {
  color: var(--navy-lite); font-size: .86rem; line-height: 1.45;
  padding-bottom: .85rem; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.article-related a:last-child { border-bottom: 0; padding-bottom: 0; }
.article-related a:hover { color: var(--gold); }
@media(max-width:520px){
  .article-hero { padding: 7.25rem 0 4rem; }
  .article-hero h1 { font-size: 1.86rem; line-height: 1.12; }
  .article-hero p { font-size: .98rem; }
  .article-meta span { font-size: .62rem; }
}

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: start; }
@media(max-width:1024px){ .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }
label { display: block; font-size: .75rem; font-weight: 500; color: var(--navy); letter-spacing: .04em; margin-bottom: .5rem; }
input, select, textarea {
  width: 100%; padding: .875rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--r-btn);
  font-family: var(--sans); font-size: .9rem; color: var(--navy);
  background: white; transition: border-color .2s; outline: none;
}
input::placeholder, textarea::placeholder { color: #9CA3AF; }
input:focus, select:focus, textarea:focus { border-color: var(--navy); }
textarea { resize: none; min-height: 110px; }
.form-submit {
  width: 100%; padding: 1rem; background: var(--navy); color: white;
  font-size: .9rem; font-weight: 500; border-radius: var(--r-btn); cursor: pointer;
  border: none; transition: background .2s; font-family: var(--sans);
}
.form-submit:hover { background: var(--navy-mid); }
.form-note { text-align: center; color: var(--gray); font-size: .75rem; margin-top: .75rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-card); padding: 1.5rem 2rem; }
.contact-card--dark { background: var(--navy); border-color: transparent; }
.contact-card h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); margin-bottom: .4rem; }
.contact-card--dark h3 { color: white; }
.contact-card p { color: var(--gray); font-size: .85rem; line-height: 1.6; margin-bottom: 1rem; }
.contact-card--dark p { color: rgba(255,255,255,.55); }
.contact-card__link-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.25rem; background: #25D366; color: white;
  font-size: .85rem; font-weight: 500; border-radius: var(--r-btn);
  transition: background .2s;
}
.contact-card__link-wa:hover { background: #20BB5A; }
.contact-row { display: flex; align-items: flex-start; gap: .75rem; }
.contact-row svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-row div { min-width: 0; }
.contact-row div strong { font-size: .85rem; color: var(--navy); display: block; }
.contact-row div span, .contact-row div a {
  font-size: .8rem; color: var(--gray); display: block; margin-top: .15rem;
  overflow-wrap: anywhere; word-break: break-word;
}
.contact-row div a:hover { color: var(--navy); }
.contact-details { display: flex; flex-direction: column; gap: .875rem; }

/* ── Coverage map ── */
.coverage-section .section-header { max-width: 720px; }
.coverage-section .section-header p { margin: 1rem auto 0; max-width: 580px; }
.coverage-layout {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
  gap: 1.5rem; align-items: stretch;
}
.coverage-map {
  position: relative; min-height: 500px; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--r-card);
  background: #dfe5e3; box-shadow: var(--shadow-card);
}
.coverage-map iframe { display: block; width: 100%; height: 100%; min-height: 500px; border: 0; }
.coverage-map__link {
  position: absolute; left: 1rem; bottom: 1rem;
  display: inline-flex; align-items: center; gap: .55rem;
  max-width: calc(100% - 2rem); padding: .75rem 1rem;
  background: rgba(10,22,40,.94); color: white; border-radius: var(--r-btn);
  box-shadow: 0 8px 24px rgba(10,22,40,.22);
  font-size: .78rem; font-weight: 500;
  transition: background .2s, transform .2s;
}
.coverage-map__link svg {
  width: 16px; height: 16px; flex-shrink: 0;
  fill: none; stroke: var(--gold-lite); stroke-width: 1.8;
}
.coverage-map__link:hover { background: var(--navy-mid); transform: translateY(-2px); }
.coverage-panel {
  display: flex; flex-direction: column; min-width: 0; padding: 2rem;
  background: var(--navy); color: white; border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}
.coverage-panel__label {
  color: var(--gold-lite); font-size: .65rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: .8rem;
}
.coverage-panel h3 { color: white; font-size: 1.45rem; margin-bottom: .65rem; }
.coverage-panel > p { color: rgba(255,255,255,.58); font-size: .82rem; line-height: 1.65; margin-bottom: 1.35rem; }
.coverage-cities { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
.coverage-cities a {
  display: flex; align-items: center; gap: .55rem; min-width: 0;
  padding: .7rem .75rem; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-btn); color: rgba(255,255,255,.78);
  font-size: .77rem; transition: border-color .2s, color .2s, background .2s;
}
.coverage-cities a span {
  width: 6px; height: 6px; flex-shrink: 0; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 3px rgba(184,160,106,.12);
}
.coverage-cities a:hover {
  color: white; border-color: rgba(184,160,106,.45);
  background: rgba(255,255,255,.05);
}
.coverage-panel__state {
  display: flex; flex-direction: column; gap: .2rem;
  margin-top: 1.25rem; padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.coverage-panel__state strong { color: white; font-size: .8rem; font-weight: 500; }
.coverage-panel__state span { color: rgba(255,255,255,.45); font-size: .72rem; line-height: 1.5; }
.coverage-panel__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: auto; padding-top: 1.35rem; color: var(--gold-lite);
  font-size: .8rem; font-weight: 500; transition: color .2s;
}
.coverage-panel__cta svg {
  width: 18px; height: 18px; fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s;
}
.coverage-panel__cta:hover { color: white; }
.coverage-panel__cta:hover svg { transform: translateX(4px); }

/* ── Reveal animations ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

@keyframes enter-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes image-settle {
  from { opacity: 0; transform: scale(1.035); }
  to { transform: scale(1); }
}

@media(max-width:1024px){
  .article-hero h1 { font-size: 2.65rem; }
  .about-photo { position: relative; top: auto; max-width: 520px; }
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-map, .coverage-map iframe { min-height: 430px; }
  .coverage-panel__cta { margin-top: 1rem; }
}

@media(max-width:768px){
  .container, .navbar__inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .section-header { margin-bottom: 2.5rem; }
  .hero__content { max-width: 100%; padding: 7rem 0 4rem; }
  .hero__ctas, .page-hero__btns, .cta-section__btns { align-items: stretch; }
  .hero__ctas > a, .page-hero__btns > a, .cta-section__btns > a { flex: 1 1 220px; }
  .hero__stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem 1rem; width: 100%; }
  .hero__stat-value { font-size: 1.15rem; }
  .hero__bottom-fade { height: 4rem; }
  .stats-row__item { padding: 2rem .75rem; }
  .stats-row__item:nth-child(2) { border-right: none; }
  .stats-row__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.07); }
  .card, .method-card, .service-item { padding: 1.5rem; }
  .service-offer-card { padding: 1.5rem; }
  .authority-photo img { height: auto; max-height: 560px; aspect-ratio: 4/5; }
  .page-hero { padding: 6.5rem 0 3.5rem; }
  .page-hero h1 { font-size: 2.35rem; }
  .page-hero .breadcrumb, .article-hero .breadcrumb { flex-wrap: wrap; }
  .footer__main { padding: 3.5rem 0 2.5rem; }
  .footer__grid { gap: 2.25rem; }
  .footer__bottom { align-items: flex-start; }
  .contact-card { padding: 1.5rem; }
  .coverage-map, .coverage-map iframe { min-height: 360px; }
  .coverage-panel { padding: 1.5rem; }
  .wa-float {
    width: 3.25rem; height: 3.25rem;
    bottom: max(1rem, env(safe-area-inset-bottom)); right: 1rem;
  }
}

@media(max-width:640px){
  .h-display { font-size: 2.15rem; }
  .h-xl { font-size: 1.85rem; }
  .h-lg { font-size: 1.6rem; }
  .h-md { font-size: 1.3rem; }
  .text-lead { font-size: 1rem; }
  .hero__badge { max-width: 100%; line-height: 1.5; letter-spacing: .12em; }
  .hero__sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero__ctas { margin-bottom: 2.75rem; }
  .btn-primary, .btn-outline, .btn-dark {
    width: 100%; padding-left: 1rem; padding-right: 1rem;
    white-space: normal !important; text-align: center;
  }
  .cta-section h2 { font-size: 2rem; }
  .page-hero h1 { font-size: 2rem; }
  .article-hero h1 { font-size: 2rem; }
  .stat-boxes { gap: .75rem; }
  .stat-box { padding: 1rem .75rem; }
  .stat-box strong { font-size: 1.5rem; }
  .article-callout, .article-note { padding: 1.1rem; }
}

@media(max-width:420px){
  .container, .navbar__inner { padding-left: 1rem; padding-right: 1rem; }
  .navbar__inner, .nav-drawer__head { height: 64px; }
  .navbar__logo { width: 168px; height: 48px; }
  .hero__content { padding: 6.25rem 0 3.5rem; }
  .hero__stats { gap: 1.25rem .75rem; }
  .stats-row__val { font-size: 1.65rem; }
  .footer__bottom { flex-direction: column; }
  .article-meta { gap: .4rem; }
  .article-hero h1 { font-size: 1.85rem; }
  .coverage-map, .coverage-map iframe { min-height: 320px; }
  .coverage-map__link { left: .75rem; bottom: .75rem; max-width: calc(100% - 1.5rem); }
  .coverage-cities { grid-template-columns: 1fr; }
}

.btn-primary, .btn-outline, .btn-dark, .navbar__btn {
  transition-property: background, border-color, color, transform, box-shadow;
  transition-duration: .2s;
}

@media(hover:hover) and (pointer:fine){
  .btn-primary:hover, .btn-dark:hover, .btn-outline:hover, .navbar__btn:hover {
    transform: translateY(-2px);
  }
}

@media(prefers-reduced-motion:reduce){
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Utility ── */
.mt-sm { margin-top: .75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mb-sm { margin-bottom: .75rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: white; }
.text-gray { color: var(--gray); }
