/* =============================================================
   Propiedades ADM — Estilos
   Paleta: blanco + azul oscuro + verde
   ============================================================= */

/* ---------- Variables CSS ---------- */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f4f7fb;
  --color-bg-soft: #eef3f9;

  --color-blue: #0f2a47;
  --color-blue-2: #1a3a5f;
  --color-blue-3: #2a4a72;
  --color-blue-soft: #e6edf5;

  --color-green: #1e8e5a;
  --color-green-2: #156b43;
  --color-green-soft: #e6f4ec;

  --color-text: #1a2a3a;
  --color-muted: #5a6b7b;
  --color-border: #e2e8f0;
  --color-border-strong: #cbd5e1;

  --color-white: #ffffff;
  --color-danger: #c0392b;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(15, 42, 71, 0.06);
  --shadow: 0 4px 12px rgba(15, 42, 71, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 42, 71, 0.12);

  --container-max: 1200px;
  --header-height: 72px;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-blue); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-green); }
button { font-family: inherit; cursor: pointer; }

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

.section {
  padding: 80px 0;
}
.section--light { background: var(--color-bg-alt); }
.section--alt { background: var(--color-bg-soft); }
.section--contact { background: linear-gradient(180deg, var(--color-white) 0%, var(--color-blue-soft) 100%); }
.section--cta {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-2) 100%);
  color: var(--color-white);
  padding: 60px 0;
}

.section__head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section__eyebrow {
  display: inline-block;
  color: var(--color-green);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section--cta .section__eyebrow,
.section--contact .section__eyebrow { color: var(--color-green); }
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--color-blue);
  margin: 0 0 16px;
  font-weight: 700;
}
.section--cta .section__title { color: var(--color-white); }
.section__sub {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin: 0;
}
.section--cta .section__sub { color: rgba(255,255,255,0.85); }

.subsection {
  font-size: 1.3rem;
  color: var(--color-blue);
  margin: 36px 0 16px;
  font-weight: 600;
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.btn--sm { padding: 8px 16px; font-size: 0.9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}
.btn--primary:hover {
  background: var(--color-green-2);
  border-color: var(--color-green-2);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--outline {
  background: transparent;
  color: var(--color-blue);
  border-color: var(--color-border-strong);
}
.btn--outline:hover {
  background: var(--color-blue-soft);
  color: var(--color-blue);
  border-color: var(--color-blue);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 3px solid var(--color-green);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-banner.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-banner__icon {
  flex-shrink: 0;
  color: var(--color-green);
}
.cookie-banner__text {
  flex: 1;
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.5;
}
.cookie-banner__text a { color: var(--color-blue); text-decoration: underline; }
.cookie-banner__text a:hover { color: var(--color-green); }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner__icon { display: none; }
  .cookie-banner__actions { justify-content: center; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: none;
}
.brand:hover { color: var(--color-blue-2); }
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-blue);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-size: 1.1rem; }
.brand__tag { font-size: 0.75rem; color: var(--color-green); font-weight: 600; }
.brand--light { color: var(--color-white); }
.brand--light .brand__tag { color: var(--color-green-soft); }

.site-nav { display: flex; align-items: center; }
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-menu a {
  display: inline-block;
  padding: 8px 14px;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav-menu a:hover {
  color: var(--color-blue);
  background: var(--color-blue-soft);
}
.nav-menu a[aria-current="page"] {
  color: var(--color-blue);
  font-weight: 600;
  position: relative;
}
.nav-menu a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-green);
  border-radius: 2px;
}
.nav-menu a.nav-cta {
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 600;
  padding: 10px 18px;
  margin-left: 8px;
}
.nav-menu a.nav-cta:hover {
  background: var(--color-green-2);
  color: var(--color-white);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 8px;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-blue);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  .nav-menu.is-open {
    transform: translateY(0);
  }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 12px 16px; }
  .nav-menu a.nav-cta { margin: 8px 0 0; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--color-blue-soft) 0%, var(--color-white) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 142, 90, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-block;
  color: var(--color-green);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
  padding: 6px 12px;
  background: var(--color-green-soft);
  border-radius: 20px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--color-blue);
  margin: 0 0 20px;
  font-weight: 700;
}
.hero__title span {
  color: var(--color-green);
  display: inline-block;
}
.hero__lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 28px;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--color-blue-2);
  font-size: 0.92rem;
  font-weight: 500;
}
.hero__bullets li { display: inline-flex; align-items: center; gap: 4px; }
.hero__visual { display: flex; justify-content: center; }
.hero__visual svg {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(15,42,71,0.18));
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__visual svg { max-width: 380px; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-green-soft);
}
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--color-green-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.8;
}
.card h3 {
  font-family: var(--font-serif);
  color: var(--color-blue);
  font-size: 1.25rem;
  margin: 0 0 12px;
  font-weight: 700;
}
.card p {
  color: var(--color-text);
  margin: 0 0 12px;
  line-height: 1.6;
}
.card__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.card__list li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.94rem;
  color: var(--color-text);
  line-height: 1.5;
}
.card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--color-green);
  font-weight: 700;
}

