/* ============================================================
   MANOMA SPA & SALÓN — Sistema de diseño
   Dirección: editorial cálido tipo El Ganzo · fotografía protagonista
   Base neutra (blancos/beige) + lavanda de marca SOLO como acento
   ============================================================ */

:root {
  /* ----- Paleta (base neutra cálida, lavanda de acento) ----- */
  --bg:        #FBFAF8;   /* blanco cálido dominante */
  --cream:     #F5F0E9;   /* beige suave (secciones alternas) */
  --sand:      #EAE2D6;   /* arena */
  --fg:        #352A3A;   /* plum profundo (texto) — Manoma real */
  --fg2:       #857788;   /* mauve (texto secundario) — Manoma real */
  --fg3:       #A99FAD;
  --accent:    #A575BD;   /* lavanda de marca (CTA/links) — Manoma real */
  --accent-d:  #553267;   /* violeta profundo (hover/acentos) — Manoma real */
  --accent-wash:#F1EBF5;  /* lavanda muy tenue */
  --gold:      #B08B4F;   /* dorado sobrio (estrellas) */
  --line:      rgba(53, 42, 58, 0.12);
  --line-s:    rgba(53, 42, 58, 0.06);
  --white:     #FFFFFF;

  --shadow-s: 0 1px 2px rgba(53, 42, 58, 0.04), 0 4px 14px rgba(53, 42, 58, 0.05);
  --shadow-m: 0 10px 26px rgba(53, 42, 58, 0.07), 0 22px 60px rgba(53, 42, 58, 0.09);
  --shadow-l: 0 20px 44px rgba(53, 42, 58, 0.10), 0 44px 100px rgba(53, 42, 58, 0.14);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.96rem + 0.22vw, 1.14rem);
  --step-1:  clamp(1.2rem, 1.08rem + 0.55vw, 1.55rem);
  --step-2:  clamp(1.55rem, 1.3rem + 1.1vw, 2.3rem);
  --step-3:  clamp(2rem, 1.55rem + 2.2vw, 3.5rem);
  --step-4:  clamp(2.7rem, 1.9rem + 3.9vw, 5.4rem);
  --step-5:  clamp(3.2rem, 2rem + 5.8vw, 7.2rem);

  --space-section: clamp(5.5rem, 4rem + 8vw, 11rem);
  --radius: 8px;
  --radius-l: 20px;
  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------- Reset / base ------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font-family: var(--font-body); font-size: var(--step-0); line-height: 1.72; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.014em; margin: 0; }
::selection { background: var(--accent-wash); color: var(--accent-d); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.5rem, 1rem + 3vw, 4.5rem); }

.eyebrow {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent-d);
  display: inline-flex; align-items: center; gap: 0.85em;
}
.eyebrow::before { content: ""; width: 2.4rem; height: 1px; background: var(--accent); opacity: 0.55; }

.section-title { font-size: var(--step-3); max-width: 22ch; font-weight: 400; }
.section-intro { color: var(--fg2); font-size: var(--step-1); max-width: 50ch; margin-top: 1.2rem; font-weight: 300; line-height: 1.6; }

/* ------------------- i18n ------------------- */
[data-en] { display: none; }
html[lang="en"] [data-en] { display: revert; }
html[lang="en"] [data-es] { display: none; }

