/* ==========================================================================
   NOVA LAUNDRY — Lavandería Autoservicio Premium (Almodóvar del Río)
   Paleta Oficial Oscura (Fondos Oscuros):
     #000000 Negro · #241F1D Carbón · #72624F Marrón madera
     #9A9588 Beige taupe · #C4C5BA Gris mármol · #F9E7D2 Champán · #FEF7E7 Marfil
   ========================================================================== */

:root {
  /* Paleta original */
  --black: #000000;
  --carbon: #241F1D;
  --wood: #72624F;
  --taupe: #9A9588;
  --marble: #C4C5BA;
  --champagne: #F9E7D2;
  --ivory: #FEF7E7;

  /* Tokens semánticos en MODO OSCURO */
  --bg: #000000;                /* Fondo principal negro */
  --bg-warm: #241F1D;           /* Fondo secundario carbón */
  --surface: #171311;           /* Tarjetas carbón profundo */
  --surface-hover: #221C1A;     /* Hover tarjetas */
  --surface-card: #1C1715;
  --ink: #FEF7E7;               /* Texto principal marfil */
  --ink-strong: #F9E7D2;        /* Titulares champán */
  --ink-soft: #C4C5BA;          /* Texto secundario gris mármol */
  --accent: #72624F;           /* Marrón madera */
  --accent-light: #9A9588;     /* Beige taupe */
  --line: rgba(114, 98, 79, 0.35);
  --line-strong: rgba(196, 197, 186, 0.25);

  /* Tokens de botones y estados */
  --d-bg: #000000;
  --d-surface: #14100E;
  --d-line: rgba(154, 149, 136, 0.22);
  --d-ink: #FEF7E7;
  --d-soft: #C4C5BA;

  /* Tipografías */
  --serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.5s var(--ease);

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
ul { list-style: none; }

::selection { background: var(--wood); color: var(--ivory); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--carbon); }
::-webkit-scrollbar-thumb { background: var(--wood); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--champagne); }

:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==========================================================================
   TIPOGRAFÍA Y ELEMENTOS COMPARTIDOS
   ========================================================================== */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 12px;
}
.section-subtitle::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--champagne);
}

.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--ink-strong);
}
.section-title em {
  font-style: normal;
  color: var(--champagne);
}

.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--wood), var(--champagne), var(--wood));
  margin: 18px auto 22px;
  border-radius: 1px;
}

.section-lead {
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 60ch;
  margin: 0 auto;
}

.text-center { text-align: center; }

/* ==========================================================================
   LAYOUT Y SECCIONES (TODAS CON FONDO OSCURO)
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow { max-width: 860px; }

.section {
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.section-services { background: var(--carbon); }
.section-pricing { background: var(--bg); }
.section-how { background: var(--carbon); }
.section-faq { background: var(--bg); }
.section-location { background: var(--carbon); }

.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* ==========================================================================
   BOTONES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn i { font-size: 0.95em; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-block { width: 100%; }

.btn-champagne {
  background: var(--champagne);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(249, 231, 210, 0.15);
}
.btn-champagne:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 231, 210, 0.25);
}

.btn-champagne-outline {
  background: transparent;
  border-color: var(--champagne);
  color: var(--champagne);
}
.btn-champagne-outline:hover {
  background: var(--champagne);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-wood {
  background: var(--wood);
  color: var(--ivory);
}
.btn-wood:hover {
  background: #85735f;
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVBAR (INTEGRADO NATIVAMENTE EN LA WEB)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  border-bottom: 1px solid rgba(114, 98, 79, 0.2);
  border-radius: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav-container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease);
}
.navbar.scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.96);
  border-bottom-color: rgba(114, 98, 79, 0.4);
}
.navbar.scrolled .nav-container { padding: 12px var(--gutter); }

.brand-logo { display: flex; align-items: center; }
.logo-img {
  height: 44px; width: auto; object-fit: contain;
  transition: height 0.4s var(--ease), transform 0.4s var(--ease);
}
.navbar.scrolled .logo-img { height: 36px; }
.brand-logo:hover .logo-img { transform: scale(1.04); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--marble);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--champagne);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--champagne); }
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ivory);
  font-size: 1.1rem;
  width: 40px; height: 40px;
  border-radius: 4px;
  cursor: pointer;
}

/* ==========================================================================
   HERO / SCROLLYTELLING CON VIDEO (FONDO Y VIDEO INTEGRADOS COMPLETAMENTE)
   ========================================================================== */
.video-scroll-section {
  position: relative;
  height: 480vh;
  background: var(--black);
}
.video-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.nova-video {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(290px, 55vw, 680px);
  max-height: 40vh;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  border: none;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.95);
  z-index: 1;
  filter: contrast(104%) brightness(90%);
}

