/* ==========================================================================
   LIMPIEZAS LUZ DE LUNA — V2 · Diseño modernizado
   Paleta navy (#222875) + acento dorado cálido mediterráneo
   ========================================================================== */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "DM Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1d3f;
  background: #fafbfc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { margin: 0; font-family: "DM Sans", sans-serif; letter-spacing: -.02em; line-height: 1.15; }

/* ---------- Variables de marca ---------- */
:root {
  --brand: #222875;
  --brand-hover: #1a1f5a;
  --brand-deep: #14183f;
  --brand-light: #4d5299;
  --brand-soft: #e8eaf6;
  --brand-soft-2: #f4f5fb;

  --accent: #c89968;
  --accent-hover: #a87f4f;
  --accent-light: #e0c89a;
  --accent-soft: #f7eedf;

  --ink: #1a1d3f;
  --ink-soft: #4a4f6b;
  --ink-muted: #7a7f99;
  --white: #ffffff;
  --bg: #fafbfc;
  --bg-alt: #eef0f7;
  --bg-card: #ffffff;
  --border: #dde0ec;
  --border-soft: rgba(34, 40, 117, .12);

  --container: 1200px;
  --container-wide: 1320px;
  --header-h: 76px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-xs: 0 2px 8px rgba(26, 29, 63, .04);
  --shadow-sm: 0 8px 24px rgba(26, 29, 63, .06);
  --shadow: 0 20px 50px rgba(26, 29, 63, .10);
  --shadow-lg: 0 30px 70px rgba(26, 29, 63, .14);
  --shadow-brand: 0 16px 40px rgba(34, 40, 117, .30);
  --shadow-accent: 0 16px 40px rgba(200, 153, 104, .28);

  --grad-brand: linear-gradient(135deg, #222875 0%, #2a308f 50%, #1a1f5a 100%);
  --grad-accent: linear-gradient(135deg, #c89968 0%, #a87f4f 100%);
  --grad-warm: linear-gradient(135deg, #fafbfc 0%, #eef0f7 100%);
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: var(--brand-soft);
  border-radius: 999px;
}

/* ==========================================================================
   HEADER — sticky con glass
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-xs);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 17px;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-brand);
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nav { display: flex; gap: 6px; align-items: center; margin-left: auto; }
.nav a, .nav__link {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover, .nav__link:hover { background: var(--brand-soft); color: var(--brand); }

/* Dropdown desktop */
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}
.nav__caret {
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
}
.nav__item.is-open .nav__caret { transform: rotate(-135deg) translateY(2px); }

.nav__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 290px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  display: none;
  box-shadow: var(--shadow);
  z-index: 60;
}
.nav__item.is-open .nav__submenu,
.nav__submenu.is-open { display: block; }
.nav__submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 10px;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav__submenu a::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .5;
  transition: opacity .15s ease, transform .15s ease;
}
.nav__submenu a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}
.nav__submenu a:hover::before { opacity: 1; transform: scale(1.4); }

/* CTA header */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-brand);
  color: #fff !important;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  margin-left: 6px;
  box-shadow: var(--shadow-brand);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(34, 40, 117, .40);
  color: #fff !important;
  background: var(--grad-brand);
}

.nav-toggle {
  display: none;
  color: var(--ink);
  font-size: 24px;
  padding: 8px;
  border-radius: 10px;
}
.nav-toggle:hover { background: var(--brand-soft); }