/* ------------------- Buttons / links ------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 1em 1.9em; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 100px; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--accent-d); color: #fff; }
.btn--primary:hover { background: #43264f; box-shadow: var(--shadow-m); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent-d); color: var(--accent-d); }
.btn--light { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn--light:hover { background: #fff; color: var(--accent-d); border-color: #fff; }
.btn--wa { background: var(--accent); color: #fff; }
.btn--wa:hover { background: var(--accent-d); }
.btn svg { width: 1.15em; height: 1.15em; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-d); }
.link-arrow::after { content: "→"; transition: transform 0.3s var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ------------------- Header ------------------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.15rem; }
.site-header.scrolled { background: rgba(251, 250, 248, 0.82); backdrop-filter: saturate(150%) blur(20px); -webkit-backdrop-filter: saturate(150%) blur(20px); box-shadow: 0 1px 0 var(--line-s); }

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 80px; width: auto; transition: filter 0.4s var(--ease), height 0.4s var(--ease); }
.site-header:not(.scrolled) .brand__logo { filter: brightness(0) invert(1); }
.site-header.scrolled .brand__logo { height: 60px; }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2.3rem); }
.nav a { font-size: 0.86rem; font-weight: 500; letter-spacing: 0.02em; position: relative; padding: 0.3em 0; transition: color 0.25s var(--ease); }
.site-header:not(.scrolled) .nav a { color: rgba(255,255,255,0.94); }
.site-header.scrolled .nav a { color: var(--fg); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease); opacity: 0.7; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.lang-toggle { display: inline-flex; border: 1px solid; border-radius: 100px; overflow: hidden; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; }
.site-header:not(.scrolled) .lang-toggle { border-color: rgba(255,255,255,0.5); }
.site-header.scrolled .lang-toggle { border-color: var(--line); }
.lang-toggle button { padding: 0.42em 0.75em; background: transparent; border: 0; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.site-header:not(.scrolled) .lang-toggle button { color: rgba(255,255,255,0.85); }
.site-header.scrolled .lang-toggle button { color: var(--fg2); }
.lang-toggle button[aria-pressed="true"] { background: var(--accent); color: #fff !important; }

.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 100px; background: transparent; align-items: center; justify-content: center; }
.site-header:not(.scrolled) .menu-btn { border-color: rgba(255,255,255,0.5); }
.menu-btn span, .menu-btn span::before, .menu-btn span::after { content: ""; display: block; width: 18px; height: 1.5px; background: var(--fg); transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.site-header:not(.scrolled) .menu-btn span, .site-header:not(.scrolled) .menu-btn span::before, .site-header:not(.scrolled) .menu-btn span::after { background: #fff; }
.menu-btn span { position: relative; }
.menu-btn span::before { position: absolute; top: -6px; } .menu-btn span::after { position: absolute; top: 6px; }
body.menu-open .menu-btn span { background: transparent !important; }
body.menu-open .menu-btn span::before { transform: translateY(6px) rotate(45deg); background: var(--fg) !important; }
body.menu-open .menu-btn span::after { transform: translateY(-6px) rotate(-45deg); background: var(--fg) !important; }

/* ------------------- Hero ------------------- */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s ease-out both; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero__media { animation: none; } }
.hero__scrim { position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(30,22,38,0.30) 0%, rgba(30,22,38,0.04) 34%, rgba(30,22,38,0.12) 62%, rgba(34,24,44,0.60) 100%),
    linear-gradient(90deg, rgba(46,32,58,0.36) 0%, transparent 60%);
}
.hero__inner { position: relative; padding-bottom: clamp(3.5rem, 9vh, 7rem); padding-top: 8rem; max-width: 60rem; }
.hero .eyebrow { color: rgba(255,255,255,0.94); }
.hero .eyebrow::before { background: rgba(255,255,255,0.75); opacity: 1; }
.hero__title { font-size: var(--step-5); font-weight: 300; line-height: 1.0; letter-spacing: -0.022em; color: #fff; margin-top: 1.4rem; text-wrap: balance; text-shadow: 0 2px 44px rgba(24,16,32,0.4); }
.hero__title em { font-style: italic; color: #F0E6F8; font-weight: 300; }
.hero__lede { font-size: var(--step-1); color: rgba(255,255,255,0.9); max-width: 46ch; margin: 1.7rem 0 2.3rem; font-weight: 300; text-shadow: 0 1px 20px rgba(24,16,32,0.45); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.8rem 2.8rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.22); }
.hero__chip { display: flex; align-items: baseline; gap: 0.55rem; color: #fff; }
.hero__chip b { font-family: var(--font-display); font-size: var(--step-2); font-weight: 400; line-height: 1; }
.hero__chip span { font-size: 0.82rem; color: rgba(255,255,255,0.82); letter-spacing: 0.01em; font-weight: 300; }
.hero__chip .stars { color: #E7CF7E; letter-spacing: 0.05em; }

/* ------------------- Quick info bar ------------------- */
.quickbar { background: var(--bg); border-bottom: 1px solid var(--line-s); }
.quickbar .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3.5rem); padding-block: clamp(2rem, 3vw, 3rem); }
.quickbar__item { display: flex; gap: 1.1rem; align-items: flex-start; position: relative; }
.quickbar__item + .quickbar__item::before { content: ""; position: absolute; left: -1rem; top: 0.2rem; bottom: 0.2rem; width: 1px; background: var(--line); }
.quickbar__item svg { width: 1.55rem; height: 1.55rem; flex-shrink: 0; stroke: var(--accent); margin-top: 0.1rem; }
.quickbar__k { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg2); font-weight: 700; }
.quickbar__v { font-size: var(--step-0); color: var(--fg); margin-top: 0.3rem; font-weight: 400; line-height: 1.4; }
.quickbar__v a { color: var(--accent-d); text-underline-offset: 3px; }
.quickbar__v a:hover { text-decoration: underline; }
@media (max-width: 760px) {
  .quickbar__item + .quickbar__item::before { display: none; }
  .quickbar__item { border-top: 1px solid var(--line-s); padding-top: 1.3rem; }
}

