*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde-bosque: #1B3022;
  --verde-oliva: #4B5D16;
  --verde-musgo: #8A9B4E;
  --beige: #E8E3D9;
  --beige-claro: #F5F2ED;
  --verde-acento: #6B7C32;
  --negro: #1A1A1A;
  --gris: #4D4D4D;
  --blanco: #FFFFFF;
}

html { scroll-behavior: smooth; }

/* ── ACCESIBILIDAD: foco visible con teclado ── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--verde-acento);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav-cta:focus-visible,
.btn-primary:focus-visible,
.btn-primary-dark:focus-visible {
  outline-color: var(--verde-musgo);
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--beige-claro);
  color: var(--negro);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 5vw;
  background: rgba(245,242,237,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,48,34,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(27,48,34,0.08); }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 120px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gris);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  padding-bottom: 3px;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--verde-acento);
  box-shadow: 0 0 10px rgba(107,124,50,0.7), 0 0 4px rgba(107,124,50,0.5);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--verde-bosque);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-block;
  background: var(--verde-bosque);
  color: var(--beige-claro) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  line-height: 1.4;
}
.nav-cta:hover {
  background: var(--verde-oliva) !important;
  color: var(--beige-claro) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(27,48,34,0.22);
}
.nav-cta:active { transform: translateY(0); box-shadow: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--verde-bosque);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8.5rem 5vw 5rem 8vw;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde-musgo);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--beige-claro);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--verde-musgo);
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245,242,237,0.82);
  max-width: 400px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
  display: inline-block;
  background: var(--beige-claro);
  color: var(--verde-bosque);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--verde-musgo); color: var(--blanco); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.22); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(245,242,237,0.3);
  color: var(--beige-claro);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--verde-musgo); background: rgba(138,155,78,0.1); color: var(--beige-claro); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); }

/* mountain SVG decorativo */
.hero-bg-mountains {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  opacity: 0.06;
  pointer-events: none;
}

.hero-right {
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 5vw;
  position: relative;
  overflow: hidden;
}

.hero-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}

.hero-stat {
  border-left: 3px solid var(--verde-acento);
  padding-left: 1.5rem;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--verde-bosque);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris);
  margin-top: 0.3rem;
}

.hero-right-deco {
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,93,22,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--verde-bosque);
  padding: 1.6rem 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245,242,237,0.85);
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-item svg { flex-shrink: 0; opacity: 0.6; }
.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(245,242,237,0.15);
}

/* ── SERVICIOS ── */
.section {
  padding: 7rem 8vw;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-acento);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--verde-bosque);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; }

.section-sub {
  font-size: 0.95rem;
  color: var(--gris);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 4rem;
}

/* — "Lo que hacemos" centrado ── */
#servicios .section-label {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}
#servicios .section-title {
  text-align: center;
}
#servicios .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(27,48,34,0.07);
  border-radius: 14px;
  overflow: hidden;
}

.service-card {
  background: var(--beige-claro);
  padding: 3rem 2.5rem;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 8px;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--verde-acento);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover { background: var(--beige); transform: translateY(-4px); box-shadow: 0 14px 30px rgba(27,48,34,0.12); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  display: none;
}

.service-icon {
  width: 40px; height: 40px;
  display: block;
  margin: 0 auto 1.5rem;
  color: var(--verde-acento);
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--verde-bosque);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--gris);
}

/* ── PROCESO ── */
.proceso-section {
  background: var(--verde-bosque);
  padding: 7rem 8vw;
  position: relative;
  overflow: hidden;
}

.proceso-section .section-label {
  color: var(--verde-musgo);
  text-align: center;
}
.proceso-section .section-title {
  color: var(--beige-claro);
  text-align: center;
}
.proceso-section .section-sub {
  color: rgba(245,242,237,0.78);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.proceso-deco {
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
  pointer-events: none;
}

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.proceso-steps::before {
  display: none;
}

.step {
  background: rgba(245,242,237,0.05);
  border: 1px solid rgba(245,242,237,0.1);
  border-top: 2px solid var(--verde-musgo);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.step:hover {
  background: rgba(245,242,237,0.09);
}

.step-dot {
  display: none;
}

.step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verde-musgo);
  margin-bottom: 1.2rem;
  text-align: center;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--beige-claro);
  margin-bottom: 0.8rem;
  text-align: center;
  line-height: 1.2;
}

.step-desc {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(245,242,237,0.72);
}

/* ── POR QUÉ NOSOTROS ── */
.why-section {
  padding: 7rem 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.why-card-main {
  background: var(--verde-bosque);
  border-radius: 10px;
  padding: 3.5rem;
  color: var(--beige-claro);
  width: 100%;
}

.why-card-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.why-card-main-title em { font-style: italic; color: var(--verde-musgo); }

.why-card-main p {
  font-size: 0.93rem;
  line-height: 1.9;
  color: rgba(245,242,237,0.82);
}

.why-card-float {
  background: var(--beige-claro);
  border: 1px solid rgba(27,48,34,0.1);
  border-top: 3px solid var(--verde-acento);
  border-radius: 10px;
  padding: 2rem 2.5rem;
  width: 220px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(27,48,34,0.14);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.why-card-float.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card-float-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--verde-bosque);
  line-height: 1;
}
.why-card-float-label {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris);
  margin-top: 0.6rem;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.why-item-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(27,48,34,0.05);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-acento);
}

.why-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--verde-bosque);
  margin-bottom: 0.4rem;
}

.why-item-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--gris);
}

/* ── CTA FINAL ── */
.cta-section {
  background: var(--beige);
  padding: 6rem 8vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--verde-acento), transparent);
}