.video-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
}
.video-gradient-top {
  position: absolute; top: 0; left: 0; width: 100%; height: 180px; z-index: 3;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}
.video-gradient-bottom {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 260px; z-index: 3;
  background: linear-gradient(0deg, #000000 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
}

/* Captions */
.scroll-captions-container {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 840px;
  padding: 0 24px;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}
.scroll-caption {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  will-change: opacity, transform, filter;
}
.slogan-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ivory);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}
.slogan-title em { color: var(--champagne); }
.slogan-sub {
  font-family: var(--sans);
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  color: var(--marble);
  font-weight: 400;
  margin-top: 12px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.scroll-indicator {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}
.scroll-indicator-text {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}
.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid var(--wood);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.mouse-icon .wheel {
  width: 4px;
  height: 8px;
  background: var(--champagne);
  border-radius: 2px;
  animation: wheelAnim 1.8s ease infinite;
}
@keyframes wheelAnim {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ==========================================================================
   ESPECIFICACIONES RÁPIDAS (SPEC STRIP)
   ========================================================================== */
.spec-strip-wrapper {
  background: var(--carbon);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.spec-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.spec-item {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid var(--line);
}
.spec-item:last-child { border-right: none; }
.spec-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1;
  color: var(--champagne);
  letter-spacing: 0.02em;
}
.spec-num span {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--marble);
}
.spec-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marble);
  margin-top: 10px;
}

/* ==========================================================================
   SERVICIOS / VENTAJAS (CARDS EN FONDO OSCURO)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  position: relative;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature-card:hover {
  background: var(--surface-hover);
  border-color: var(--wood);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
}
.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(114, 98, 79, 0.25);
  border: 1px solid var(--wood);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--champagne);
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.feature-card:hover .card-icon-box {
  transform: scale(1.08);
  background: rgba(114, 98, 79, 0.45);
}
.card-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--ivory);
  margin-bottom: 12px;
}
.card-text {
  font-size: 0.94rem;
  color: var(--marble);
  line-height: 1.6;
}
.card-accent-line {
  width: 30px;
  height: 2px;
  background: var(--wood);
  margin-top: 20px;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}
.feature-card:hover .card-accent-line {
  width: 60px;
  background: var(--champagne);
}

/* ==========================================================================
   TARIFAS & CAPACIDADES
   ========================================================================== */
.pricing-control-wrapper {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.pricing-tab-btn {
  padding: 11px 32px;
  background: transparent;
  border: none;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--marble);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.pricing-tab-btn.active {
  background: var(--champagne);
  color: var(--black);
}

.pricing-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-grid.active { display: grid; }

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--wood);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.85);
}

.pricing-card.featured {
  background: var(--surface-card);
  border: 1px solid var(--champagne);
  box-shadow: 0 0 30px -10px rgba(249, 231, 210, 0.15);
}
.pricing-card.featured:hover {
  box-shadow: 0 0 40px -5px rgba(249, 231, 210, 0.25);
}

.card-ribbon {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--champagne);
  padding: 4px 10px;
  border-radius: 3px;
}

.badge-size {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}
.pricing-machine {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.01em;
  color: var(--ivory);
  margin: 12px 0 18px;
}
.price-box { display: flex; align-items: baseline; gap: 4px; }
.price-box .currency { font-family: var(--serif); font-size: 1.6rem; color: var(--champagne); font-weight: 700; }
.price-box .amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--champagne);
  font-variant-numeric: tabular-nums;
}
.price-box .period { font-family: var(--mono); font-size: 0.82rem; color: var(--marble); }

.pricing-duration {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--champagne);
  margin: 14px 0 24px;
  display: flex; align-items: center; gap: 8px;
}
.pricing-features {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex-grow: 1;
}
.pricing-features li {
  font-size: 0.92rem;
  color: var(--marble);
  display: flex;
  align-items: flex-start;
  gap: 11px;
  line-height: 1.5;
}
.pricing-features li i { color: var(--champagne); font-size: 0.8rem; margin-top: 4px; }

/* ==========================================================================
   CÓMO FUNCIONA (PASOS CON CARDS OSCURAS)
   ========================================================================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 24px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--wood);
}
.step-number {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--champagne);
  background: rgba(114, 98, 79, 0.3);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 22px;
}
.step-icon {
  font-size: 1.6rem;
  color: var(--champagne);
  margin-bottom: 18px;
}
.step-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: 10px;
}
.step-desc { font-size: 0.92rem; color: var(--marble); line-height: 1.6; }
.step-arrow { display: none; }

/* ==========================================================================
   FAQ — ACORDEÓN ELEGANTE EN FONDO OSCURO
   ========================================================================== */