/* ---------- Callouts ---------- */
.callout {
  background: var(--color-white);
  border-left: 4px solid var(--color-blue);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.callout--green {
  border-left-color: var(--color-green);
  background: linear-gradient(180deg, var(--color-green-soft) 0%, var(--color-white) 100%);
}
.callout h3 {
  font-family: var(--font-serif);
  color: var(--color-blue);
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
}
.callout p {
  margin: 0 0 12px;
  color: var(--color-text);
  line-height: 1.6;
}
.callout p:last-child { margin-bottom: 0; }

.cta-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-2) 100%);
  color: var(--color-white);
  border-left: 0;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}
.cta-callout h3 { color: var(--color-white); margin: 0 0 4px; }
.cta-callout p { color: rgba(255,255,255,0.85); margin: 0; }

@media (max-width: 720px) {
  .cta-callout { flex-direction: column; text-align: center; }
}

/* ---------- Lists ---------- */
.list-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-icons li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  align-items: flex-start;
  line-height: 1.6;
}
.list-icons__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
  margin-top: 10px;
  box-shadow: 0 0 0 4px var(--color-green-soft);
}

.checklist {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.checklist--green {
  background: linear-gradient(180deg, var(--color-green-soft) 0%, var(--color-white) 100%);
  border-color: var(--color-green-soft);
}
.checklist h3 {
  font-family: var(--font-serif);
  color: var(--color-blue);
  margin: 0 0 16px;
  font-size: 1.2rem;
  font-weight: 700;
}
.checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.55;
  color: var(--color-text);
}
.checklist ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--color-green);
  font-weight: 700;
}

/* ---------- Prose ---------- */
.prose p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 16px;
  color: var(--color-text);
}
.prose h3 {
  font-family: var(--font-serif);
  color: var(--color-blue);
  font-size: 1.25rem;
  margin: 24px 0 12px;
  font-weight: 700;
}

/* ---------- Process Grid ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.process-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.process-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--color-green-soft);
}
.process-card__num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-green-soft);
  line-height: 1;
}
.process-card h3 {
  font-family: var(--font-serif);
  color: var(--color-blue);
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.process-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ---------- Legal Cards ---------- */
.legal-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-green);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s ease;
}
.legal-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.legal-card h3 {
  font-family: var(--font-serif);
  color: var(--color-blue);
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
}
.legal-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Feature Blocks ---------- */
.feature-block {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.feature-block h3 {
  font-family: var(--font-serif);
  color: var(--color-blue);
  font-size: 1.25rem;
  margin: 0 0 16px;
  font-weight: 700;
}
.feature-block p {
  margin: 0 0 16px;
  color: var(--color-text);
  line-height: 1.6;
}

/* ---------- CTA Block ---------- */
.cta-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-block__icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(30, 142, 90, 0.2);
  color: var(--color-green-soft);
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.cta-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--color-white);
  margin: 0 0 16px;
  font-weight: 700;
}
.cta-block p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin: 0 0 28px;
  line-height: 1.6;
}
.cta-block__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-block__note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin: 16px 0 0;
  font-style: italic;
}
.cta-block .btn--outline {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
  background: transparent;
}
.cta-block .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-color: var(--color-white);
}