/* ==========================================================================
   HERO — full-screen con CTA destacado
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--brand-deep) url("../img/hero.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 30% 40%, rgba(10, 12, 31, .85), transparent 70%),
    linear-gradient(135deg, rgba(26, 29, 63, .92) 0%, rgba(34, 40, 117, .55) 100%);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 153, 104, .22) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero__badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 0 4px rgba(224, 200, 154, .25);
}
.hero h1 {
  font-size: clamp(38px, 7vw, 78px);
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: none;
  margin: 0 0 22px;
  max-width: 900px;
  line-height: 1.05;
}
.hero h1 .accent { color: var(--accent-light); display: inline-block; }
.hero__sub {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 400;
  letter-spacing: .01em;
  max-width: 580px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, .88);
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-brand);
  color: var(--white);
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .02em;
  box-shadow: var(--shadow-brand);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero__cta:hover {
  background: var(--grad-brand);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(34, 40, 117, .45);
}
.hero__cta svg { width: 18px; height: 18px; }
.hero__cta--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: none;
}
.hero__cta--ghost:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}

.hero__stats {
  display: flex;
  gap: 56px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -.02em;
  display: block;
}
.hero__stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
}

.hero__band {
  background: var(--brand-deep);
  color: var(--white);
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.hero__band h2 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .02em;
  margin: 0;
  max-width: var(--container);
  color: rgba(255, 255, 255, .85);
}
.hero__band strong { color: var(--accent-light); font-weight: 600; }

/* ==========================================================================
   INTRO — split con imagen y credibilidad
   ========================================================================== */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--brand-deep); color: var(--white); }
.section--alt { background: var(--bg-alt); }
.section--soft { background: var(--brand-soft); }

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__header + .feature-row__grid { margin-top: 0; }
.section__header + .services__grid { margin-top: 0; }
.section__header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 14px;
}
.section__header p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

.intro { padding: 96px 0; background: var(--bg); }
.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro__text .eyebrow { margin-bottom: 18px; }
.intro__text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 22px;
  line-height: 1.15;
}
.intro__text h2 strong {
  color: var(--brand);
  font-weight: 800;
}
.intro__text p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 22px;
  line-height: 1.7;
}
.intro__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.intro__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.intro__feature-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.intro__feature-icon svg { width: 18px; height: 18px; }
.intro__img {
  position: relative;
}
.intro__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro__img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
}
.intro__img-floating {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.intro__img-floating-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad-brand);
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.intro__img-floating-icon svg { width: 22px; height: 22px; }
.intro__img-floating strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  display: block;
  letter-spacing: -.02em;
}
.intro__img-floating span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* Feature cards row */
.feature-row { padding: 0 0 96px; background: var(--bg); }
.feature-row__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -64px;
  position: relative;
  z-index: 2;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feature-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: background .25s ease, color .25s ease;
}
.feature-card:hover .feature-card__icon {
  background: var(--grad-brand);
  color: #fff;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   SERVICIOS — Bento grid con imágenes
   ========================================================================== */
.services { padding: 96px 0; background: var(--bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--brand-soft-2);
  overflow: hidden;
}
.service-card__media img,
.service-card__media svg {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 29, 63, .25));
}
.service-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, .95);
  color: var(--brand);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  z-index: 1;
}
.service-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
}
.service-card h3 a {
  color: inherit;
  transition: color .2s ease;
}
.service-card h3 a:hover { color: var(--brand); }
.service-card__desc {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.55;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 22px;
}
.service-card ul li {
  position: relative;
  padding: 2px 0 2px 24px;
  font-size: 14px;
  color: var(--ink);
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand-soft);
}
.service-card ul li::after {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 6px; height: 3px;
  border-left: 1.5px solid var(--brand);
  border-bottom: 1.5px solid var(--brand);
  transform: rotate(-45deg);
}
.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}
.service-card__more svg {
  width: 14px; height: 14px;
  transition: transform .2s ease;
}
.service-card:hover .service-card__more svg { transform: translateX(4px); }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team { padding: 96px 0; background: var(--bg); }
.team-banner {
  min-height: 50vh;
  background: var(--brand-deep) url("../img/limpieza-en-alturas.webp") center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}
