:root {
  --ink: #10233d;
  --muted: #5f6f82;
  --blue: #0874b9;
  --blue-deep: #06385f;
  --blue-soft: #eaf5fc;
  --gold: #ffb000;
  --paper: #ffffff;
  --surface: #f4f7fa;
  --line: #dce5ec;
  --shadow: 0 18px 50px rgba(9, 47, 78, .10);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue-deep);
}

.button-primary:hover { background: var(--blue); }

.button-secondary {
  color: var(--blue-deep);
  background: #fff;
}

/* Footer condiviso */
.site-footer {
  margin-top: 0;
  color: rgba(255,255,255,.82);
  background: #041f35;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(220px,.9fr);
  gap: 40px;
  align-items: center;
  padding: 46px 0;
}

.footer-brand img {
  width: 180px;
  max-width: 100%;
}

.footer-brand p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.footer-system {
  justify-self: end;
  max-width: 330px;
}

.footer-system img {
  width: 100%;
  height: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0 24px;
  color: rgba(255,255,255,.56);
  font-size: 12px;
}

.footer-bottom a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 36px 0;
  }

  .footer-system {
    justify-self: start;
    max-width: 270px;
  }

  .footer-bottom-inner {
    flex-direction: column;
  }
}
