:root {
  --blue-950: #082f55;
  --blue-800: #0b518a;
  --blue-600: #087cc1;
  --blue-100: #e7f5ff;
  --green-700: #2f7d32;
  --green-500: #82be3f;
  --green-100: #edf8e8;
  --coral: #ef5350;
  --ink: #153047;
  --muted: #587084;
  --line: #dbe8f0;
  --paper: #f8fbfd;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(8, 47, 85, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(130, 190, 63, 0.15), transparent 24rem),
    radial-gradient(circle at 7% 24%, rgba(8, 124, 193, 0.12), transparent 27rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; }

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

.shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(219, 232, 240, 0.88);
  background: rgba(248, 251, 253, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--blue-950);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px 12px 12px 4px;
  color: white;
  background: linear-gradient(135deg, var(--blue-600), var(--green-500));
  box-shadow: 0 8px 20px rgba(8, 124, 193, 0.24);
  font-weight: 900;
}

.nav-link {
  color: var(--blue-800);
  font-weight: 750;
  text-underline-offset: 4px;
}

.hero { padding: 78px 0 62px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 7vw, 86px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid #bbdfaa;
  border-radius: 999px;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}

h1, h2, h3 { margin-top: 0; line-height: 1.1; letter-spacing: -0.035em; }

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--blue-950);
  font-size: clamp(2.55rem, 7vw, 5.4rem);
  font-weight: 900;
}

.retiro-page h1 { font-size: clamp(2.35rem, 6vw, 4.6rem); }

h2 { color: var(--blue-950); font-size: clamp(1.8rem, 4vw, 2.8rem); }

h3 { color: var(--blue-950); font-size: 1.22rem; }

.lead {
  max-width: 690px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 4px solid rgba(8, 124, 193, 0.25); outline-offset: 3px; }
.button-primary { color: white; background: var(--blue-600); box-shadow: 0 13px 30px rgba(8, 124, 193, 0.24); }
.button-secondary { color: var(--blue-800); border-color: #bad9eb; background: white; }
.button-green { color: white; background: var(--green-700); box-shadow: 0 13px 30px rgba(47, 125, 50, 0.2); }

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 32px 32px 32px 10px;
  color: white;
  background: linear-gradient(145deg, var(--blue-950), var(--blue-600));
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "+";
  position: absolute;
  right: -14px;
  bottom: -54px;
  color: rgba(255,255,255,0.11);
  font-size: 13rem;
  font-weight: 300;
  line-height: 1;
}

.hero-card p { position: relative; z-index: 1; margin: 0; }
.hero-card .card-label { margin-bottom: 12px; color: #bce7ff; font-weight: 800; }
.hero-card .card-big { max-width: 330px; font-size: clamp(1.45rem, 3vw, 2.05rem); font-weight: 850; line-height: 1.2; }

.section { padding: 64px 0; }
.section-head { max-width: 700px; margin-bottom: 28px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

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

.card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px 22px 22px 7px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 28px rgba(8, 47, 85, 0.06);
}

.card p { margin-bottom: 0; color: var(--muted); }
.card-link { display: inline-block; margin-top: 16px; color: var(--blue-600); font-weight: 850; text-underline-offset: 4px; }
.status { color: var(--green-700); font-size: 0.85rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.06em; }
.status-future { color: var(--muted); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0 0; }
.info-card { padding: 21px; border: 1px solid var(--line); border-radius: 19px; background: white; }
.info-card strong { display: block; margin-bottom: 4px; color: var(--blue-950); }
.info-card span, .info-card a { color: var(--muted); }

.steps { counter-reset: steps; display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.steps li { counter-increment: steps; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 14px; padding: 17px; border: 1px solid var(--line); border-radius: 17px; background: white; }
.steps li::before { content: counter(steps); width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--blue-600); font-weight: 900; }

.poster-wrap {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.poster-wrap img { width: 100%; border-radius: 17px; }

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 29px;
  border-radius: 26px 26px 26px 8px;
  color: white;
  background: linear-gradient(120deg, var(--green-700), #589d31);
  box-shadow: 0 18px 48px rgba(47, 125, 50, 0.19);
}

.contact-band h2 { margin-bottom: 8px; color: white; font-size: clamp(1.65rem, 3vw, 2.2rem); }
.contact-band p { margin: 0; color: #efffe8; }
.contact-band .button { color: var(--green-700); background: white; }

.footer { margin-top: 70px; padding: 30px 0 44px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; gap: 24px; }

@media (max-width: 820px) {
  .hero { padding-top: 54px; }
  .hero-grid { grid-template-columns: 1fr; }
  .cards, .info-grid { grid-template-columns: 1fr; }
  .contact-band { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 22px, 1120px); }
  .nav { min-height: 64px; }
  .brand { font-size: 1.05rem; }
  .nav-link { font-size: 0.92rem; }
  .hero { padding: 40px 0 45px; }
  h1 { font-size: clamp(2.35rem, 14vw, 3.65rem); }
  .hero-card, .card, .contact-band { padding: 22px; }
  .actions { display: grid; }
  .button { width: 100%; }
  .footer-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}

