/* =========================================================================
   S.O.S Relax — Dermatocosmiatría · Luján
   Archetype: 08 Liquid Wave (adapted for skincare)
   ========================================================================= */

/* Declara el sitio como esquema claro: desactiva el "modo oscuro automático"
   de los navegadores móviles (Chrome Android / Samsung Internet) que oscurece
   los fondos y textos si el sitio no declara su color-scheme. */
:root { color-scheme: light; }
html { color-scheme: light; }

:root {
  /* Palette — sage green + warm cream + sand (marca S.O.S Relax) */
  --bg:        #f3f5ec;   /* warm light sage-cream */
  --bg-2:      #e7ecdb;   /* soft sage */
  --bg-deep:   #434f39;   /* deep olive/sage — dark section */
  --paper:     #ffffff;
  --ink:       #2b3326;   /* warm dark olive-charcoal */
  --ink-soft:  #4c5743;
  --ink-mute:  #79826d;
  --accent:    #7e9b6e;   /* sage green — primary */
  --accent-d:  #566f49;   /* deep olive — hover / text */
  --blush:     #cdb488;   /* warm sand/gold — secondary accent */
  --blush-d:   #ac9260;
  --peach:     #e8dcc3;   /* warm cream/sand */
  --line:      rgba(43,51,38,0.12);

  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-hand:    "Caveat", cursive;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.65, 0.05, 0.36, 1);

  --maxw: 1200px;
  --pad: clamp(1.2rem, 5vw, 4rem);
  --radius: 28px;
  --shadow: 0 24px 60px -24px rgba(12, 84, 80, 0.35);
  --shadow-sm: 0 12px 30px -14px rgba(12, 84, 80, 0.3);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ----- Reusable ----- */
.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-d);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--blush);
  border-radius: 2px;
}
.hand {
  font-family: var(--font-hand);
  color: var(--blush-d);
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1;
}

.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.3s;
  will-change: transform;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(22, 168, 154, 0.6);
}
.btn-primary:hover { background: var(--accent-d); transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(22, 168, 154, 0.7); }
.btn-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: #fff; transform: translateY(-3px); border-color: var(--accent); }
.btn svg { width: 18px; height: 18px; }

/* ----- Splash ----- */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--bg);
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
  animation: splashSafety 0.01s 4.5s forwards;
}
.splash.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.splash-mark {
  text-align: center;
}
.splash-drop {
  width: 46px; height: 46px; margin: 0 auto 1rem;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
  transform: rotate(45deg);
  animation: dropPulse 1.4s var(--ease-soft) infinite;
}
@keyframes dropPulse {
  0%,100% { transform: rotate(45deg) scale(1); opacity: 1; }
  50% { transform: rotate(45deg) scale(0.82); opacity: 0.7; }
}
.splash-name {
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.05em;
  color: var(--ink); font-size: 1.05rem;
}
.splash-name span { color: var(--accent-d); }

/* ----- Nav ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--pad);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.is-scrolled {
  background: rgba(238, 247, 246, 0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.7rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.brand-drop {
  width: 22px; height: 22px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
  transform: rotate(45deg);
  flex: none;
}
.brand span { color: var(--accent-d); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { margin-left: 0.5rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.4rem; padding: 2rem 2.4rem;
    background: rgba(238,247,246,0.97);
    backdrop-filter: blur(18px);
    transform: translateX(100%); transition: transform 0.45s var(--ease-out);
    box-shadow: -20px 0 60px -30px rgba(12,84,80,0.5);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: flex; z-index: 950; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ----- Reveal ----- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ----- Blobs (decorative) ----- */