/* ------------------- Section shell ------------------- */
.section { padding-block: var(--space-section); }
.section--cream { background: var(--cream); }
.section__head { max-width: 62ch; margin-bottom: clamp(3rem, 5vw, 5rem); }

/* ------------------- Nosotros / About (editorial, asimétrico) ------------------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 5.5rem); align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.05fr 0.95fr; } }
.about-grid .section-title { margin-top: 1rem; }
.about-intro-2 { margin-top: 1.2rem; }
.about-media { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); aspect-ratio: 4/5; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.6rem 2rem; margin-top: 3rem; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.value h3 { font-size: var(--step-1); color: var(--accent-d); font-weight: 400; }
.value p { color: var(--fg2); font-size: 0.9rem; margin: 0.35rem 0 0; font-weight: 300; line-height: 1.55; }

/* ------------------- Full-bleed image band ------------------- */
.imgband { position: relative; min-height: clamp(360px, 62vh, 620px); display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; isolation: isolate; }
.imgband__media { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.imgband__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(34,24,44,0.32), rgba(40,28,52,0.5)); }
.imgband__inner { max-width: 48rem; padding: 3rem 1.5rem; color: #fff; }
.imgband__quote { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: clamp(1.6rem, 1.1rem + 2.4vw, 3rem); line-height: 1.28; text-shadow: 0 2px 34px rgba(24,16,32,0.4); }
.imgband__by { margin-top: 1.5rem; font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.82); }

/* ------------------- Services (filas editoriales, foto protagonista) ------------------- */
.svc { display: grid; gap: clamp(4rem, 8vw, 7.5rem); }
.svc-row { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 880px) {
  .svc-row { grid-template-columns: 1.08fr 1fr; gap: clamp(3rem, 5vw, 6rem); }
  .svc-row--flip .svc-row__media { order: 2; }
}
.svc-row__media { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); aspect-ratio: 4/3; }
.svc-row__media--portrait { aspect-ratio: 4/5; }
.svc-row__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-row__num { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--accent); display: block; margin-bottom: 0.9rem; }
.svc-row h3 { font-size: var(--step-3); font-weight: 400; }
.svc-row__body > p { color: var(--fg2); font-size: var(--step-0); margin: 0.9rem 0 1.4rem; font-weight: 300; max-width: 46ch; line-height: 1.65; }
.svc-row__list { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 1.4rem; max-width: 42ch; }
.svc-row__list li { font-size: 0.9rem; color: var(--fg); font-weight: 300; padding-left: 1.3rem; position: relative; }
.svc-row__list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--accent-2, var(--accent)); opacity: 0.7; }

.svc-more { margin-top: clamp(4rem, 7vw, 6rem); padding-top: 2.5rem; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 760px) { .svc-more { grid-template-columns: 1.4fr 1fr; } }
.svc-more__tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.svc-more__tags span { font-size: 0.82rem; padding: 0.5em 1.05em; border: 1px solid var(--line); border-radius: 100px; color: var(--fg2); }
.svc-more__cta { justify-self: start; }
@media (min-width: 760px) { .svc-more__cta { justify-self: end; text-align: right; } }
.svc-more__cta h3 { font-size: var(--step-2); font-weight: 400; margin-bottom: 0.9rem; }