.team-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 29, 63, .82), rgba(34, 40, 117, .55));
}
.team-banner__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}
.team-banner__inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin: 0 0 16px;
}
.team-banner__inner p {
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
  max-width: 580px;
  margin: 0 auto;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.team-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.team-card__icon svg { width: 22px; height: 22px; }
.team-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
.team-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   TRANQUILIDAD
   ========================================================================== */
.tranquilidad { padding: 96px 0; background: var(--bg); }
.tranquilidad__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.tranquilidad__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow);
}
.tranquilidad__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.tranquilidad__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 29, 63, .45));
}
.tranquilidad__media-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tranquilidad__media-badge-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-brand);
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.tranquilidad__media-badge-icon svg { width: 22px; height: 22px; }
.tranquilidad__media-badge strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.tranquilidad__media-badge span {
  font-size: 13px;
  color: var(--ink-soft);
}
.tranquilidad__content h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 28px;
}
.tranquilidad__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tranquilidad__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.tranquilidad__list-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.tranquilidad__list-icon svg { width: 20px; height: 20px; }
.tranquilidad__list p {
  font-size: 15px;
  color: var(--ink);
  margin: 0;
  line-height: 1.55;
}
.tranquilidad__list p strong { color: var(--brand); font-weight: 700; }

/* ==========================================================================
   PHONE BAR
   ========================================================================== */
.phone-bar {
  background: var(--brand-deep);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.phone-bar a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  transition: transform .2s ease;
}
.phone-bar a:hover { transform: scale(1.02); color: #fff; }
.phone-bar .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.phone-bar .icon svg { width: 24px; height: 24px; fill: currentColor; }
.phone-bar .num {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: .04em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0c0e22;
  color: rgba(255, 255, 255, .65);
  padding: 64px 24px 32px;
  text-align: center;
  font-size: 14px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto 48px;
  text-align: left;
}
.footer__brand .brand { color: #fff; margin-bottom: 14px; }
.footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}
.footer__col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 18px;
}
.footer__col ul li {
  padding: 6px 0;
  font-size: 14px;
}
.footer__col ul li a {
  color: rgba(255, 255, 255, .65);
  transition: color .2s ease;
}
.footer__col ul li a:hover { color: var(--accent-light); }
.footer__seo {
  max-width: var(--container);
  margin: 0 auto 48px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
}
.footer__seo p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
}
.footer__seo p a,
.footer__zones a { color: var(--accent-light); }
.footer__seo p a:hover,
.footer__zones a:hover { color: var(--white); }
.footer__seo h4 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer__zones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 14px;
}
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.footer__links a { color: rgba(255, 255, 255, .65); font-size: 13px; }
.footer__links a:hover { color: var(--accent-light); }
.footer__copyright {
  margin: 18px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}
.footer__by {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}
.footer__by a { color: var(--accent-light); font-weight: 600; }

/* ==========================================================================
   LANG SWITCH
   ========================================================================== */
.lang-switch {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 22px;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12);
}
.lang-switch a:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--accent-light); }
.lang-switch img { width: 100%; height: 100%; object-fit: cover; }
.lang-switch a.is-current { box-shadow: 0 0 0 2px var(--accent-light); cursor: default; }
.lang-switch a.is-current:hover { transform: none; }

/* ==========================================================================
   LANG DROPDOWN (header)
   ========================================================================== */
