/* ─── RESET & VARIABLES ─────────────────────────────────────────────────── */
:root {
  --navy:       #0d2b4a;
  --navy-dark:  #071e35;
  --blue-mid:   #1565c0;
  --blue-light: #e3ecfb;
  --gold:       #f5a40e;
  --light-gold: #f8e4c1;
  --gold-bg:    #f5f5f4;
  --white:      #ffffff;
  --gray-bg:    #f5f7fa;
  --text:       #0d2b4a;
  --text-body:  #4a5568;
  --border:     #e2e8f0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  scroll-behavior: smooth;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; scroll-margin-top: 5rem; }
body { background: var(--white); color: var(--text); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }

/* ─── CONTAINER ─────────────────────────────────────────────────────────── */
.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* ─── HEADER ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.85rem 0;
}

/* Logo */
@media screen and (max-width: 992px) {
  .logo img {
    height: 32px;
    width: auto;
}
}

.logo-b {
  width: 32px;
  height: 38px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-pg {
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.logo-adv {
  font-size: 0.68rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.logo-sep {
  width: 1px;
  height: 36px;
  background: var(--navy);
  margin: 0 0.3rem;
  opacity: 0.25;
}

.logo-years {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.logo-num {
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--navy);
  line-height: 1;
}

.logo-anos {
  font-size: 0.6rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: 1;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.main-nav a:hover { color: var(--blue-mid); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(245,164,14,0.3);
}

.btn-gold:hover { box-shadow: 0 6px 28px rgba(245,164,14,0.45); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-header { font-size: 0.88rem; padding: 0.65rem 1.2rem; }
.btn-header-mobile { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url(./images/hero-bg.webp) center/cover no-repeat;
}

/* City silhouette pattern */




.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 0 1.25rem;
}

.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 720px;
  margin-bottom: 1rem;
}

.hero-content p + p { margin-bottom: 2rem; }

/* ─── BADGES ────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-light {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.dot-white { background: var(--white); }

.badge-blue {
  border: 1px solid var(--blue-mid);
  color: var(--blue-mid);
  background: rgba(21,101,192,0.06);
}

.dot-blue { background: var(--blue-mid); }

.badge-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.dot-gold { background: var(--gold); }

/* ─── SECTIONS ──────────────────────────────────────────────────────────── */
.sec { padding: 5rem 0; }
.sec-white { background: var(--white); }
.sec-gray  { background: var(--gray-bg); }
.sec-dark  { background: var(--navy); }

.sec h2 {
  font-size: clamp(1.7rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--navy);
}

.sec p { color: var(--text-body); margin-bottom: 0.85rem; }
.sec-lead { color: var(--text-body); margin-bottom: 1.75rem; }
.sec-note { color: var(--text-body); margin-top: 1.75rem; font-size: 0.95rem; }

.h2-white { color: var(--white) !important; }
.p-white  { color: rgba(255,255,255) !important; }
.p-bold   { font-weight: 700 !important; color: var(--white) !important; }

/* ─── TWO-COL ────────────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.two-col-gap { margin-top: 2rem; }
.two-col-rev .col-text { order: -1; }

@media screen and (max-width: 992px) {
  .two-col {
    gap: 1rem;
    }
}

/* Photos */
.photo {
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
}

.photo-metro-1 {
  background: linear-gradient(160deg, #2c2c2e 0%, #1a1a1f 40%, #0d1117 100%);
  position: relative;
}

.photo-metro-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 60px);
}

.photo-metro-2 {
  background: linear-gradient(160deg, #1e1e22 0%, #111115 50%, #0a0a0e 100%);
  position: relative;
  min-height: 380px;
}

.photo-metro-2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(255,120,0,0.08), transparent 50%);
}

.photo-metro-3 {
  background: linear-gradient(180deg, #0a0a0e 0%, #111115 50%, #1a1a20 100%);
  min-height: 500px;
  position: relative;
}

/* ─── GRIDS ──────────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 1.25rem; margin-top: 1.75rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ─── CARDS ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--gold-bg);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid var(--light-gold);
  border-radius: 0;
}

.sec-gray .card { background: var(--white); }
.sec-white .card { background: var(--gold-bg); }

#quem .card { border: 1px solid #d7dde2; padding: 2rem 1rem; background: var(--white); }
#quem .card .icon-navy { background-color: #0066a1; }

#direitos .card {  border: 1px solid var(--light-gold); padding: 2rem 1rem; background: var(--white); flex-direction: column; align-items: start; }

#o-que-fazer .icon-circle { background-color: #0066a1; }

#como-atuamos .card {
  border: 1px solid #d7dde2;
}

#intervencao .grid {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 992px) {
  #como-atuamos .card {
    text-align: center;
  }

  #como-atuamos .card .icon-circle {
    margin-left: auto;
    margin-right: auto;
  }

  #direitos .card svg, #direitos .card span{
    margin: 0 auto;
  }

  #quem .card {
    justify-content: center;
  }

  #quando .card {
    justify-items: center;
    text-align: center;
  }
}


.card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0.85rem 0 0.4rem;
}

.card p { font-size: 0.85rem; color: var(--text-body); margin: 0; }

/* Card with horizontal icon */
.card-h {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.card-h span {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  text-wrap: balance;
}

/* Check cards */
.card-check {
  display: flex;
  align-items: center;
  gap: 0.5rem ;
  padding: 1.1rem 1.25rem !important;
}

.check-svg { width: 26px; height: 26px; flex-shrink: 0; }

.card-check span { font-size: 0.82rem; color: var(--text-body); }

/* Colored cards */
.card-colored {
  border-radius: 0;
  padding: 2rem;
  border: none;
}

.card-col-orange { background: var(--gold) !important; }
.card-col-blue   { background: #1976d2 !important; }
.card-col-navy   { background: var(--navy) !important; }

.card-colored h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}

.card-colored p { color: rgba(255,255,255,0.88); font-size: 0.92rem; margin: 0; }

.icon-square {
  width: 52px;
  height: 52px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-square .card-col-orange { color: var(--gold); }
.icon-square .card-col-blue { color: #1976d2; }
.icon-square .card-col-navy { color: var(--navy); }


.icon-square svg { width: 26px; height: 26px; }

/* Detailed cards */
.card-detailed {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-detail-icon { padding: 0.75rem; width: fit-content; background-color: #fef7ec; margin-bottom: 0.4rem; line-height: 0; }
.card-detail-icon svg { width: 28px; height: 28px; }

.card-detailed h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-wrap: balance;
  line-height: 1.2;
  margin: 0;
}

.card-detailed p { font-size: 1rem; color: var(--text-body); margin: 0; }

@media screen and (max-width: 992px) {
  .card-detailed h3 {
    text-align: center;
  }

.card-detailed {
 align-items: center;
}

}


/* ─── ICON CIRCLES ────────────────────────────────────────────────────────── */
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle svg { width: 24px; height: 24px; }

.icon-sm { width: 44px; height: 44px; }
.icon-sm svg { width: 20px; height: 20px; }

.icon-orange { background: var(--gold); }
.icon-navy   { background: var(--navy); }
.icon-blue   {background: #0066a1;}

/* ─── ICON LIST ──────────────────────────────────────────────────────────── */
.icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.94rem;
  color: var(--text-body);
}

.list-title {
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Alert list */
.alert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.alert-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--text-body);
}

.alert-list svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Mini checklist */
.mini-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.5rem 0;
}

.mini-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--text-body);
}

.mini-list svg { width: 24px; height: 24px; flex-shrink: 0; }

/* Dollar list */
.dollar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  margin: 1.5rem 0;
}

.dollar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dollar-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--text-body);
}

