/* ==========================================================================
   Amparar Proteção Veicular — design tokens & base styles
   ========================================================================== */

:root {
  /* Brand palette (from Marca_AMPARAR_Protecao_veicular) */
  --color-carmim: #d81747;
  --color-laranja: #ff6a3d;
  --color-navy: #2c2660;
  --color-navy-dark: #1c1840;
  --gradient-brand: linear-gradient(135deg, var(--color-carmim) 0%, var(--color-laranja) 100%);

  --color-ink: #1a1a2e;
  --color-body: #4a4a5a;
  --color-muted: #767688;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f4fa;
  --color-bg-alt-2: #eeedf6;
  --color-border: #e7e5f0;
  --color-success: #1f9d55;
  --color-carmim-soft: #fde4e9;
  --color-laranja-soft: #ffe6da;

  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Sora", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container-w: 1280px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 10px 30px -12px rgba(44, 38, 96, 0.18);
  --shadow-btn: 0 8px 20px -8px rgba(216, 23, 71, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-body);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  color: var(--color-navy);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-carmim);
  margin-bottom: 12px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg-alt-2) 100%);
}

.section-navy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
}
.section-navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0.06;
}
.section-navy .container { position: relative; z-index: 1; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .eyebrow { color: var(--color-laranja); }
.section-navy .section-head p { color: rgba(255,255,255,0.72); }

.section-head {
  max-width: 640px;
  margin: 0 0 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover { box-shadow: 0 12px 26px -8px rgba(216, 23, 71, 0.55); }

.btn-ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-navy);
}

.btn-ghost:hover { border-color: var(--color-carmim); color: var(--color-carmim); }

.btn-white {
  background: #fff;
  color: var(--color-navy);
}

.btn-block { width: 100%; }

/* ---------- Header ---------- */

.topbar {
  height: 6px;
  background: var(--gradient-brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 60px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--color-carmim);
  border-color: var(--color-carmim);
}

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-navy);
  border-radius: 2px;
  margin: 5px 0;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 104px;
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(2px);
}

.hero::before {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(216,23,71,0.30) 0%, rgba(255,106,61,0.16) 55%, transparent 75%);
  top: -220px; right: -160px;
}

.hero::after {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  bottom: -180px; left: -140px;
}

.hero-copy h1 { color: #fff; }
.hero-copy .eyebrow { color: var(--color-laranja); }
.hero-copy .lede { color: rgba(255,255,255,0.72); }

.hero-actions .btn-ghost {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.hero-actions .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lede { font-size: 1.1rem; margin-bottom: 32px; max-width: 480px; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  box-shadow: var(--shadow-card);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
}

.trust-badge .stars { color: #f5a623; letter-spacing: 1px; }
.trust-badge .avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: visible;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  background: var(--gradient-brand);
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22) 0%, transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(28,24,64,0.25) 0%, transparent 50%);
  z-index: 0;
}

.hero-visual .shield-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.hero-visual .shield-mark img {
  width: 82%;
  height: auto;
  opacity: 0.4;
  filter: brightness(0) invert(1);
}

.hero-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; }

.hero-visual .caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  background: rgba(28, 24, 64, 0.75);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  z-index: 1;
}

.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: 0 16px 32px -12px rgba(28, 24, 64, 0.35);
  max-width: 230px;
}

.float-card-top { top: -22px; left: -28px; }
.float-card-bottom { bottom: -22px; right: -28px; }

.float-card-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
}
.float-card-icon svg { width: 22px; height: 22px; }

.float-card strong { display: block; font-family: var(--font-display); font-size: 0.9rem; color: var(--color-navy); line-height: 1.3; }
.float-card span { display: block; font-size: 0.78rem; color: var(--color-muted); }

/* ---------- Como Funciona ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  position: relative;
  padding-top: 8px;
}

.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-btn);
}

.step-card h3 { margin-bottom: 6px; }
.step-card p { font-size: 0.92rem; color: var(--color-muted); margin: 0; }

.step-connector {
  display: none;
}

@media (min-width: 981px) {
  .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 23px;
    left: 100%;
    width: 24px;
    border-top: 2px dashed var(--color-border);
  }
}

/* ---------- Diferencial / value strip ---------- */

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.value-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 18px;
  font-size: 1.5rem;
  box-shadow: var(--shadow-btn);
}

.value-card .icon svg { width: 27px; height: 27px; }

.value-card h3 { margin-bottom: 8px; }
.value-card p { margin: 0; font-size: 0.95rem; }

/* ---------- Coverage grid ---------- */

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.coverage-item {
  background: linear-gradient(180deg, #fff 0%, var(--color-bg-alt) 160%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.coverage-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.coverage-item .icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-btn);
}

.coverage-item .icon svg { width: 24px; height: 24px; }

.coverage-item h3 { font-size: 1rem; margin-bottom: 4px; }
.coverage-item p { font-size: 0.85rem; margin: 0; color: var(--color-muted); }

.fine-print {
  font-size: 0.78rem;
  color: var(--color-muted);
  text-align: center;
  margin: 28px auto 0;
  max-width: 560px;
}

/* ---------- Units strip ---------- */

.units-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.unit-chip {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-laranja);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.unit-chip .name { font-weight: 800; color: var(--color-navy); display: block; margin-bottom: 2px; }
.unit-chip .city { font-size: 0.85rem; color: var(--color-muted); }

/* ---------- Team photos ---------- */

.team-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.team-photos img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ---------- Video testimonials ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.testimonial-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.testimonial-name {
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-navy);
}