/* ------------------- Gallery (masonry: cada foto completa, sin recortes) ------------------- */
.gallery { column-count: 3; column-gap: 0.9rem; }
.gallery figure { break-inside: avoid; margin: 0 0 0.9rem; overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery img { width: 100%; height: auto; display: block; transition: transform 0.9s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .gallery { column-count: 2; } }
@media (max-width: 520px) { .gallery { column-count: 1; } }

/* ------------------- Reviews (banda clara, calmada) ------------------- */
.reviews { background: var(--cream); position: relative; overflow: hidden; }
.reviews .section__head { text-align: center; max-width: none; margin-bottom: 3rem; }
.reviews .section-title { margin-inline: auto; }
.reviews .eyebrow { justify-content: center; }
.reviews__agg { display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 1.3rem; font-size: 0.9rem; color: var(--fg2); flex-wrap: wrap; justify-content: center; }
.reviews__agg strong { color: var(--fg); }
.reviews__agg .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.08em; }

.marquee-wrap { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); overflow: hidden; padding-block: 0.5rem; }
.marquee { display: flex; gap: 1.4rem; width: max-content; animation: marquee 78s linear infinite; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } .marquee-wrap { overflow-x: auto; } }
.review-card { flex: 0 0 clamp(300px, 40vw, 400px); background: var(--white); border: 1px solid var(--line-s); border-radius: var(--radius-l); padding: 2rem 1.9rem; box-shadow: var(--shadow-s); display: flex; flex-direction: column; gap: 1.1rem; }
.review-card__stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.9rem; }
.review-card__text { font-family: var(--font-display); font-size: var(--step-1); line-height: 1.45; color: var(--fg); font-weight: 300; font-style: italic; }
.review-card__foot { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.review-card__avatar { width: 2.5rem; height: 2.5rem; border-radius: 100px; background: var(--accent-wash); color: var(--accent-d); display: grid; place-items: center; font-weight: 700; font-size: 0.9rem; }
.review-card__who { font-size: 0.82rem; font-weight: 700; color: var(--fg); }
.review-card__src { font-size: 0.7rem; color: var(--fg2); letter-spacing: 0.04em; }

/* ------------------- Locations ------------------- */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 1.6rem; }
.loc-card { background: var(--white); border: 1px solid var(--line-s); border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-s); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); display: flex; flex-direction: column; }
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.loc-card__img { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.loc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.loc-card:hover .loc-card__img img { transform: scale(1.05); }
.loc-card__body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.loc-card h3 { font-size: var(--step-2); font-weight: 400; }
.loc-card__addr { color: var(--fg2); font-size: 0.9rem; margin: 0.4rem 0 0.2rem; font-weight: 300; }
.loc-card__hours { font-size: 0.8rem; color: var(--fg2); margin-top: 0.7rem; padding-top: 0.7rem; border-top: 1px solid var(--line-s); }
.loc-card__actions { display: flex; gap: 0.6rem; margin-top: 1.3rem; flex-wrap: wrap; }
.loc-card__actions .btn { padding: 0.72em 1.15em; font-size: 0.68rem; flex: 1; min-width: 0; }

/* ------------------- FAQ ------------------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: transparent; border: 0; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.7rem 0; font-family: var(--font-display); font-size: var(--step-1); font-weight: 400; color: var(--fg); }
.faq-q:hover { color: var(--accent-d); }
.faq-q__icon { flex-shrink: 0; width: 1.6rem; height: 1.6rem; position: relative; }
.faq-q__icon::before, .faq-q__icon::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--accent); transition: transform 0.3s var(--ease); }
.faq-q__icon::before { width: 1rem; height: 1.5px; } .faq-q__icon::after { width: 1.5px; height: 1rem; }
.faq-item[open] .faq-q__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a p { color: var(--fg2); font-size: var(--step-0); font-weight: 300; margin: 0 0 1.7rem; max-width: 66ch; line-height: 1.68; }
details.faq-item summary { list-style: none; cursor: pointer; } details.faq-item summary::-webkit-details-marker { display: none; }
.faq-head { text-align: center; max-width: none; }
.faq-head .eyebrow { justify-content: center; }
.faq-head .section-title { margin-inline: auto; }

/* ------------------- Final CTA ------------------- */
.finalcta { position: relative; color: #fff; text-align: center; overflow: hidden; isolation: isolate; }
.finalcta__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.finalcta__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(40,28,52,0.72), rgba(34,24,44,0.68)); }
.finalcta .section-title { color: #fff; margin-inline: auto; font-size: var(--step-4); font-weight: 300; }
.finalcta p { color: rgba(255,255,255,0.86); font-size: var(--step-1); max-width: 48ch; margin: 1.4rem auto 2.4rem; font-weight: 300; }
.finalcta__cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.finalcta-eyebrow { color: #fff; justify-content: center; }

/* ------------------- Footer ------------------- */
.site-footer { background: #2A2130; color: rgba(255,255,255,0.7); padding-block: 4.5rem 2.5rem; }
.site-footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
.site-footer .brand__logo { height: 60px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-about { margin-top: 1.2rem; max-width: 36ch; line-height: 1.6; font-weight: 300; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 1.2rem; font-family: var(--font-body); font-weight: 700; }
.footer-col a, .footer-col p { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.72); margin-bottom: 0.65rem; transition: color 0.25s var(--ease); font-weight: 300; }
.footer-col a:hover { color: #E7D8F0; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a { width: 2.5rem; height: 2.5rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; display: grid; place-items: center; margin: 0; }
.footer-social svg { width: 1.1rem; height: 1.1rem; stroke: currentColor; }
.footer-social a:hover { border-color: #E7D8F0; color: #E7D8F0; }
.footer-bottom { max-width: var(--maxw); margin: 3rem auto 0; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.74rem; color: rgba(255,255,255,0.5); }

/* ------------------- Floating WhatsApp ------------------- */
.wa-float { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90; width: 3.5rem; height: 3.5rem; border-radius: 100px; background: var(--accent-d); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-l); transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.wa-float:hover { transform: scale(1.06); background: #43264f; } .wa-float:active { transform: scale(0.96); }
.wa-float svg { width: 1.7rem; height: 1.7rem; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 1.5px solid var(--accent); animation: waPulse 3s var(--ease) infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.55); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; } }

/* ------------------- Animaciones (calmas) ------------------- */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; } .reveal[data-delay="2"] { transition-delay: 0.24s; } .reveal[data-delay="3"] { transition-delay: 0.36s; }
/* revelado de imagen: la foto se descubre y se asienta */
.js .reveal-media img { transform: scale(1.09); transition: transform 1.6s var(--ease); }
.reveal-media.in img { transform: scale(1); }
@media (prefers-reduced-motion: reduce) { .js .reveal, .js .reveal-media img { opacity: 1; transform: none; } }

/* ------------------- Responsive ------------------- */
@media (max-width: 900px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.7rem; background: var(--bg); padding: 2rem; transform: translateX(100%); transition: transform 0.4s var(--ease); box-shadow: var(--shadow-l); }
  body.menu-open .nav { transform: none; }
  .nav a, .site-header:not(.scrolled) .nav a { color: var(--fg); font-size: var(--step-1); font-family: var(--font-display); }
  .menu-btn { display: inline-flex; }
  .header-actions .btn--primary { display: none; }
  .quickbar .container { grid-template-columns: 1fr; gap: 0; }
  .site-footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-header .container { gap: 0.6rem; padding-inline: 1.15rem; }
  .brand__logo, .site-header.scrolled .brand__logo { height: 56px; }
  .header-actions { gap: 0.55rem; }
  .lang-toggle button { padding: 0.42em 0.62em; }
  .svc-row__list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero__chips { gap: 1rem 1.7rem; }
  .hero__cta .btn { flex: 1; }
  .site-footer .container { grid-template-columns: 1fr; }
  .loc-card__actions { flex-direction: column; } .loc-card__actions .btn { flex: none; }
}
