/* ═══════════════════════════════════════════════════════
   NEXO SALUD — Estilos principales
   Archetype: Liquid Wave 08 adaptado
   Paleta: crema cálido · verde salvia · terracota
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --cream:      #faf6f0;
  --cream-2:    #f0ebe0;
  --cream-3:    #e8dfd0;
  --sage:       #5c6b42;
  --sage-light: #8a9a6e;
  --sage-pale:  #d6e0c8;
  --terra:      #c4643a;
  --terra-light:#e8956f;
  --ink:        #2a2520;
  --ink-soft:   #4a4038;
  --ink-mute:   #8a7e72;
  --white:      #ffffff;
  --line:       rgba(42,37,32,0.1);
  --shadow-sm:  0 2px 12px rgba(42,37,32,0.08);
  --shadow-md:  0 8px 32px rgba(42,37,32,0.12);
  --shadow-lg:  0 20px 60px rgba(42,37,32,0.16);
  --radius:     16px;
  --radius-lg:  24px;
  --ease-out:   cubic-bezier(0.22,1,0.36,1);
  --ease-in-out:cubic-bezier(0.65,0,0.35,1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.section-inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 500; }

em { font-style: italic; color: var(--sage); }

.kicker {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--ink-mute);
  line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(92,107,66,0.35);
}
.btn-primary:hover { background: var(--ink); box-shadow: 0 8px 24px rgba(42,37,32,0.3); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); }

.btn-sage {
  background: var(--sage-pale);
  color: var(--sage);
  box-shadow: 0 4px 16px rgba(92,107,66,0.2);
}
.btn-sage:hover { background: var(--sage); color: var(--white); }

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal[data-split] { opacity: 1; transform: none; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SPLASH ─── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  animation: splashSafety 0.01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.splash-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: 0.05em;
  animation: splashFadeIn 0.6s var(--ease-out) both;
}
@keyframes splashFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.splash-bar {
  width: 120px;
  height: 2px;
  background: var(--cream-3);
  border-radius: 2px;
  overflow: hidden;
}
.splash-fill {
  height: 100%;
  background: var(--sage);
  border-radius: 2px;
  animation: splashLoad 2.2s var(--ease-in-out) both;
}
@keyframes splashLoad {
  from { width: 0; }
  to { width: 100%; }
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
  padding-block: 0;
}
.nav.is-scrolled {
  background: rgba(250,246,240,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  color: var(--sage);
}
.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav-brand strong { color: var(--sage); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-inline-start: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav-links a:hover { color: var(--sage); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { flex-shrink: 0; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-inline-start: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: rgba(250,246,240,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
  gap: 0.25rem;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 0;
  font-size: 1rem;
  width: 100%;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.nav-mobile a:last-child { border-bottom: none; margin-top: 1rem; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: clip;
  background: var(--cream);
}

/* Organic blobs */
.hero-blob {
  position: absolute;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  pointer-events: none;
  filter: blur(1px);
}
.hero-blob-1 {
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: radial-gradient(ellipse, rgba(214,224,200,0.55) 0%, transparent 70%);
  top: -10%;
  right: -8%;
  animation: blobFloat1 18s ease-in-out infinite;
  border-radius: 52% 48% 38% 62% / 44% 56% 44% 56%;
}
.hero-blob-2 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: radial-gradient(ellipse, rgba(196,100,58,0.12) 0%, transparent 65%);
  bottom: 5%;
  left: 5%;
  animation: blobFloat2 22s ease-in-out infinite;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}
.hero-blob-3 {
  width: clamp(150px, 20vw, 280px);
  height: clamp(150px, 20vw, 280px);
  background: radial-gradient(ellipse, rgba(92,107,66,0.1) 0%, transparent 65%);
  top: 30%;
  left: -4%;
  animation: blobFloat3 26s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0,0) scale(1) rotate(0deg); }
  33% { transform: translate(-20px, 30px) scale(1.05) rotate(5deg); }
  66% { transform: translate(15px, -15px) scale(0.97) rotate(-3deg); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(25px, -20px) rotate(8deg); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12) rotate(-5deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-block: 4rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}

.hero-title { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 44ch;
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.hero-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(214,224,200,0.5);
  border: 1px solid var(--sage-pale);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.badge-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.hero-badge strong { color: var(--sage); }
.hero-badge em { color: var(--terra); font-style: italic; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--ink-mute);
}
.trust-icon {
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Hero image */
.hero-image { position: relative; }
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: clip;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease-out);
}
.hero-img-frame:hover img { transform: scale(1.04); }

.hero-img-blob {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 80% 20%, rgba(214,224,200,0.4) 0%, transparent 60%);
  z-index: -1;
  border-radius: 50%;
}

.hero-float-card {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 130px;
}
.float-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
}
.float-label {
  font-size: 0.72rem;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.3;
}