/* ---------- Contact Section ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact__intro h2 { text-align: left; }
.contact__info {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.contact__info li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact__info li:last-child { border-bottom: 0; }
.contact__info strong { color: var(--color-blue); margin-right: 6px; }

.contact__form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--color-blue);
  font-size: 0.92rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px var(--color-green-soft);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row--submit { margin-top: 24px; margin-bottom: 0; }
.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 12px 0 0;
}

@media (max-width: 800px) {
  .contact { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-blue);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.site-footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li {
  padding: 5px 0;
  font-size: 0.92rem;
  line-height: 1.5;
}
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--color-green-soft); }
.site-footer__desc {
  margin: 16px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 360px;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.site-footer__legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.site-footer__legal a { font-size: 0.88rem; }

@media (max-width: 800px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Page Hero (sobre-mi, politicas) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-2) 100%);
  color: var(--color-white);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  color: var(--color-white);
  margin: 0 0 16px;
  font-weight: 700;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-size: 1.05rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero .section__eyebrow {
  color: var(--color-green-soft);
  background: rgba(30, 142, 90, 0.2);
  padding: 4px 12px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 16px;
}
.page-hero time {
  display: inline-block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* ---------- Sobre mí ---------- */
.about-intro {
  margin-bottom: 56px;
  align-items: start;
}
.about-intro .callout {
  position: sticky;
  top: 90px;
}
.about-section {
  margin: 56px 0;
}
.about-section h2 {
  margin-bottom: 24px;
  color: var(--color-blue);
  border-bottom: 2px solid var(--color-blue-soft);
  padding-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.94rem;
  line-height: 1.5;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list strong { color: var(--color-blue); margin-right: 6px; }

.legal-link {
  text-align: center;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--color-muted);
}
.legal-link a { color: var(--color-blue); text-decoration: underline; }
.legal-link a:hover { color: var(--color-green); }

/* ---------- Transparency Grid ---------- */
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 8px;
}
.transparency-item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}
.transparency-item strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.transparency-item span {
  color: var(--color-blue);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.4;
}
.transparency-item a { color: var(--color-blue); }
.transparency-item a:hover { color: var(--color-green); }

/* ---------- Legal Page ---------- */
.legal {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.legal__nav {
  position: sticky;
  top: 90px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
}
.legal__nav h2 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
  font-weight: 700;
}
.legal__nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: section;
}
.legal__nav li {
  counter-increment: section;
  padding: 4px 0;
  font-size: 0.88rem;
}
.legal__nav li::before {
  content: counter(section) ". ";
  color: var(--color-green);
  font-weight: 700;
  margin-right: 4px;
}
.legal__nav a { color: var(--color-text); }
.legal__nav a:hover { color: var(--color-green); }

.legal__content {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.legal__content section { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--color-border); }
.legal__content section:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.legal__content h2 {
  font-family: var(--font-serif);
  color: var(--color-blue);
  font-size: 1.3rem;
  margin: 0 0 14px;
  font-weight: 700;
}
.legal__content p { line-height: 1.7; margin: 0 0 12px; color: var(--color-text); }
.legal__content ul { padding-left: 22px; line-height: 1.7; margin: 0 0 12px; }
.legal__content li { padding: 3px 0; }
.legal__content strong { color: var(--color-blue); }

@media (max-width: 900px) {
  .legal { grid-template-columns: 1fr; }
  .legal__nav { position: static; }
  .legal__content { padding: 28px 20px; }
}

/* ---------- Responsive Section Padding ---------- */
@media (max-width: 720px) {
  .section { padding: 50px 0; }
  .section__head { margin-bottom: 32px; }
  .hero { padding: 40px 0 50px; }
  .hero__bullets { gap: 12px; }
  .contact__form { padding: 22px 18px; }
  .cta-callout { padding: 22px 18px; }
  .about-intro .callout { position: static; }
  .site-footer__legal { gap: 12px; }
}

/* ---------- Focus Visible ---------- */
:focus-visible {
  outline: 3px solid rgba(30, 142, 90, 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}