/* ---------- Testimonial / social proof ---------- */

.proof-band {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.proof-score {
  text-align: center;
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.proof-score .num { font-size: 2.6rem; font-weight: 800; line-height: 1; }
.proof-score .stars { color: #f5a623; margin: 6px 0; letter-spacing: 2px; }
.proof-score .label { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

.proof-quote { font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.92); }
.proof-quote cite { display: block; margin-top: 12px; font-style: normal; font-weight: 700; font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ---------- Final CTA ---------- */

.cta-band {
  background: var(--gradient-brand);
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
  color: #fff;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid img { height: 40px; margin-bottom: 14px; }
.ra-seal {
  margin-top: 18px;
  display: inline-block;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
}
.ra-seal-hero { margin-top: 0; padding: 6px 14px; }
.ra-seal > div { overflow: visible !important; height: auto !important; }
.footer-grid h4 { color: #fff; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- WhatsApp floating button ---------- */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.6);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .value-strip { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .units-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proof-band { grid-template-columns: 1fr; text-align: center; }
  .proof-score { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); padding: 0 0 24px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step-card:not(:last-child)::after { display: none; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .site-header .container { height: 76px; }
  .brand img { height: 48px; }
  .section { padding: 52px 0; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .units-strip { grid-template-columns: 1fr; }
  .cta-band, .proof-band { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .team-photos { grid-template-columns: 1fr; }
  .float-card { max-width: 190px; padding: 10px 14px; }
  .float-card-top { top: -16px; left: -12px; }
  .float-card-bottom { bottom: -16px; right: -12px; }
  .float-card-icon { width: 34px; height: 34px; }
  .float-card-icon svg { width: 18px; height: 18px; }
  .float-card strong { font-size: 0.8rem; }
  .float-card span { font-size: 0.7rem; }
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: #fff;
  z-index: 99;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav .btn { margin-top: 24px; }

/* ---------- Simple page hero (subpáginas) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
  padding: 64px 0;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0.14;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #fff; }

.stub-note {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 0 100px;
  text-align: center;
  color: var(--color-muted);
}

/* ---------- Detail grid (Coberturas / Assistência) ---------- */

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.detail-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.optional-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: rgba(44, 38, 96, 0.08);
  border: 1px solid rgba(44, 38, 96, 0.18);
  border-radius: 999px;
  padding: 4px 10px;
}

.detail-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: var(--shadow-btn);
}

.detail-card .icon svg { width: 24px; height: 24px; }

.detail-card h3 { margin-bottom: 8px; }
.detail-card p { margin: 0; font-size: 0.92rem; color: var(--color-muted); }

/* ---------- Assistance phone band ---------- */

.assist-band {
  background: var(--color-navy);
  border-radius: var(--radius);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #fff;
}

.assist-phone .num {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 6px 0;
}

.assist-phone p { margin: 0; color: rgba(255,255,255,0.75); }

/* ---------- FAQ accordion ---------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 4px 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-carmim);
  font-weight: 400;
  margin-left: 16px;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "–"; }

.faq-body { padding: 0 0 20px; }
.faq-body p { margin: 0; font-size: 0.95rem; }

/* ---------- Quem Somos ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-stats {
  display: grid;
  gap: 16px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-carmim);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
}

.stat-card .num { font-size: 1.8rem; font-weight: 800; color: var(--color-navy); line-height: 1; }
.stat-card .label { font-size: 0.85rem; color: var(--color-muted); margin-top: 6px; }

/* ---------- Contato ---------- */

.unit-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.unit-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.unit-card h3 { margin: 0; }
.unit-card p { margin: 0; font-size: 0.88rem; color: var(--color-muted); flex-grow: 1; }

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: flex; flex-direction: column; gap: 8px; }

.form-row label { font-weight: 700; font-size: 0.9rem; color: var(--color-navy); }

.form-row input,
.form-row textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  color: var(--color-ink);
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-carmim);
  background: #fff;
}

/* ---------- Área do Associado (login) ---------- */

.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.muted-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border-left: 3px solid var(--color-laranja);
}

.login-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.login-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-carmim);
  min-height: 1.2em;
}

/* ---------- Responsive additions ---------- */

@media (max-width: 980px) {
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .assist-band { flex-direction: column; text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .unit-cards { grid-template-columns: repeat(2, 1fr); }
  .login-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .detail-grid { grid-template-columns: 1fr; }
  .unit-cards { grid-template-columns: 1fr; }
  .assist-phone .num { font-size: 2rem; }
}