.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 10px;
}
.lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 8px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: background .15s ease, border-color .15s ease;
}
.lang-dropdown__toggle:hover {
  background: var(--brand-soft);
  border-color: var(--brand-soft);
  color: var(--brand);
}
.lang-dropdown__toggle:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}
.lang-dropdown__toggle img {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  display: block;
}
.lang-dropdown__caret {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .2s ease;
}
.lang-dropdown.is-open .lang-dropdown__caret {
  transform: rotate(-135deg) translate(-1px, -1px);
}
.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.lang-dropdown.is-open .lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown__menu li { margin: 0; padding: 0; }
.lang-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.lang-dropdown__menu a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}
.lang-dropdown__menu a.is-current {
  background: var(--brand-soft);
  color: var(--brand);
  cursor: default;
}
.lang-dropdown__menu a img {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  background: #25d366;
  color: var(--white);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { background: #1ebe57; transform: translateY(-3px) scale(1.05); color: #fff; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .3);
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ==========================================================================
   PÁGINAS LEGALES
   ========================================================================== */
.legal {
  padding: 72px 0 80px;
  background: var(--bg);
  min-height: 60vh;
}
.legal .container { max-width: 860px; }
.legal h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
  text-align: center;
}
.legal .updated {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
  letter-spacing: -.01em;
}
.legal p, .legal li {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 14px;
  text-align: justify;
  line-height: 1.7;
}
.legal ul { padding-left: 22px; list-style: disc; }
.legal ul li { margin-bottom: 6px; }
.legal a { color: var(--brand); }
.legal a:hover { text-decoration: underline; }

/* ==========================================================================
   BLOG
   ========================================================================== */
/* ---------- Blog hero ---------- */
.blog-hero {
  background: var(--grad-brand);
  color: var(--white);
  padding: 96px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/limpieza-profesional.webp") center/cover;
  opacity: .15;
  mix-blend-mode: overlay;
}
.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 300px at 15% 0%, rgba(200, 153, 104, .22), transparent 60%),
    radial-gradient(700px 320px at 90% 100%, rgba(77, 82, 153, .35), transparent 60%);
  pointer-events: none;
}
.blog-hero__inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; }
.blog-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .12);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, .18);
}
.blog-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}
.blog-hero__sub { max-width: 640px; margin: 0 auto; font-size: 17px; opacity: .9; line-height: 1.55; }
.blog-hero--compact { padding: 56px 24px 48px; }
.blog-hero--compact h1 { display: none; }

/* ---------- Blog layout (sidebar + content) ---------- */
.blog-main, .post-page {
  padding: 64px 0 88px;
  background: var(--bg);
}
.blog-layout, .post-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.blog-content { min-width: 0; }
.post-content { min-width: 0; max-width: 820px; }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: stretch;
}

/* ---------- Sidebar TOC ---------- */
.blog-toc { position: relative; }
.blog-toc__sticky {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-xs);
  max-height: calc(100vh - var(--header-h) - 48px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.blog-toc__sticky::-webkit-scrollbar { width: 6px; }
.blog-toc__sticky::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.blog-toc__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 6px;
  padding: 0;
}
.blog-toc__title::before { display: none; }
.blog-toc__hint {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0 0 18px;
  line-height: 1.5;
}
.blog-toc__nav { display: flex; flex-direction: column; gap: 4px; }
.blog-toc__empty {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0;
  padding: 8px 0;
}
.blog-toc__link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  text-decoration: none;
  color: inherit;
}
.blog-toc__link:hover {
  background: var(--brand-soft-2);
  border-color: var(--border-soft);
  color: inherit;
}
.blog-toc__link.is-active {
  background: var(--brand-soft);
  border-color: var(--border-soft);
}
.blog-toc__link.is-active .blog-toc__heading { color: var(--brand); }
.blog-toc__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.35;
  letter-spacing: 0;
}
.blog-toc__heading::before { display: none; }
.blog-toc__sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-toc__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 4px;
}

.blog-toc__toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--brand);
  color: var(--white);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: var(--shadow-brand);
}
.blog-toc__caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.blog-toc__toggle[aria-expanded="true"] .blog-toc__caret { transform: rotate(-135deg); }