.blob {
  position: absolute; z-index: 0; pointer-events: none;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  filter: blur(2px);
  opacity: 0.5;
  animation: blobMorph 16s ease-in-out infinite;
}
@keyframes blobMorph {
  0%,100% { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; transform: translate3d(0,0,0) rotate(0deg); }
  33% { border-radius: 60% 40% 42% 58% / 58% 62% 38% 42%; transform: translate3d(14px,-18px,0) rotate(8deg); }
  66% { border-radius: 38% 62% 55% 45% / 48% 40% 60% 52%; transform: translate3d(-12px,12px,0) rotate(-6deg); }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 8rem var(--pad) 6rem;
  overflow: hidden;
}
.hero-bg-blob-1 {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  top: -8%; right: -6%;
  background: radial-gradient(circle at 30% 30%, var(--peach), transparent 70%);
  opacity: 0.7;
}
.hero-bg-blob-2 {
  width: 40vw; height: 40vw; max-width: 520px; max-height: 520px;
  bottom: -14%; left: -10%;
  background: radial-gradient(circle at 60% 40%, rgba(126,155,110,0.4), transparent 70%);
  animation-delay: -6s;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin-inline: auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-copy { max-width: 34rem; }
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  margin: 1.4rem 0 1.3rem;
  text-wrap: balance;
}
.hero-title em { font-style: normal; color: var(--accent-d); position: relative; }
.hero-title .hand { display: block; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-top: 0.1rem; }
.hero-sub {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 30rem; margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-trust {
  margin-top: 2.4rem; display: flex; align-items: center; gap: 1.4rem;
  flex-wrap: wrap; color: var(--ink-mute); font-size: 0.9rem;
}
.hero-stars { color: #f0a92b; letter-spacing: 2px; font-size: 1rem; }
.hero-trust strong { color: var(--ink); }
.hero-trust .sep { width: 1px; height: 26px; background: var(--line); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo-wrap {
  position: relative; z-index: 2;
  border-radius: 46% 54% 55% 45% / 52% 48% 52% 48%;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  animation: floatY 7s var(--ease-soft) infinite;
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
/* Subtle bottom fade for depth under the floating badge */
.hero-photo-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(43,51,38,0.14) 100%);
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-badge {
  position: absolute; z-index: 3;
  background: var(--paper); border-radius: 20px; padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 0.7rem;
}
.hero-badge-1 { bottom: 6%; left: -6%; animation: floatY 6s var(--ease-soft) infinite; }
.hero-badge-2 { top: 8%; right: -4%; animation: floatY 6s var(--ease-soft) 1.5s infinite; }
.hero-badge .ico {
  width: 38px; height: 38px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
}
.hero-badge.hero-badge-2 .ico { background: linear-gradient(135deg, var(--blush), var(--blush-d)); }
.hero-badge b { display: block; font-size: 0.92rem; color: var(--ink); font-family: var(--font-display); }
.hero-badge small { color: var(--ink-mute); font-size: 0.76rem; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 420px; margin-inline: auto; width: 100%; }
  .hero-copy { max-width: none; }
  /* Soften the warm decorative blobs so mobile reads as light as the rest */
  .hero-bg-blob-1 { opacity: 0.32; }
  .hero-bg-blob-2 { opacity: 0.4; }
}

/* ----- Wave divider ----- */
.wave-divider { position: relative; line-height: 0; z-index: 1; }
.wave-divider svg { width: 100%; height: clamp(50px, 8vw, 110px); display: block; }

/* =========================================================================
   SECTION base
   ========================================================================= */
.section { position: relative; padding: clamp(4.5rem, 9vw, 8rem) 0; overflow: hidden; }
.section-head { max-width: 42rem; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin: 1rem 0 1rem;
  text-wrap: balance;
}
.section-title em { font-style: normal; color: var(--accent-d); }
.section-lead { font-size: 1.08rem; color: var(--ink-soft); }

/* ----- Sobre ----- */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.4rem, 5vw, 5rem); align-items: center; }
.about-visual { position: relative; }
.about-photo {
  border-radius: 34px; overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 3/4;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-splash {
  position: absolute; z-index: -1; width: 70%; aspect-ratio: 1;
  right: -12%; bottom: -10%;
  background: radial-gradient(circle, rgba(126,155,110,0.35), transparent 70%);
  border-radius: 50%;
}
.about-sign {
  margin-top: 1.8rem; display: flex; align-items: center; gap: 0.9rem;
}
.about-sign .line { flex: none; width: 40px; height: 2px; background: var(--blush); }
.about-sign b { font-family: var(--font-display); }
.about-sign small { display: block; color: var(--ink-mute); font-size: 0.85rem; }
.about p + p { margin-top: 1.1rem; }
.about-quote {
  margin-top: 1.4rem; padding-left: 1.1rem;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  color: var(--accent-d); font-size: 1.08rem;
}
.about-values { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.chip {
  padding: 0.5rem 1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 500;
  background: var(--bg-2); color: var(--accent-d);
  border: 1px solid rgba(126,155,110,0.18);
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .about-visual { max-width: 380px; } }

/* ----- Tratamientos ----- */
.treatments { background: var(--paper); }
/* Group labels align with accordion width */
.treatments .acc-wrap .treat-group-label { margin-top: 0; }
.treat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.treat-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  overflow: hidden;
  transform-style: preserve-3d;
}
.treat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blush));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.treat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.treat-card:hover::before { transform: scaleX(1); }
.treat-ico {
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center; color: #fff; margin-bottom: 1.3rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
}
.treat-card:nth-child(2n) .treat-ico { background: linear-gradient(135deg, var(--blush), var(--blush-d)); }
.treat-ico svg { width: 28px; height: 28px; }
.treat-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.treat-card p { color: var(--ink-soft); font-size: 0.96rem; }
.treat-tag { display: inline-block; margin-top: 1rem; font-size: 0.8rem; font-weight: 600; color: var(--accent-d); }
@media (max-width: 900px) { .treat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .treat-grid { grid-template-columns: 1fr; } }

