/* ============================================================
   ATIVAMENTE — Clínica Multidisciplinar
   Folha de estilos principal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --c-teal-900: #1c4a47;
  --c-teal-700: #2f706c;
  --c-teal-500: #4a9890;
  --c-teal-200: #b9dfd9;
  --c-mint:     #90cec3;
  --c-mint-50:  #e6f4f0;
  --c-sand:     #e9c46a;
  --c-sand-dark:#b8923a;
  --c-cream:    #fbf8f3;
  --c-cream-2:  #f4eee3;
  --c-ink:      #1d1d1b;
  --c-ink-2:    #4b4a4a;
  --c-ink-3:    #7a7975;
  --c-line:     #e7e1d3;
  --c-white:    #ffffff;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(29,29,27,0.04), 0 2px 8px rgba(29,29,27,0.04);
  --shadow:    0 4px 14px rgba(29,29,27,0.06), 0 12px 32px rgba(29,29,27,0.06);
  --shadow-lg: 0 12px 32px rgba(47,112,108,0.12), 0 28px 60px rgba(47,112,108,0.10);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--c-teal-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-teal-900); }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--c-ink);
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; color: var(--c-ink-2); }
ul, ol { padding-left: 1.2em; margin: 0 0 1em; }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(56px, 9vw, 112px) 0; }
.section-tight { padding: clamp(40px, 7vw, 80px) 0; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-teal-700);
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--c-ink-2);
  max-width: 60ch;
  line-height: 1.65;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--c-teal-700);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-teal-900);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  color: var(--c-teal-700);
  border: 1.5px solid var(--c-teal-700);
}
.btn-ghost:hover {
  background: var(--c-teal-700);
  color: #fff;
}
.btn-sand {
  background: var(--c-sand);
  color: #4a3408;
}
.btn-sand:hover { background: var(--c-sand-dark); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(231, 225, 211, 0.6);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
}
.brand { display: inline-flex; }
.brand img { width: 280px; height: auto; max-width: 60vw; display: block; }
@media (max-width: 600px) {
  .brand img { width: 200px; }
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  color: var(--c-ink);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
}
.nav-links a:hover { color: var(--c-teal-700); }
.nav-links a.is-active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--c-teal-700); border-radius: 2px;
}
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center; justify-content: center;
  background: var(--c-mint-50);
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--c-teal-900);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: var(--c-teal-900);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav-links {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--c-cream);
    padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid var(--c-line);
  }
  .nav.is-open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--c-line);
  }
  .nav.is-open .nav-cta {
    display: inline-flex;
    margin: 16px var(--gutter) 0;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(56px, 8vw, 112px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  margin-top: 10px;
}
.hero p.lead { margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust {
  display: flex; align-items: center; gap: 18px;
  font-size: 13px; color: var(--c-ink-3);
  flex-wrap: wrap;
}
.hero-trust strong { color: var(--c-ink); font-weight: 600; }

.hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--c-mint);
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(47,112,108,0.18));
}
.hero-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  z-index: 2;
}
.hero-badge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2bbf6e; box-shadow: 0 0 0 4px rgba(43,191,110,0.18);
}
.hero-badge span { font-size: 13px; color: var(--c-ink); font-weight: 500; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.blob-1 {
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: var(--c-mint);
  opacity: 0.35;
}
.blob-2 {
  bottom: -80px; left: -100px;
  width: 280px; height: 280px;
  background: var(--c-sand);
  opacity: 0.22;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 4 / 3; max-height: 420px; }
}

/* ---------- Page header (interior pages) ---------- */
.page-head {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0 clamp(48px, 7vw, 80px);
  background: linear-gradient(180deg, var(--c-mint-50) 0%, var(--c-cream) 100%);
  overflow: hidden;
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { max-width: 18ch; }
.page-head p.lead { max-width: 60ch; }
.crumbs {
  display: flex; gap: 8px; font-size: 13px;
  color: var(--c-ink-3); margin-bottom: 14px;
}
.crumbs a { color: var(--c-ink-3); }
.crumbs a:hover { color: var(--c-teal-700); }

/* ---------- Cards ---------- */
.card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--c-teal-200);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--c-mint-50);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-teal-700);
  margin-bottom: 16px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 16px; font-size: 15px; }
.card-link {
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.card-link::after {
  content: "→"; transition: transform .2s ease;
}
.card-link:hover::after { transform: translateX(4px); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 880px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
}
@media (min-width: 600px) and (max-width: 880px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Section heading ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head.left { text-align: left; margin: 0 0 40px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--c-ink-2); font-size: 1.05rem; }

/* ---------- Bento / Specialty highlight ---------- */
.specialty {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
}
.specialty .media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-mint);
}
.specialty .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.specialty:hover .media img { transform: scale(1.04); }
.specialty .body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.specialty .body h3 { margin-bottom: 8px; }
.specialty .body p { font-size: 15px; flex: 1; }
.specialty .body .card-link { margin-top: 8px; }