/* ---------- Post cards (tarjetas grandes) ---------- */
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  scroll-margin-top: calc(var(--header-h) + 24px);
  height: 100%;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-soft);
}
.post-card__img {
  aspect-ratio: 4 / 3;
  background: var(--bg-alt) center/cover no-repeat;
  position: relative;
  min-height: 280px;
}
.post-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 40, 117, .05) 0%, rgba(200, 153, 104, .08) 100%);
  pointer-events: none;
}
.post-card__num {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  background: rgba(255, 255, 255, .95);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
}
.post-card__body {
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  min-width: 0;
  min-height: 280px;
}
.post-card__meta {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.post-card__meta::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.post-card__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -.01em;
  padding-left: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__title::before { display: none; }
.post-card__desc {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 18px;
  line-height: 1.45;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__excerpt {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}
.post-card__cattags { margin-top: 0; }
.post-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  flex-shrink: 0;
}
.post-card__more {
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .02em;
}
.post-card__more:hover { color: var(--brand-hover); }
.post-card__more svg { width: 16px; height: 16px; transition: transform .2s ease; }
.post-card:hover .post-card__more svg { transform: translateX(4px); }
.post-card__author {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 600;
  letter-spacing: .04em;
}

.post-card__cattags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
}
.post-card__category {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-soft-2);
  color: var(--brand);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.post-card__category:hover { background: var(--brand); color: var(--white); }
.post-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.post-card__tag {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  border: 1px solid rgba(200, 153, 104, .25);
  letter-spacing: .02em;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.post-card__tag:hover { background: var(--accent); color: var(--white); }

.blog-filters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(26, 29, 63, .04);
}
.blog-filters__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-filters__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 8px;
  min-width: 88px;
}
.blog-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--ink-soft);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  letter-spacing: .02em;
}
.chip:hover { background: var(--brand-soft-2); color: var(--brand); border-color: var(--border-soft); }
.chip.is-active {
  background: var(--grad-brand);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(34, 40, 117, .25);
}
.chip--all { background: var(--brand-soft-2); color: var(--brand); }
.chip--tag { background: var(--accent-soft); color: var(--accent-hover); border-color: rgba(200, 153, 104, .25); }
.chip--tag.is-active { background: var(--grad-accent); color: #fff; border-color: transparent; box-shadow: 0 6px 16px rgba(200, 153, 104, .30); }
.chip--clear { background: transparent; color: var(--danger); border-color: var(--danger); border-style: dashed; }

.post-page__cattags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
}
.post-page__category {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  text-decoration: none;
}
.post-page__category:hover { background: var(--brand-hover); color: var(--white); }
.post-page__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.post-page__tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  border: 1px solid rgba(200, 153, 104, .25);
  text-decoration: none;
}
.post-page__tag:hover { background: var(--accent); color: #fff; }

.blog-empty, .blog-error {
  text-align: center;
  padding: 64px 24px;
  color: var(--ink-soft);
  font-size: 15px;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.post-meta {
  text-align: center;
  color: var(--ink-muted);
  font-size: 13px;
  margin: 32px 0 0;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Post detail page ---------- */
.post-page__meta { font-size: 13px; color: var(--ink-soft); margin: 0 0 8px; font-weight: 500; }
.post-page h1 {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--ink);
  margin: 0 0 22px; line-height: 1.2;
}
.post-page__img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.post-page__body { font-size: 16px; color: var(--ink-soft); line-height: 1.8; }
.post-page__body p { margin: 0 0 16px; }
.post-page__body h2 {
  font-size: 24px;
  margin: 40px 0 14px;
  color: var(--ink);
  font-weight: 800;
  scroll-margin-top: calc(var(--header-h) + 24px);
  padding-top: 4px;
}
.post-page__body h3 { font-size: 19px; margin: 24px 0 10px; color: var(--ink); font-weight: 700; scroll-margin-top: calc(var(--header-h) + 24px); }
.post-page__body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.post-page__body a { color: var(--brand); }
.post-page__body a:hover { text-decoration: underline; }
.post-page__back {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 40px; color: var(--brand); font-weight: 600;
}
.post-page__back:hover { text-decoration: underline; }

.post-cta {
  margin-top: 48px;
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand) 0%, #1a1f5a 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.post-cta::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 153, 104, .35) 0%, transparent 70%);
  pointer-events: none;
}
.post-cta__title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -.01em;
  position: relative;
}
.post-cta__text {
  font-size: 15px;
  margin: 0;
  color: rgba(255, 255, 255, .85);
  line-height: 1.55;
  max-width: 56ch;
  position: relative;
}
.post-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(200, 153, 104, .40);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  position: relative;
}
.post-cta__btn:hover {
  background: #b38752;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(200, 153, 104, .50);
}
.post-cta__btn svg { width: 16px; height: 16px; transition: transform .2s ease; }
.post-cta__btn:hover svg { transform: translateX(3px); }
.post-cta__body { position: relative; min-width: 0; }
@media (max-width: 720px) {
  .post-cta {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    text-align: left;
  }
  .post-cta__btn { justify-self: start; }
}