.cta-section .section-label { text-align: center; }

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--verde-bosque);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cta-title em { font-style: italic; color: var(--verde-acento); }

.cta-sub {
  font-size: 0.95rem;
  color: var(--gris);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-dark {
  display: inline-block;
  background: var(--verde-bosque);
  color: var(--beige-claro);
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary-dark:hover { background: var(--verde-oliva); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(27,48,34,0.25); }
.btn-primary-dark:active { transform: translateY(0); box-shadow: none; }

.btn-outline-dark {
  display: inline-block;
  border: 1.5px solid var(--verde-bosque);
  color: var(--verde-bosque);
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-outline-dark:hover { background: var(--verde-bosque); color: var(--beige-claro); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(27,48,34,0.18); }
.btn-outline-dark:active { transform: translateY(0); box-shadow: none; }

/* ── FOOTER ── */
footer {
  background: var(--negro);
  color: rgba(245,242,237,0.65);
  padding: 4rem 8vw 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--beige-claro);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}
.footer-brand-name span { color: var(--verde-musgo); }

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  font-size: 0.83rem;
  line-height: 2;
}

.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige-claro);
  margin-bottom: 1.5rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(245,242,237,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--verde-musgo); }

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(245,242,237,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── PÁGINA LEGAL (Aviso de Privacidad, etc.) ── */
.legal-hero {
  background: var(--verde-bosque);
  padding: 10.5rem 8vw 4rem;
  position: relative;
  overflow: hidden;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.legal-breadcrumb a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde-musgo);
  text-decoration: none;
}
.legal-breadcrumb a:hover { color: var(--beige-claro); }
.legal-breadcrumb span {
  font-size: 0.78rem;
  color: rgba(245,242,237,0.4);
}
.legal-breadcrumb em {
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.55);
}

.legal-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--beige-claro);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.legal-hero-title em { font-style: italic; color: var(--verde-musgo); }

.legal-hero-sub {
  font-size: 0.95rem;
  color: rgba(245,242,237,0.78);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--verde-musgo);
  border: 1px solid rgba(138,155,78,0.35);
  border-radius: 30px;
  padding: 0.45rem 1rem;
}

/* — Layout: índice + contenido — */
.legal-content {
  padding: 5rem 8vw 7rem;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 4.5rem;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.legal-toc {
  position: sticky;
  top: 110px;
  background: var(--beige);
  border-radius: 12px;
  padding: 2rem 1.8rem;
}

.legal-toc-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-acento);
  margin-bottom: 1.3rem;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  display: flex;
  gap: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--gris);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--verde-acento);
  font-weight: 500;
  flex-shrink: 0;
}
.legal-toc a:hover { color: var(--verde-bosque); }

.legal-articles { max-width: 760px; }

.legal-article {
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(27,48,34,0.08);
  scroll-margin-top: 110px;
}
.legal-article:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.legal-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--verde-bosque);
  line-height: 1.25;
  margin-bottom: 1.1rem;
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}
.legal-article-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--verde-acento);
  flex-shrink: 0;
}

.legal-article h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--verde-oliva);
  margin: 1.6rem 0 0.7rem;
}

.legal-article p {
  font-size: 0.93rem;
  line-height: 1.9;
  color: var(--gris);
  margin-bottom: 1.1rem;
}
.legal-article p:last-child { margin-bottom: 0; }

.legal-article ul,
.legal-article ol.legal-list {
  margin: 0 0 1.1rem 1.2rem;
  color: var(--gris);
  font-size: 0.93rem;
  line-height: 1.85;
}
.legal-article li { margin-bottom: 0.5rem; }
.legal-article li:last-child { margin-bottom: 0; }

.legal-article strong { color: var(--negro); font-weight: 500; }

.legal-contact-box {
  background: var(--beige-claro);
  border: 1px solid rgba(27,48,34,0.1);
  border-left: 3px solid var(--verde-acento);
  border-radius: 8px;
  padding: 1.6rem 2rem;
  margin-top: 0.5rem;
}
.legal-contact-box p {
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 0.2rem;
  color: var(--negro);
}
.legal-contact-box p:last-child { margin-bottom: 0; }
.legal-contact-box span {
  display: inline-block;
  min-width: 90px;
  color: var(--verde-acento);
  font-weight: 500;
}

.legal-note {
  background: rgba(107,124,50,0.07);
  border-radius: 8px;
  padding: 1.4rem 1.8rem;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--verde-oliva);
  margin-top: 0.5rem;
}

.legal-hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* — Tarjeta de servicio como enlace — */
a.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ── BLOG LEGAL — tarjetas "próximamente" ── */
.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.blog-teaser-card {
  background: var(--beige-claro);
  border: 1px solid rgba(27,48,34,0.1);
  border-left: 3px solid var(--verde-musgo);
  border-radius: 8px;
  padding: 1.8rem 2rem;
}

.blog-teaser-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verde-acento);
  background: rgba(107,124,50,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}

.blog-teaser-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--verde-bosque);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.blog-teaser-card p {
  font-size: 0.88rem;
  color: var(--gris);
  line-height: 1.75;
}

/* ── PÁGINA 404 ── */
.error-hero {
  min-height: 100vh;
  background: var(--verde-bosque);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 6vw 6rem;
}

.error-code {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--verde-musgo);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.error-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--beige-claro);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.error-title em { font-style: italic; color: var(--verde-musgo); }

.error-desc {
  font-size: 0.95rem;
  color: rgba(245,242,237,0.78);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── RESPONSIVE → ver css/responsive.css ── */