/* ─── PILLARS ─── */
.pillars {
  position: relative;
  background: var(--cream-2);
  padding-block: 0;
}
.pillars .section-inner {
  padding-block: 4rem;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pillar h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.pillar p { font-size: 0.9rem; color: var(--ink-mute); line-height: 1.7; }

.wave-divider { display: block; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ─── SERVICIOS NEXO SALUD ─── */
.servicios {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.service-card-main {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card-main .service-img {
  border-radius: calc(var(--radius) - 4px);
  overflow: clip;
  flex: 1;
  min-height: 200px;
  margin-bottom: 0.5rem;
}
.service-card-main .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.service-card-main:hover .service-img img { transform: scale(1.05); }
.service-img-side {
  border-radius: calc(var(--radius) - 4px);
  overflow: clip;
  height: 120px;
}
.service-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-body { display: flex; flex-direction: column; gap: 0.5rem; }
.service-tag {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  align-self: flex-start;
}
.service-card h3 {
  font-size: 1.15rem;
  color: var(--ink);
}
.service-card p { font-size: 0.875rem; color: var(--ink-mute); line-height: 1.65; }
.service-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ─── BABY & KIDS ─── */
.baby-kids {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--cream-2);
  overflow: clip;
}
.baby-blob {
  position: absolute;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  pointer-events: none;
}
.baby-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(214,224,200,0.45) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  animation: blobFloat2 20s ease-in-out infinite;
}
.baby-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(196,100,58,0.1) 0%, transparent 65%);
  bottom: -5%;
  left: -5%;
  animation: blobFloat1 24s ease-in-out infinite;
}

.baby-kids .section-header h2 strong { color: var(--terra); }

.babykids-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.babykids-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.875rem;
  position: relative;
}
.baby-img-main {
  grid-column: span 2;
  border-radius: var(--radius);
  overflow: clip;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-md);
}
.baby-img-main img,
.baby-img-secondary img,
.baby-img-third img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.baby-img-main:hover img,
.baby-img-secondary:hover img,
.baby-img-third:hover img { transform: scale(1.04); }
.baby-img-secondary,
.baby-img-third {
  border-radius: var(--radius);
  overflow: clip;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
}

.baby-service {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.baby-service:last-of-type { border-bottom: none; }
.baby-service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--sage-pale);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
  transition: color 0.2s;
}
.baby-service:hover .baby-service-num { color: var(--sage); }
.baby-service h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.baby-service p { font-size: 0.875rem; color: var(--ink-mute); line-height: 1.65; }
.baby-cta { margin-top: 1.5rem; }

/* ─── OFERTA ─── */
.oferta {
  position: relative;
  padding-block: 0;
  background: var(--cream);
}
.oferta .section-inner { padding-block: 5rem; }
.oferta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.oferta-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  overflow: clip;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.oferta-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.oferta-card-main { border-top: 4px solid var(--sage); }
.oferta-card-baby { border-top: 4px solid var(--terra); }

.oferta-ribbon {
  position: absolute;
  top: 1.25rem;
  right: -0.5rem;
  background: var(--sage);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px 0 0 50px;
}
.oferta-ribbon-sage { background: var(--terra); }

.oferta-icon { color: var(--sage); }
.oferta-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--sage);
}
.oferta-card h3 { font-size: 1.5rem; color: var(--ink); }
.oferta-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
}
.oferta-desc { font-size: 0.9rem; color: var(--ink-mute); line-height: 1.7; max-width: 36ch; }
.oferta-price {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  width: 100%;
}
.price-tag { display: block; font-size: 0.75rem; color: var(--ink-mute); margin-bottom: 0.25rem; }
.price-includes { font-size: 1rem; font-weight: 600; color: var(--sage); }
.oferta-price-big {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  justify-content: center;
}
.price-old {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.price-new {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}
.oferta-note {
  font-size: 0.72rem;
  color: var(--ink-mute);
  margin-top: -0.5rem;
}

/* ─── QUOTE SECTION ─── */
.quote-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--cream);
}
.quote-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.big-quote blockquote p {
  font-family: "Dancing Script", cursive;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--sage);
  line-height: 1.4;
  quotes: "«" "»";
}
.big-quote blockquote p::before { content: "«"; color: var(--terra); }
.big-quote blockquote p::after { content: "»"; color: var(--terra); }
.big-quote figcaption {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--ink-mute);
}
.cite-sub { display: block; font-style: italic; color: var(--terra); }

.family-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: clip;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.family-img img { width: 100%; height: 100%; object-fit: cover; }
.family-blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92,107,66,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── CONTACTO ─── */
.contacto {
  position: relative;
  padding-block: 0;
  background: var(--cream-2);
}
.contacto .section-inner { padding-block: 5rem; }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.contact-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1.3; }
.contact-list strong { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.2rem; }
.contact-list span, .contact-list a { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; }
.contact-list a { transition: color 0.2s; }
.contact-list a:hover { color: var(--sage); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  color: rgba(250,246,240,0.8);
  padding-block: 3rem;
}
.footer-inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
}
.footer-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.footer-tag { display: block; font-size: 0.75rem; color: rgba(250,246,240,0.5); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(250,246,240,0.6);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-legal {
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,246,240,0.1);
  font-size: 0.75rem;
  color: rgba(250,246,240,0.35);
  line-height: 1.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card-main {
    grid-column: span 2;
    grid-row: auto;
  }
  .oferta-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .quote-section .section-inner { grid-template-columns: 1fr; }
  .family-img { aspect-ratio: 16/7; }
}

@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 3rem 4rem;
  }
  .hero-image { order: -1; }
  .hero-img-frame { aspect-ratio: 16/9; }
  .hero-float-card { bottom: -0.5rem; left: 0.5rem; }

  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-main { grid-column: auto; }

  .babykids-layout { grid-template-columns: 1fr; }
  .babykids-images { grid-template-columns: 1fr 1fr; }

  .contacto-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 1rem; }
}

@media (max-width: 479px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .babykids-images { grid-template-columns: 1fr; }
  .baby-img-secondary { display: none; }
}

/* ─── HOVER: touch devices ─── */
@media (hover: none) {
  .pillar:hover,
  .service-card:hover,
  .oferta-card:hover { transform: none; }
}