/* Treatment group labels */
.treat-group-label { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.6rem; }
.tg-pill {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-d); background: var(--bg-2); padding: 0.4rem 1rem; border-radius: 100px;
  border: 1px solid rgba(126,155,110,0.2); white-space: nowrap;
}
.tg-line { flex: 1; height: 1px; background: var(--line); }

/* Aparatología (detalle) */
.apparatus { background: var(--bg); }
.acc-wrap { max-width: 820px; margin-inline: auto; }

/* Resultados (antes y después) */
.results { background: var(--paper); }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 900px; margin-inline: auto; }
.result-card { margin: 0; background: var(--bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.result-card img { width: 100%; display: block; }
.result-card figcaption { padding: 1.1rem 1.4rem 1.3rem; }
.result-card figcaption b { font-family: var(--font-display); color: var(--ink); font-size: 1.02rem; }
.result-card figcaption span { display: block; color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.25rem; }
@media (max-width: 640px) { .results-grid { grid-template-columns: 1fr; } }

/* Nuestro espacio (galería masonry) */
.space { background: var(--bg); }
.gallery { columns: 3 260px; column-gap: 1rem; }
.gallery img {
  width: 100%; margin: 0 0 1rem; border-radius: 18px; break-inside: avoid;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.gallery img:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow); }
@media (max-width: 900px) { .gallery { columns: 2 200px; } }
@media (max-width: 520px) { .gallery { columns: 1; } }

/* Footer logo */
.footer-logo { width: 172px; max-width: 60%; border-radius: 12px; background: #fff; padding: 7px; margin-bottom: 1.1rem; }

/* ----- Diferenciales + stats ----- */
.why { background: var(--bg-deep); color: #eef1e6; }
.why .kicker { color: #c2d3a8; }
.why .kicker::before { background: var(--blush); }
.why .section-title { color: #fff; }
.why .section-lead { color: rgba(238,241,230,0.8); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.4rem,5vw,4.5rem); align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 1.6rem; }
.why-item { display: flex; gap: 1.1rem; }
.why-item .ico {
  width: 46px; height: 46px; flex: none; border-radius: 14px;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
}
.why-item .ico svg { width: 24px; height: 24px; }
.why-item h3 { color: #fff; font-size: 1.12rem; margin-bottom: 0.3rem; }
.why-item p { color: rgba(238,241,230,0.78); font-size: 0.95rem; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px; padding: 1.8rem 1.4rem; text-align: center;
  backdrop-filter: blur(6px);
}
.stat-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem,4vw,3rem); color: #fff; line-height: 1; }
.stat-num .suf { color: #c2d3a8; }
.stat-label { margin-top: 0.5rem; font-size: 0.85rem; color: rgba(238,241,230,0.75); }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

/* ----- Proceso ----- */
.process { background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; position: relative; }
.step {
  position: relative; padding: 2.2rem 1.6rem; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--line);
}
.step-num {
  font-family: var(--font-display); font-weight: 700; font-size: 2.6rem;
  color: transparent; -webkit-text-stroke: 1.5px var(--accent);
  line-height: 1; margin-bottom: 0.8rem;
}
.step:nth-child(2) .step-num { -webkit-text-stroke-color: var(--blush); }
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ----- Testimonios ----- */
.testi { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.testi-card {
  background: var(--paper); border-radius: var(--radius); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); position: relative;
}
.testi-card .quote { font-family: var(--font-display); font-size: 3rem; line-height: 0.5; color: var(--blush); height: 1.4rem; }
.testi-card p { color: var(--ink-soft); font-size: 0.98rem; margin: 0.6rem 0 1.3rem; }
.testi-stars { color: #f0a92b; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 0.9rem; }
.testi-who { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
}
.testi-card:nth-child(2) .testi-avatar { background: linear-gradient(135deg, var(--blush), var(--blush-d)); }
.testi-who b { font-family: var(--font-display); font-size: 0.96rem; }
.testi-who small { display: block; color: var(--ink-mute); font-size: 0.8rem; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }

/* ----- FAQ ----- */
.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item {
  border: 1px solid var(--line); border-radius: 20px; background: var(--bg);
  overflow: hidden; transition: border-color 0.3s, background 0.3s;
}
.faq-item.is-open { border-color: var(--accent); background: var(--paper); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; font-family: var(--font-display); font-weight: 600; font-size: 1.03rem; color: var(--ink);
}
.faq-icon { flex: none; width: 24px; height: 24px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--accent-d); border-radius: 2px;
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: transform 0.35s var(--ease-out); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-a-inner { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); font-size: 0.97rem; }
.faq-aside { position: relative; }
.faq-cta {
  background: linear-gradient(150deg, var(--bg-deep), var(--accent-d));
  border-radius: var(--radius); padding: 2.4rem 2rem; color: #fff; position: sticky; top: 100px;
}
.faq-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: 0.7rem; }
.faq-cta p { color: rgba(255,255,255,0.85); font-size: 0.96rem; margin-bottom: 1.5rem; }
.faq-cta .btn-primary { background: #fff; color: var(--accent-d); box-shadow: none; }
.faq-cta .btn-primary:hover { background: var(--peach); }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } .faq-cta { position: static; } }

/* ----- Contacto ----- */
.contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 1.1rem; }
.info-row {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--paper); border-radius: 20px; padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm);
}
.info-row .ico {
  width: 44px; height: 44px; flex: none; border-radius: 13px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
}
.info-row .ico svg { width: 22px; height: 22px; }
.info-row h4 { font-size: 1rem; margin-bottom: 0.15rem; }
.info-row p, .info-row a { color: var(--ink-soft); font-size: 0.95rem; }
.info-row a:hover { color: var(--accent-d); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; border: 4px solid #fff; }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: saturate(1.05); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ----- Footer ----- */
.footer { background: var(--ink); color: rgba(238,241,230,0.7); padding: 3.5rem var(--pad) 2rem; }
.footer-inner { max-width: var(--maxw); margin-inline: auto; }
.footer-top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .brand { color: #fff; margin-bottom: 0.8rem; }
.footer-tag { max-width: 22rem; font-size: 0.92rem; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h5 { color: #fff; font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 0.9rem; }
.footer-col a { display: block; font-size: 0.9rem; margin-bottom: 0.5rem; color: rgba(238,241,230,0.7); }
.footer-col a:hover { color: #c2d3a8; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-top: 1.6rem; font-size: 0.82rem; }
.footer-bottom a { color: rgba(238,241,230,0.7); }
.footer-bottom a:hover { color: #c2d3a8; }

/* ----- Floating WhatsApp ----- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6);
  transition: transform 0.35s var(--ease-out);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; }

/* ----- Reduced motion: only intrusive ----- */
@media (prefers-reduced-motion: reduce) {
  .blob, .hero-photo-wrap, .hero-badge, .splash-drop { animation: none; }
}