/* ==========================================================================
   PÁGINAS DE CONTENIDO
   ========================================================================== */
.page-hero {
  position: relative;
  background: var(--brand-deep) url("../img/limpieza-profesional.webp") center/cover no-repeat;
  color: var(--white);
  padding: 110px 24px 88px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 29, 63, .92) 0%, rgba(34, 40, 117, .55) 100%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; }
.page-hero__crumb {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.page-hero__crumb a { color: var(--accent-light); }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  opacity: .9;
  line-height: 1.6;
}

.content-page { padding: 96px 0; background: var(--bg); }
.content-page .container { max-width: 920px; }
.content-page h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--ink);
  margin: 56px 0 18px;
  letter-spacing: -.02em;
  position: relative;
  padding-left: 18px;
}
.content-page h2::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 22px;
  border-radius: 3px;
  background: var(--grad-brand);
}
.content-page h2:first-of-type { margin-top: 0; }
.content-page h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 10px;
}
.content-page p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.75;
}
.content-page ul { padding-left: 22px; list-style: none; margin: 0 0 24px; }
.content-page ul li {
  position: relative;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 10px;
  padding-left: 28px;
  line-height: 1.6;
}
.content-page ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-soft);
}
.content-page ul li::after {
  content: "";
  position: absolute;
  left: 6px; top: 13px;
  width: 6px; height: 3px;
  border-left: 1.5px solid var(--brand);
  border-bottom: 1.5px solid var(--brand);
  transform: rotate(-45deg);
}
.content-page a { color: var(--brand); font-weight: 500; }
.content-page a:hover { color: var(--brand-hover); text-decoration: underline; }

/* Sección con imagen lateral */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 64px 0;
}
.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }
.split-section__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-section__media svg,
.split-section__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-section__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.split-section__badge-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--grad-brand);
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.split-section__badge-icon svg { width: 20px; height: 20px; }
.split-section__badge strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.split-section__badge span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* Imagen de cabecera completa */
.full-media {
  margin: 56px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.full-media svg,
.full-media img {
  width: 100%; height: auto;
  display: block;
}

/* Features grid */
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0 12px;
}
.service-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-feature__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.service-feature__icon svg { width: 24px; height: 24px; }
.service-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.service-feature p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* CTA row */
.cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  border: none;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  background: var(--grad-brand);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(34, 40, 117, .40);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.page-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.page-hero__actions .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
}
.page-hero__actions .btn--outline:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, .12);
  text-decoration: none;
}
.page-hero__actions .btn--primary:hover { text-decoration: none; }
.home-content .container { max-width: var(--container); }
.content-section { margin: 72px 0; }
.content-section:first-child { margin-top: 0; }
.content-section:last-child { margin-bottom: 0; }
.content-section > h2:first-child { margin-top: 0; }
.content-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-xs);
}
.content-card__img {
  width: calc(100% + 56px);
  margin: -28px -28px 20px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.content-card h3,
.content-card h4 {
  color: var(--ink);
  margin: 0 0 12px;
}
.content-card h3 { font-size: 19px; }
.content-card h4 { font-size: 17px; }
.content-card p:last-child { margin-bottom: 0; }
.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.faq-item h3 { margin: 0 0 10px; }
.faq-item p:last-child { margin-bottom: 0; }
.content-cta {
  background: var(--grad-brand);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin-top: 72px;
  box-shadow: var(--shadow-brand);
}
.content-cta h2 {
  color: var(--white);
  margin-top: 0;
  padding-left: 0;
}
.content-cta h2::before { display: none; }
.content-cta h3,
.content-cta p { color: rgba(255, 255, 255, .9); }
.content-cta .btn--primary {
  background: var(--white);
  color: var(--brand);
  box-shadow: none;
}
.content-cta .btn--primary:hover {
  background: var(--accent-soft);
  color: var(--brand);
  box-shadow: none;
  text-decoration: none;
}
.content-cta .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
}
.content-cta .btn--outline:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
  text-decoration: none;
}
.proof-section {
  background: var(--brand-deep);
  color: var(--white);
  padding: 48px 0;
}
.proof-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.proof-section__item {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .05);
}
.proof-section__item h2 {
  color: var(--white);
  font-size: clamp(20px, 2.5vw, 28px);
  margin: 0;
}
.blog-learning { padding-bottom: 32px; }