.dollar-list svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ─── CALLOUT ────────────────────────────────────────────────────────────── */
.callout {
  padding: 1.1rem 1.4rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.callout p { margin: 0; font-size: 0.92rem; }

.callout-blue {
  border-radius: 0;
  background: #edf2fb;
  border-left: 4px solid var(--navy);
}

.callout-blue p { color: var(--navy-dark); }

.callout-gold-sm {
  background: var(--gold-bg);
  border-left: 4px solid var(--gold);
  padding: 0.75rem 1rem;
  border-radius: 0;
  font-size: 0.83rem;
  color: #7a5200;
  margin-top: auto;
}

/* ─── STATS ──────────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.stat-card {
  border: 1px solid rgba(255,255,255,0.12);
  background-color: #FFFFFF0D;
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.stat-card svg { width: 32px; height: 32px; }

@media screen and (max-width:992px) {
  .stat-card svg {
    width: 48px;
    height: 48px;
    }
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-lbl { font-size: 1.125rem; color: rgba(255,255,255,1); text-wrap: balance; }

/* ─── CASES ──────────────────────────────────────────────────────────────── */
.cases-title {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cases-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.case-item {
  border-left: 3px solid #FFF;
  padding-left: 1.25rem;
}

.case-item strong { color: var(--white); display: block; margin-bottom: 0.3rem; font-size: 0.95rem; }
.case-item p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.case-link:hover { opacity: 1; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.card-link:hover { opacity: 1; }

a.card-h {
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
}
a.card-h:hover {
  background-color: #dce8f0;
  box-shadow: 0 2px 8px rgba(13,43,74,0.09);
}

/* ─── MARGIN ────────────────────────────────────────────────────────────── */
.mb-2 {
  margin-bottom: 0.75rem;
}

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact-section { padding-top: 3rem; }

.contact-title {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 992px) {
  .contact-title, .cases-title {
 text-align: center;
    }
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-card {
  border: 1px solid rgba(255,255,255,0.1);
  background-color: rgba(255,255,255,0.02);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.contact-card svg { width: 28px; height: 28px; }

.contact-lbl {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.contact-val {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  margin-top: 2rem;
}

.faq-col { 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: center;
  gap: 1rem;
  padding: 1.1rem 0;
  text-align: left;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
}

.faq-plus {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-btn[aria-expanded="true"] .faq-plus { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.faq-btn[aria-expanded="true"] + .faq-answer { max-height: 300px; }

@media screen and (max-width: 992px) {
  .faq-plus{
    font-size: 1.5rem;
  } 
  
}

/* ─── CTA FINAL ──────────────────────────────────────────────────────────── */
.sec-cta {
  position: relative;
  background: var(--gold) url(./images/background-get-help.svg);
  padding: 5rem 1rem;
  margin: 5rem auto;
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .sec-cta {
  background-image: none;
  }

  .btn {
    white-space: wrap;
    text-wrap: balance;
  }

  .btn-white svg {
    display: none;
  }
}

.cta-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-wrap: balance;
  font-weight: 800;
  color: var(--navy-dark);
  max-width: 680px;
  line-height: 1.2;
}

.cta-inner p {
  color: rgba(13,43,74,0.75);
  max-width: 480px;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}

.btn-white { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 992px) {
  .two-col,
  .two-col-rev { grid-template-columns: 1fr; }
  .two-col-rev .col-text { order: 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .dollar-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }


  .main-nav {
    position: fixed;
    top: 65px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    display: none;
  }

  .main-nav.open { display: flex; }

  .menu-toggle { display: flex; }

  .btn-header { display: none; }

  .btn-header-mobile {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
  }

  .header-inner { gap: 1rem; }

  .logo-years { display: none; }
  .logo-sep   { display: none; }

  .sec { padding: 3.5rem 0; }

  .hero-content { padding: 4rem 0; }

  .grid-4 { grid-template-columns: 1fr 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .photo { min-height: 260px; }
}

@media (max-width: 500px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  align-items: start;
}

.footer-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Office columns */
.footer-office-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.footer-col--office p,
.footer-col--access p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 0.65rem;
  line-height: 1.6;
}

.footer-phone {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.footer-phone:hover {
  text-decoration: underline;
}

/* Acesso Restrito links */
.footer-access-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.25rem;
  margin-top: 0.25rem;
}

.footer-access-links a {
  font-size: 0.88rem;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
}

.footer-access-links a:hover {
  text-decoration: underline;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-copy:not(:last-child) { margin-bottom: 0.5rem; }

/* Footer responsive */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ─── INLINE CONTENT LINKS ───────────────────────────────────────────────── */
.sec p a,
.sec li a,
.faq-answer p a {
  color: var(--blue-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sec p a:hover,
.sec li a:hover,
.faq-answer p a:hover {
  color: var(--navy);
}
.card span a,
.card h3 a {
  color: inherit;
  text-decoration: none;
}
.card span a:hover,
.card h3 a:hover {
  text-decoration: underline;
}

@media (max-width: 500px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
