/* CLAVE — Componentes compartilhados */

/* ── CONTAINER ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-accent);
  display: block;
  margin-bottom: var(--sp-3);
}

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--off-white);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 12px rgba(14,24,37,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  color: var(--text);
}
.nav-logo:hover { text-decoration: none; }
.nav-logo .wm {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: .12em;
  color: var(--text);
}
.nav-links {
  display: flex; align-items: center; gap: var(--sp-7);
  list-style: none;
}
.nav-links a {
  font-size: 15px; font-weight: 500;
  color: var(--text); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-primary); }
.nav-cta {
  background: var(--blue-primary);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--blue-corp) !important; text-decoration: none !important; }

/* Hamburger */
.nav-ham { display: none; background: none; border: none; padding: 8px; }
.nav-ham span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 4px 0;
  transition: .25s;
}
.nav-mobile {
  display: none; flex-direction: column; gap: var(--sp-4);
  padding: var(--sp-5) var(--pad) var(--sp-6);
  background: var(--off-white);
  border-top: 1px solid var(--border);
  list-style: none;
}
.nav-mobile a {
  font-size: 16px; font-weight: 500;
  color: var(--text); text-decoration: none;
  display: block; padding: 8px 0;
}
.nav-mobile.open { display: flex; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 12px 24px; border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all .2s cubic-bezier(.22,1,.36,1);
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--blue-primary); color: var(--white); }
.btn-primary:hover { background: var(--blue-corp); color: var(--white); }
.btn-secondary { background: transparent; color: var(--blue-primary); border-color: var(--blue-primary); }
.btn-secondary:hover { background: var(--blue-mist); }
.btn-white { background: var(--white); color: var(--blue-primary); }
.btn-white:hover { background: var(--blue-mist); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn:focus-visible { outline: none; box-shadow: var(--focus); }

/* ── FOOTER ── */
.footer {
  background: var(--blue-night);
  color: #9DB0C8;
  padding: var(--sp-9) 0 var(--sp-7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid #1E3050;
}
.footer-brand .wm {
  font-family: var(--font-display);
  font-weight: 300; font-size: 22px;
  letter-spacing: .12em; color: var(--white);
}
.footer-brand p { font-size: 14px; color: #9DB0C8; margin-top: var(--sp-4); max-width: 34ch; }
.footer-col h4 {
  font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); margin-bottom: var(--sp-5);
  font-family: var(--font-body);
}
.footer-col a {
  display: block; font-size: 14px; color: #9DB0C8;
  margin-bottom: var(--sp-3); text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--sp-5);
  font-size: 13px; color: #4A6A8A;
}
.footer-logo-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: var(--sp-5);
}

/* ── SECTION UTILS ── */
.section { padding: var(--sp-9) 0; }
.section-dark { background: var(--blue-night); }
.section-mist { background: var(--blue-mist); }
.section-white { background: var(--white); }
.section-corp { background: var(--blue-corp); }

.section-head { margin-bottom: var(--sp-8); }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { font-size: 18px; color: var(--text-2); margin-top: var(--sp-4); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-7) var(--sp-6);
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card .kicker {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-primary);
  margin-bottom: var(--sp-3);
}
.card h3 { font-size: 22px; margin-bottom: var(--sp-3); font-weight: 400; }
.card p { font-size: 15px; color: var(--text-2); }
.card .arrow { margin-top: var(--sp-5); color: var(--blue-accent); font-size: 14px; font-weight: 500; }

/* ── GRID UTILS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-ham { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .footer-bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
  .section { padding: var(--sp-8) 0; }
}
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