/* ========================================================================== 
   FORMULARIOS
   ========================================================================== */
.budget-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 28px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row--single { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(34, 40, 117, .12);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; color: var(--ink-soft); margin: 8px 0 20px;
  line-height: 1.5;
}
.form-consent input { margin-top: 4px; accent-color: var(--brand); }
.form-consent a { color: var(--brand); }
.form-consent a:hover { text-decoration: underline; }
.form-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--grad-brand); color: var(--white);
  border: none; padding: 16px 32px;
  font-size: 15px; font-weight: 600; letter-spacing: .02em;
  border-radius: 999px; cursor: pointer;
  box-shadow: var(--shadow-brand);
  transition: transform .2s ease, box-shadow .2s ease;
}
.form-submit:hover { background: var(--grad-brand); transform: translateY(-2px); box-shadow: 0 24px 50px rgba(34, 40, 117, .40); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: var(--shadow-brand); }
.form-submit svg { width: 16px; height: 16px; }
.form-success {
  display: none;
  background: #e8f6ec;
  color: #1f7a3a;
  border: 1px solid #b9e3c4;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  margin-top: 18px;
}
.form-success.is-visible { display: block; }
.form-success.is-error {
  background: #fdecec;
  color: #a12626;
  border-color: #f3bcbc;
}

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.contact-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--ink); margin: 0 0 10px;
}
.contact-card p { font-size: 15px; color: var(--ink-soft); margin: 0 0 8px; line-height: 1.55; }
.contact-card a { color: var(--brand); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

/* ==========================================================================
   SERVICE AREA MAP
   ========================================================================== */
.service-area-map {
  height: 420px;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 20px 0;
  background: var(--brand-soft-2);
  overflow: hidden;
}
.service-area-map .service-area-map__glow {
  animation: service-area-glow 2.6s ease-in-out infinite;
}
@keyframes service-area-glow {
  0%, 100% { fill-opacity: 0.25; }
  50% { fill-opacity: 0.45; }
}
.service-area-map__label {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 3px 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.service-area-map__label::before { display: none; }
.service-area-map .leaflet-popup-content-wrapper { border-radius: 10px; }
.service-area-map .leaflet-popup-content { font-family: inherit; font-size: 14px; color: var(--ink); margin: 10px 14px; }
.service-area-map .leaflet-popup-content strong { color: var(--brand); }

/* ==========================================================================
   STATS COUNTER (nuevo)
   ========================================================================== */
.stats-section {
  background: var(--grad-brand);
  color: #fff;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 153, 104, .18) 0%, transparent 70%);
}
.stats-section::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .05) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stat {
  text-align: center;
}
.stat__num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 8px;
  color: #fff;
}
.stat__num span {
  color: var(--accent-light);
  font-weight: 600;
}
.stat__label {
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ==========================================================================
   ZONAS — chips
   ========================================================================== */
.zones {
  padding: 56px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.zones h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 24px;
}
.zones__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.zones__list li {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.zones__list li:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-2px);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .intro__grid { grid-template-columns: 1fr; gap: 48px; }
  .intro__img-floating { left: 16px; bottom: -16px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .tranquilidad__wrap { grid-template-columns: 1fr; }
  .tranquilidad__media { min-height: 360px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .split-section--reverse { direction: ltr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .feature-row__grid { grid-template-columns: 1fr; margin-top: -32px; }
  .services__grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .intro { padding: 72px 0; }
  .team-banner { background-attachment: scroll; }
  .feature-row { padding: 0 0 72px; }
  .blog-layout, .post-layout { grid-template-columns: 240px 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .site-header__inner { padding: 0 16px; }
  .brand { gap: 10px; letter-spacing: 1px; }
  .nav-toggle { margin-left: auto; }
  .nav .lang-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin: 10px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .nav .lang-dropdown__toggle { width: 100%; justify-content: space-between; padding: 12px 14px; }
  /* En móvil el menú de idiomas se despliega inline (como el submenú de Servicios)
     en vez de flotar en absoluto, para que no quede recortado por el scroll del panel. */
  .nav .lang-dropdown__menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    min-width: 0;
    margin: 6px 0 0;
    padding: 0;
  }
  .nav .lang-dropdown.is-open .lang-dropdown__menu { display: flex; flex-direction: column; }
  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 18px 24px 24px;
    gap: 4px;
    display: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav > a, .nav__link { padding: 12px 14px; width: 100%; color: var(--ink); }
  .nav__item { width: 100%; }
  .nav__submenu {
    position: static;
    transform: none;
    background: var(--bg);
    border: none;
    border-radius: 12px;
    box-shadow: none;
    padding: 6px;
    margin-top: 6px;
    min-width: 0;
    display: none;
  }
  .nav__item.is-open .nav__submenu { display: block; transform: none; }
  .nav__submenu a { padding: 10px 14px; font-size: 14px; white-space: normal; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 8px; margin-left: 0; }

  .hero { min-height: 80vh; }
  .hero__inner { padding: 60px 24px; }
  .hero__stats { gap: 28px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; }
  .hero__band h2 { font-size: 14px; }

  .intro__img-floating { position: static; margin-top: 24px; max-width: none; }
  .section__header { margin-bottom: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team__grid { grid-template-columns: 1fr; margin-top: -40px; }
  .legal h1 { font-size: 28px; }
  .content-page h2 { font-size: 22px; margin: 40px 0 14px; }
  .content-cta { padding: 32px 24px; }
  .phone-bar {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 60;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .phone-bar .num { display: none; }
  .phone-bar .icon { width: 60px; height: 60px; }
  .footer__seo { padding: 24px 18px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__brand p { margin: 0 auto; }
  .blog-list { grid-template-columns: 1fr; }
  .feature-card { padding: 26px 22px; }
  .page-hero { padding: 80px 24px 60px; }

  /* Blog layout responsive */
  .blog-layout, .post-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-toc { order: -1; }
  .blog-toc__toggle { display: flex; }
  .blog-toc__title,
  .blog-toc__hint { display: none; }
  .blog-toc__sticky {
    position: static;
    max-height: none;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }
  .blog-toc__nav {
    display: none;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    margin-top: 12px;
    box-shadow: var(--shadow-xs);
  }
  .blog-toc.is-open .blog-toc__nav { display: flex; }
  .blog-toc__link { padding: 10px 12px; }
  .blog-toc__heading { font-size: 13px; }
  .blog-toc__sub { font-size: 11px; -webkit-line-clamp: 1; }

  .post-card {
    grid-template-columns: 1fr;
  }
  .post-card__img { min-height: 220px; aspect-ratio: 16 / 10; }
  .post-card__body { padding: 24px 22px; }

  .post-content { max-width: 100%; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: clamp(30px, 9vw, 42px); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__cta { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOCUS / ACCESIBILIDAD
   ========================================================================== */
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

::selection {
  background: var(--brand);
  color: #fff;
}