/* ---------- Feature row ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.feature-row.reverse { grid-template-columns: 1fr 1.1fr; }
.feature-row.reverse .feature-media { order: -1; }
.feature-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--c-mint);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media { order: 0; }
}

/* ---------- Stat ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  padding: 28px;
  background: var(--c-mint-50);
  border-radius: var(--radius);
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--c-teal-900);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span { font-size: 14px; color: var(--c-ink-2); }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- List with checks ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 24px; }
.checklist li {
  padding: 10px 0 10px 34px;
  position: relative;
  color: var(--c-ink-2);
  border-bottom: 1px solid var(--c-line);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 16px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-mint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c4a47' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Quote / testimonial ---------- */
.quote {
  background: var(--c-mint-50);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute; top: 8px; left: 28px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--c-mint);
  line-height: 1;
}
.quote blockquote {
  margin: 0; padding-left: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--c-ink);
  font-weight: 400;
  line-height: 1.5;
  position: relative; z-index: 1;
}
.quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 14px;
  color: var(--c-ink-3);
  font-family: var(--font-body);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--c-teal-700) 0%, var(--c-teal-900) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: var(--c-mint); opacity: 0.18;
  border-radius: 50%;
}
.cta-band::after {
  content: "";
  position: absolute; bottom: -100px; left: -60px;
  width: 240px; height: 240px;
  background: var(--c-sand); opacity: 0.14;
  border-radius: 50%;
}
.cta-band h2 { color: #fff; max-width: 22ch; margin: 0 auto 14px; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 28px; position: relative; z-index: 1; max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary {
  background: var(--c-sand); color: #4a3408; position: relative; z-index: 1;
}
.cta-band .btn-primary:hover { background: #fff; color: var(--c-teal-900); }
.cta-band .btn-ghost {
  position: relative; z-index: 1;
  border-color: rgba(255,255,255,0.6); color: #fff;
}
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ---------- Profile / team card ---------- */
.profile {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.profile .photo {
  aspect-ratio: 1 / 1;
  background: var(--c-mint);
  overflow: hidden;
}
.profile .photo img { width: 100%; height: 100%; object-fit: cover; }
.profile .info { padding: 20px 22px 24px; }
.profile h3 { font-size: 1.15rem; margin-bottom: 4px; }
.profile .role {
  font-size: 13px;
  color: var(--c-teal-700);
  font-weight: 500;
  margin-bottom: 10px;
}
.profile .crp { font-size: 12px; color: var(--c-ink-3); margin: 0; }

/* ---------- Convenios ---------- */
.convenios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.convenio {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  min-height: 110px;
  font-weight: 500;
  color: var(--c-ink-2);
  font-size: 15px;
  transition: border-color .2s, color .2s;
}
.convenio:hover { border-color: var(--c-teal-200); color: var(--c-teal-700); }
@media (max-width: 880px) { .convenios-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Blog ---------- */
.post-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card .media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--c-mint); }
.post-card .media img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-teal-700); font-weight: 600; margin-bottom: 8px;
}
.post-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.post-card p { font-size: 14.5px; flex: 1; }

/* ---------- Forms ---------- */
.form-wrap {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--c-cream);
  border: 1.5px solid var(--c-line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-ink);
  transition: border-color .15s, background .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-teal-500);
  background: #fff;
}
.field textarea { min-height: 140px; resize: vertical; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 12px; color: var(--c-ink-3); margin-top: 10px; }

/* ---------- Contact info ---------- */
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .ic {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--c-mint-50);
  color: var(--c-teal-700);
  display: flex; align-items: center; justify-content: center;
}
.info-item .ic svg { width: 20px; height: 20px; }
.info-item h4 { margin: 0 0 4px; font-size: 1rem; font-family: var(--font-body); font-weight: 600; }
.info-item p, .info-item a { margin: 0; font-size: 14.5px; color: var(--c-ink-2); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- WhatsApp floating ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(37,211,102,0.35), 0 2px 6px rgba(0,0,0,0.12);
  z-index: 90;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.4;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-teal-900);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 28px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--c-teal-700); opacity: 0.4;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative; z-index: 1;
}
.footer-brand img {
  width: 240px; height: auto; max-width: 80%;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  opacity: 0.95;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.65); max-width: 36ch; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  margin-top: 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  position: relative; z-index: 1;
}
.social { display: flex; gap: 12px; }
.social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.social a:hover { background: var(--c-mint); color: var(--c-teal-900); }
.social svg { width: 16px; height: 16px; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider {
  height: 1px; background: var(--c-line);
  margin: 56px 0;
}