.faq-accordion {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  padding: 26px 8px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  letter-spacing: 0.01em;
  color: var(--ivory);
  transition: color 0.3s var(--ease);
}
.faq-question:hover { color: var(--champagne); }
.faq-toggle-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--champagne);
  transition: transform 0.35s var(--ease);
}
.faq-item.open .faq-toggle-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
  padding: 0 8px;
}
.faq-item.open .faq-answer { max-height: 340px; padding: 0 8px 28px; }
.faq-answer p { color: var(--marble); font-size: 0.96rem; line-height: 1.7; max-width: 65ch; }

/* ==========================================================================
   UBICACIÓN, HORARIO Y MAPA (SECCIÓN OSCURA)
   ========================================================================== */
.location-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.location-desc { color: var(--marble); margin: 18px 0 36px; max-width: 48ch; }

.info-items-list { display: flex; flex-direction: column; gap: 4px; }
.info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.info-item:last-of-type { border-bottom: 1px solid var(--line); }
.info-icon {
  font-size: 1.2rem;
  color: var(--champagne);
  padding-top: 2px;
}
.info-heading {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 6px;
}
.info-detail { font-size: 1.02rem; color: var(--ivory); line-height: 1.5; }
.info-detail strong { color: var(--champagne); font-weight: 600; }

.location-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* Tarjeta mapa / local preview */
.location-visual-card { display: flex; }
.map-placeholder {
  width: 100%;
  min-height: 420px;
  background:
    linear-gradient(180deg, #1C1715 0%, #000000 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 75%);
  opacity: 0.4;
}
.map-card-content { position: relative; z-index: 2; text-align: center; }
.map-pin-pulse {
  width: 52px; height: 52px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 0 0 rgba(249, 231, 210, 0.5);
  animation: mapPulse 2.4s var(--ease) infinite;
}
@keyframes mapPulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 231, 210, 0.55); }
  70% { box-shadow: 0 0 0 22px rgba(249, 231, 210, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 231, 210, 0); }
}
.map-logo-preview { height: 48px; margin: 0 auto 18px; }
.map-place-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: 6px;
}
.map-place-subtitle {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 18px;
}
.rating-stars {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; color: var(--champagne); font-size: 0.85rem;
}
.rating-stars span {
  margin-left: 8px; color: var(--marble);
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.04em;
}

/* ==========================================================================
   FOOTER (NEGRO PURO)
   ========================================================================== */
.footer {
  background: var(--black);
  color: var(--marble);
  padding: clamp(64px, 8vw, 96px) 0 0;
  border-top: 1px solid var(--line);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  padding-bottom: 60px;
}
.footer-logo { height: 48px; margin-bottom: 22px; }
.footer-tagline { color: var(--marble); font-size: 0.94rem; max-width: 42ch; line-height: 1.65; margin-bottom: 26px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--marble);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s var(--ease);
}
.social-links a:hover { background: var(--champagne); color: var(--black); border-color: var(--champagne); transform: translateY(-3px); }

.footer-title {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 13px; }
.footer-links-group ul li,
.footer-links-group ul li a { color: var(--marble); font-size: 0.92rem; display: flex; align-items: center; gap: 10px; }
.footer-links-group ul li a:hover { color: var(--champagne); }
.footer-links-group ul li i { color: var(--champagne); }

.footer-bottom { border-top: 1px solid var(--line); padding: 24px 0 20px; }
.bottom-flex {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.04em; color: var(--taupe);
  margin-bottom: 12px;
}
.tecxart-credit {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--marble);
  text-align: center;
}
.tecxart-link {
  color: var(--champagne);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
}
.tecxart-link:hover {
  color: var(--ivory);
  text-shadow: 0 0 12px rgba(249, 231, 210, 0.5);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps-container { grid-template-columns: repeat(2, 1fr); }
  .location-wrapper { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .spec-strip { grid-template-columns: repeat(2, 1fr); }
  .spec-item:nth-child(2n) { border-right: none; }
  .spec-item { border-bottom: 1px solid var(--line); }
  .spec-item:nth-last-child(-n+1) { border-bottom: none; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 16px; right: 16px;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(16, 12, 10, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease);
  }
  .nav-links.mobile-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { padding: 10px 0; width: 100%; }
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-actions .btn-sm { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-container { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 40px; }
  .spec-strip { grid-template-columns: 1fr; }
  .spec-item { border-right: none; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .bottom-flex { flex-direction: column; gap: 10px; text-align: center; }
}

/* ==========================================================================
   CANVAS BURBUJAS CHAMPÁN AL MOVER EL RATÓN
   ========================================================================== */
#bubble-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  #bubble-canvas { display: none !important; }
}
