/* ==========================================================================
   NOVA LAUNDRY 2.0 — Casa de cuidado textil
   Paleta Oficial de Marca:
     #000000  Negro
     #241F1D  Carbón
     #72624F  Marrón madera
     #9A9588  Beige taupe
     #C4C5BA  Gris mármol
     #F9E7D2  Champán
     #FEF7E7  Marfil
   100% Responsivo en Mobile, Tablet y Desktop
   ========================================================================== */

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

  /* Semántica & Superficies */
  --bg: #000000;
  --bg-warm: #181413;
  --surface: #241F1D;
  --surface-card: #241F1D;
  --surface-hover: #302927;

  /* Tipografía & Textos */
  --ink: #FEF7E7;
  --ink-strong: #FEF7E7;
  --ink-muted: #C4C5BA;
  --ink-faint: #9A9588;

  /* Acentos de Interacción */
  --accent: #F9E7D2;
  --accent-wood: #72624F;
  --emerald-live: #4ade80;

  /* Líneas y Bordes */
  --line: rgba(249, 231, 210, 0.12);
  --line-strong: rgba(249, 231, 210, 0.22);
  --line-highlight: rgba(249, 231, 210, 0.45);
  --line-wood: rgba(114, 98, 79, 0.4);

  /* Tipografías */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'Spline Sans Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* Físicas & Transiciones */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s var(--ease-spring);
  --t-normal: 0.35s var(--ease-spring);
  --t-slow: 0.6s var(--ease-spring);

  /* Layout */
  --wrap: 1220px;
  --gutter: clamp(16px, 4vw, 36px);
  --nav-height: 72px;
}

/* ==========================================================================
   RESET & ESTILOS GLOBALES
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: var(--black);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body.menu-locked {
  overflow: hidden !important;
  touch-action: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--t-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--champagne);
  color: var(--black);
}

/* Scrollbar Personalizado */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--wood);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--taupe);
}

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

/* ==========================================================================
   TIPOGRAFÍA Y ELEMENTOS REUTILIZABLES
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: clamp(0.72rem, 1.5vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 12px;
}

.eyebrow-accent {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--champagne);
}

.lead {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--marble);
  line-height: 1.68;
  max-width: 60ch;
  margin: 14px auto 0 auto;
}

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

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

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}

.section--warm {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--dark {
  background: var(--black);
}

.section-head {
  margin-bottom: clamp(36px, 6vw, 64px);
}

/* ==========================================================================
   BOTONES Y COMPONENTES REUTILIZABLES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  transition: all var(--t-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

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

.btn-ghost {
  background: rgba(249, 231, 210, 0.06);
  color: var(--ivory);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(249, 231, 210, 0.14);
  border-color: var(--champagne);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--line-strong);
}
.btn-outline-light:hover {
  border-color: var(--champagne);
  background: rgba(249, 231, 210, 0.08);
  color: var(--ivory);
}

/* Indicadores de Pulso en Vivo */
.live-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--emerald-live);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
  animation: pulseLive 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulseLive {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ==========================================================================
   BARRA DE NAVEGACIÓN (Sticky Minimalist Glass)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--t-normal);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
  max-width: 1420px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(12px, 2.5vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: transform var(--t-fast);
}
.brand-logo:hover .logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links-inner {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--marble);
  padding: 6px 9px;
  border-radius: 999px;
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--ivory);
  background: rgba(249, 231, 210, 0.08);
}

.mobile-only-icon {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(249, 231, 210, 0.06);
  border: 1px solid var(--line);
}
.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: all var(--t-fast);
}

.mobile-menu-header,
.mobile-menu-actions,
.mobile-menu-footer {
  display: none;
}

/* ==========================================================================
   HERO SCROLLYTELLING CON VIDEO CENTRADO Y AMPLIO
   ========================================================================== */
.video-scroll-section {
  position: relative;
  height: 480vh; /* Desplazamiento fluido */
  background: var(--black);
}

.video-sticky-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  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(280px, 52vw, 720px);
  max-height: 48vh;
  object-fit: contain;
  display: block;
  z-index: 2;
  pointer-events: none;
  background: transparent;
  will-change: transform;
}

.video-overlay {
  display: none;
}

.video-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, var(--black) 0%, transparent 100%);
  pointer-events: none;
  z-index: 6;
}

.video-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(0deg, var(--black) 0%, transparent 100%);
  pointer-events: none;
  z-index: 6;
}

.scroll-captions-container {
  position: absolute;
  top: 74%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 860px;
  text-align: center;
  pointer-events: none;
  z-index: 10;
}

.scroll-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.caption-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: clamp(0.7rem, 1.2vw, 0.78rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  background: rgba(36, 31, 29, 0.88);
  backdrop-filter: blur(10px);
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.slogan-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ivory);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.98), 0 0 50px rgba(0, 0, 0, 0.9);
}
.slogan-title em {
  font-style: italic;
  color: var(--champagne);
}

.slogan-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  color: var(--marble);
  margin-top: 10px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.98), 0 0 30px rgba(0, 0, 0, 0.9);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity var(--t-fast);
}
.scroll-indicator-text {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}
.scroll-line-pill {
  width: 22px;
  height: 36px;
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  position: relative;
}
.scroll-pill-dot {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--champagne);
  border-radius: 2px;
  animation: scrollBounce 2s infinite ease-in-out;
}
@keyframes scrollBounce {
  0% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 12px); opacity: 0.4; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

/* ==========================================================================
   MANIFIESTO Y ESPECIFICACIONES
   ========================================================================== */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.manifesto-statement {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  line-height: 1.2;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -0.015em;
}
.manifesto-statement em {
  font-style: italic;
  color: var(--champagne);
}

.manifesto-side p {
  color: var(--marble);
  font-size: 1.02rem;
  margin-bottom: 18px;
}
.manifesto-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.m-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--carbon);
  border: 1px solid var(--line-wood);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--ivory);
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 32px 24px;
  background: var(--carbon);
  border: 1px solid var(--line-wood);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.spec-item {
  text-align: center;
  padding: 8px;
  position: relative;
}
.spec-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--line);
}
@media (max-width: 860px) {
  .spec-item::after { display: none; }
}

.spec-icon-box {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px auto;
  border-radius: 12px;
  background: rgba(114, 98, 79, 0.25);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.spec-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 600;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 4px;
}
.spec-num span {
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--taupe);
  margin-left: 3px;
}

.spec-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 4px;
}

.spec-sub {
  font-size: 0.8rem;
  color: var(--taupe);
  font-family: var(--mono);
}

/* ==========================================================================
   VENTAJAS & SERVICIOS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--carbon);
  border: 1px solid var(--line-wood);
  border-radius: 18px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--champagne);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.card-index {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wood);
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(114, 98, 79, 0.22);
  border: 1px solid var(--wood);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--champagne);
  margin-bottom: 22px;
  transition: transform var(--t-fast);
}
.feature-card:hover .card-icon-box {
  transform: scale(1.06);
}

.card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 10px;
}

.card-text {
  font-size: 0.92rem;
  color: var(--marble);
  line-height: 1.62;
  margin-bottom: 18px;
  flex-grow: 1;
}

.feature-tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne);
  background: rgba(114, 98, 79, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--wood);
}

/* ==========================================================================
   TARIFAS Y MAQUINARIA VEGA
   ========================================================================== */
.pricing-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.pricing-tabs {
  display: inline-flex;
  background: var(--carbon);
  padding: 5px;
  border-radius: 999px;
  border: 1px solid var(--line-wood);
  gap: 6px;
}

.pricing-tab-btn {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--marble);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t-fast);
}
.pricing-tab-btn:hover {
  color: var(--ivory);
}
.pricing-tab-btn.active {
  background: var(--champagne);
  color: var(--black);
  box-shadow: 0 4px 14px rgba(249, 231, 210, 0.25);
}

.pricing-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  align-items: stretch;
}
.pricing-grid.active {
  display: grid;
  animation: fadeIn 0.35s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-card {
  background: var(--carbon);
  border: 1px solid var(--line-wood);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--champagne);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.pricing-card.featured {
  border: 1.5px solid var(--champagne);
  box-shadow: 0 12px 30px rgba(249, 231, 210, 0.12);
}

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

.machine-tag-badge {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 4px;
}

.badge-size {
  display: block;
  font-size: 0.84rem;
  color: var(--marble);
  margin-bottom: 4px;
}

.pricing-machine {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 14px;
}

.price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
}
.price-box .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--champagne);
  margin-right: 4px;
}
.price-box .amount {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--champagne);
}
.price-box .decimals {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--champagne);
}
.price-box .period {
  font-size: 0.92rem;
  color: var(--marble);
  margin-left: 8px;
}

.pricing-duration {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--champagne);
  background: rgba(249, 231, 210, 0.06);
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.capacity-hint {
  font-size: 0.86rem;
  color: var(--ivory);
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 3px solid var(--wood);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features {
  margin-bottom: 26px;
  flex-grow: 1;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--marble);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li i {
  color: var(--champagne);
  margin-top: 4px;
  font-size: 0.8rem;
}
.pricing-features li strong {
  color: var(--ivory);
}

.pricing-footer {
  margin-top: auto;
}

/* Banner de Métodos de Pago */
.payment-banner-card {
  margin-top: 44px;
  background: var(--carbon);
  border: 1px solid var(--line-wood);
  border-radius: 18px;
  padding: 26px 30px;
}

.payment-banner-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
@media (max-width: 860px) {
  .payment-banner-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .payment-banner-icon { margin: 0 auto; }
  .payment-banner-tags { justify-content: center; }
}

.payment-banner-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(114, 98, 79, 0.25);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.payment-banner-text h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: 4px;
}
.payment-banner-text p {
  font-size: 0.92rem;
  color: var(--marble);
}
.payment-banner-text strong {
  color: var(--ivory);
}

.payment-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-tag {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-wood);
  color: var(--ivory);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Banner Teaser del Calculador */
.calc-teaser-banner {
  background: var(--carbon);
  border: 1px solid var(--line-wood);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 48px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}
.calc-teaser-banner::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(249, 231, 210, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.calc-teaser-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
@media (max-width: 860px) {
  .calc-teaser-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .calc-teaser-icon-box { margin: 0 auto; }
  .calc-teaser-action { justify-content: center; display: flex; }
}

.calc-teaser-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(114, 98, 79, 0.28);
  border: 1.5px solid var(--champagne);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 18px rgba(249, 231, 210, 0.15);
}

.calc-teaser-text .section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 8px;
}
.calc-teaser-text .lead {
  margin: 0;
  max-width: 54ch;
}

/* Modal Popup del Calculador */
.calculator-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.calculator-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.calc-modal-container {
  background: var(--carbon);
  border: 1px solid var(--champagne);
  border-radius: 24px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  max-height: 90dvh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease-spring);
}
.calculator-modal-backdrop.is-active .calc-modal-container {
  transform: translateY(0) scale(1);
}

.calc-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-wood);
  background: #1c1816;
}

.calc-modal-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ivory);
}

.calc-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(249, 231, 210, 0.08);
  border: 1px solid var(--line-wood);
  color: var(--ivory);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.calc-modal-close:hover {
  background: var(--champagne);
  color: var(--black);
  transform: rotate(90deg);
}

.calc-modal-body {
  padding: clamp(16px, 3vw, 24px);
  overflow-y: auto;
}
.calc-modal-body .calculator-card-wrapper {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

/* ==========================================================================
   CALCULADOR INTERACTIVO 2.0
   ========================================================================== */
.calculator-card-wrapper {
  background: var(--carbon);
  border: 1px solid var(--line-wood);
  border-radius: 24px;
  padding: clamp(20px, 4vw, 40px);
  position: relative;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 44px);
}
@media (max-width: 992px) {
  .calculator-grid { grid-template-columns: 1fr; }
}

.calc-step-group {
  margin-bottom: 26px;
}
.calc-step-group:last-child {
  margin-bottom: 0;
}

.calc-group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 14px;
}

.calc-step-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laundry-type-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.laundry-type-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  text-align: left;
  transition: all var(--t-fast);
  color: var(--ivory);
}
.laundry-type-btn:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: var(--taupe);
}
.laundry-type-btn.active {
  background: rgba(114, 98, 79, 0.3);
  border-color: var(--champagne);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.type-btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(114, 98, 79, 0.25);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.laundry-type-btn.active .type-btn-icon {
  background: var(--champagne);
  color: var(--black);
}

.type-btn-info strong {
  display: block;
  font-size: 0.98rem;
  color: var(--ivory);
  margin-bottom: 2px;
}
.type-btn-info span {
  font-size: 0.82rem;
  color: var(--marble);
}

.service-type-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
}

.service-pill-btn {
  padding: 11px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  color: var(--marble);
  font-size: 0.84rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--t-fast);
}
.service-pill-btn:hover {
  color: var(--ivory);
  border-color: var(--taupe);
}
.service-pill-btn.active {
  background: var(--champagne);
  color: var(--black);
  border-color: var(--champagne);
}

/* Panel de Resultado */
.calc-result-panel {
  background: #1c1816;
  border: 1px solid var(--line-wood);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.result-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 6px;
}

.result-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 4px;
}

.result-desc {
  font-size: 0.88rem;
  color: var(--marble);
  margin-bottom: 20px;
}

.result-details-box {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.result-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.r-stat .r-label {
  display: block;
  font-size: 0.75rem;
  color: var(--taupe);
  margin-bottom: 2px;
}
.r-stat .r-value {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--champagne);
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--marble);
  margin-bottom: 6px;
}
.breakdown-row strong {
  color: var(--ivory);
}

.breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 10px;
  border-top: 1px dashed var(--line-wood);
  margin-top: 10px;
}
.breakdown-total span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ivory);
}
.breakdown-total .total-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--champagne);
}

.result-inclusions {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.inc-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.inc-list li {
  font-size: 0.8rem;
  color: var(--marble);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.inc-list li i {
  color: var(--emerald-live);
  font-size: 0.7rem;
}

/* ==========================================================================
   VISUALIZADOR DE CAPACIDAD
   ========================================================================== */
.capacity-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.capacity-card {
  background: var(--carbon);
  border: 1px solid var(--line-wood);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  transition: transform var(--t-normal), border-color var(--t-normal);
}
.capacity-card:hover {
  transform: translateY(-4px);
  border-color: var(--champagne);
}

.capacity-card.featured-capacity {
  border-color: var(--champagne);
  box-shadow: 0 12px 30px rgba(249, 231, 210, 0.1);
}

.capacity-highlight-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--champagne);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 999px;
}

.capacity-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.drum-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--taupe);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.drum-circle-graphic {
  width: 84px;
  height: 84px;
  margin: 0 auto 14px auto;
  border-radius: 50%;
  border: 2.5px dashed var(--wood);
  background: rgba(114, 98, 79, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--champagne);
}
.drum-circle-graphic.drum-lg {
  width: 98px;
  height: 98px;
  border-color: var(--champagne);
  background: rgba(249, 231, 210, 0.08);
}
.drum-circle-graphic.drum-xl {
  width: 110px;
  height: 110px;
  border-color: var(--ivory);
  background: rgba(254, 247, 231, 0.1);
}

.drum-icon {
  font-size: 1.5rem;
}
.drum-size-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.capacity-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: 4px;
}

.capacity-price-tag {
  font-size: 0.92rem;
  color: var(--marble);
}
.capacity-price-tag strong {
  color: var(--champagne);
}

.capacity-list-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: 12px;
}

.capacity-items li {
  font-size: 0.88rem;
  color: var(--marble);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.capacity-items li i {
  color: var(--champagne);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

/* ==========================================================================
   CÓMO FUNCIONA (4 PASOS)
   ========================================================================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.step-card {
  background: var(--carbon);
  border: 1px solid var(--line-wood);
  border-radius: 18px;
  padding: 30px 24px;
  position: relative;
  transition: transform var(--t-fast);
}
.step-card:hover {
  transform: translateY(-3px);
  border-color: var(--taupe);
}

.step-badge-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wood);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(114, 98, 79, 0.22);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--marble);
  line-height: 1.58;
}
.step-desc strong {
  color: var(--ivory);
}

/* ==========================================================================
   PREGUNTAS FRECUENTES (Acordeón)
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--carbon);
  border: 1px solid var(--line-wood);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item.open {
  border-color: var(--champagne);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ivory);
  gap: 14px;
}

.faq-toggle-icon {
  font-size: 0.88rem;
  color: var(--champagne);
  transition: transform var(--t-normal);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--marble);
  line-height: 1.68;
}

/* ==========================================================================
   SECCIÓN DE UBICACIÓN
   ========================================================================== */
.location-wrapper {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: clamp(32px, 4.5vw, 60px);
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .location-wrapper { grid-template-columns: 1fr; }
}

.location-info-panel {
  background: var(--carbon);
  border: 1px solid var(--line-wood);
  border-radius: 24px;
  padding: clamp(32px, 4.5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.location-desc {
  font-size: 1.05rem;
  color: var(--marble);
  margin-top: 14px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.info-items-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 34px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(114, 98, 79, 0.25);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid var(--wood);
}

.info-heading {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 4px;
}

.info-detail {
  font-size: 0.95rem;
  color: var(--marble);
  line-height: 1.6;
}
.info-detail strong {
  color: var(--ivory);
  font-weight: 600;
}

.phone-link-big {
  color: var(--champagne);
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
}
.phone-link-big:hover {
  color: var(--ivory);
}

.info-subtag {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--taupe);
  font-family: var(--mono);
  margin-top: 3px;
}

.copy-address-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--champagne);
  margin-top: 10px;
  padding: 6px 14px;
  background: rgba(249, 231, 210, 0.08);
  border: 1px solid var(--line-wood);
  border-radius: 8px;
  transition: all var(--t-fast);
  cursor: pointer;
}
.copy-address-btn:hover {
  background: var(--champagne);
  color: var(--black);
  border-color: var(--champagne);
}

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

/* Tarjeta Gráfica del Mapa */
.location-visual-card {
  height: 100%;
}

.map-card-container {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-wood);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  background: var(--carbon);
  height: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

.map-interactive-mock {
  position: relative;
  width: 100%;
  height: 440px;
  background: #191514;
  overflow: hidden;
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(249, 231, 210, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 231, 210, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

.map-road {
  position: absolute;
  background: rgba(249, 231, 210, 0.1);
}
.map-road.road-1 {
  width: 140%;
  height: 18px;
  top: 45%;
  left: -20%;
  transform: rotate(-16deg);
}
.map-road.road-2 {
  width: 18px;
  height: 140%;
  top: -20%;
  left: 58%;
  transform: rotate(24deg);
}

.map-river {
  position: absolute;
  width: 120%;
  height: 36px;
  bottom: 16%;
  left: -10%;
  background: rgba(196, 197, 186, 0.08);
  transform: rotate(-5deg);
  border-radius: 18px;
}

.map-pin-anchor {
  position: absolute;
  top: 42%;
  left: 52%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.map-pin-core {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 18px rgba(249, 231, 210, 0.4);
}

.map-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--champagne);
  animation: pulseLive 2s infinite ease-out;
}

.map-floating-place-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(36, 31, 29, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-wood);
  border-radius: 16px;
  padding: 18px;
  z-index: 10;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
}

.mfc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.mfc-logo {
  height: 24px;
  width: auto;
}
.mfc-status-pill {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--champagne);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 8px;
  border-radius: 999px;
}

.mfc-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: 2px;
}
.mfc-address {
  font-size: 0.84rem;
  color: var(--marble);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mfc-address i {
  color: var(--champagne);
  font-size: 0.75rem;
}

.mfc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--marble);
  margin-bottom: 12px;
}
.mfc-rating .stars {
  color: var(--champagne);
  font-size: 0.75rem;
}

.mfc-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--champagne);
}
.mfc-direct-link:hover {
  text-decoration: underline;
  gap: 10px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #141110;
  border-top: 1px solid var(--line-wood);
  padding: 70px 0 26px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 44px);
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .footer-content { grid-template-columns: 1fr; }
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--marble);
  line-height: 1.58;
  margin-bottom: 20px;
}

.footer-status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line-wood);
  padding: 12px 16px;
  border-radius: 12px;
}
.footer-status-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ivory);
}
.footer-status-text span {
  font-size: 0.75rem;
  color: var(--taupe);
}

.footer-title {
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--ivory);
  margin-bottom: 18px;
}

.footer-links-group ul li {
  margin-bottom: 10px;
}
.footer-links-group ul li a {
  font-size: 0.88rem;
  color: var(--marble);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links-group ul li a i {
  font-size: 0.72rem;
  color: var(--champagne);
}
.footer-links-group ul li a:hover {
  color: var(--ivory);
  transform: translateX(3px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-list li i {
  color: var(--champagne);
  font-size: 0.95rem;
  margin-top: 3px;
}
.contact-lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--taupe);
}
.contact-val {
  font-size: 0.88rem;
  color: var(--ivory);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--taupe);
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-legal-links a:hover {
  color: var(--ivory);
}
.legal-sep {
  color: var(--wood);
}

/* ==========================================================================
   BARRA FLOTANTE MÓVIL (Smart Action Bar)
   ========================================================================== */
.mobile-floating-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(36, 31, 29, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-wood);
  padding: 8px 12px;
  z-index: 990;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .mobile-floating-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
  }
}

.mobile-float-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 6px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--marble);
  text-align: center;
  transition: all var(--t-fast);
}
.mobile-float-btn i {
  font-size: 1.1rem;
}
.mobile-float-btn.primary {
  background: var(--champagne);
  color: var(--black);
  box-shadow: 0 2px 10px rgba(249, 231, 210, 0.25);
}

/* ==========================================================================
   CURSOR DE BURBUJAS CHAMPÁN
   ========================================================================== */
.bubble-cursor-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 900;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  pointer-events: none;
}
.toast-msg {
  background: var(--carbon);
  backdrop-filter: blur(12px);
  border: 1px solid var(--champagne);
  color: var(--ivory);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: toastIn 0.3s ease-out;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   OPTIMIZACIONES MÓVILES (Media Queries Completas)
   ========================================================================== */
@media (max-width: 992px) {
  .navbar {
    background: rgba(0, 0, 0, 0.98) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1100 !important;
  }

  .nav-desktop-btn {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 88vw;
    height: 100vh;
    height: 100dvh;
    background: #1c1816 !important;
    border-left: 1px solid var(--line-wood);
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1150;
    box-shadow: -12px 0 50px rgba(0, 0, 0, 0.98);
    overflow-y: auto;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .nav-links.mobile-open {
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-wood);
    margin-bottom: 20px;
  }
  .mobile-menu-logo {
    height: 32px;
    width: auto;
  }
  .mobile-loc-tag {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--champagne);
    background: rgba(114, 98, 79, 0.35);
    padding: 3px 10px;
    border-radius: 999px;
    margin-left: 8px;
  }
  .mobile-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(249, 231, 210, 0.12) !important;
    border: 1px solid var(--line-wood);
    color: var(--ivory) !important;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .nav-links-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-bottom: 24px;
  }
  .nav-link {
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: #FEF7E7 !important;
    padding: 12px 16px;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
  }
  .nav-link:hover, .nav-link.active {
    background: rgba(249, 231, 210, 0.12) !important;
    color: #F9E7D2 !important;
  }
  .mobile-only-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    color: #F9E7D2 !important;
    font-size: 1.15rem;
  }

  .mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }
  .mobile-menu-actions .btn-champagne {
    background: #F9E7D2 !important;
    color: #000000 !important;
    font-weight: 700 !important;
    opacity: 1 !important;
  }
  .mobile-menu-actions .btn-whatsapp {
    background: #25D366 !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    opacity: 1 !important;
  }

  .mobile-menu-footer {
    display: block;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line-wood);
  }

  .live-status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #F9E7D2 !important;
    font-family: var(--mono);
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1050 !important; /* Detrás de navbar (1100) y drawer (1150) */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }
  .mobile-menu-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 600px) {
  :root {
    --nav-height: 64px;
  }

  .nova-video {
    width: clamp(280px, 88vw, 440px);
    max-height: 52vh;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .calculator-card-wrapper {
    padding: 20px 16px;
  }

  .feature-card {
    padding: 26px 20px;
  }

  .step-card {
    padding: 24px 18px;
  }

  .service-type-pills {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   NOVA LAUNDRY 2.0 - NUEVOS CONTROLES, GUÍA DE ETIQUETAS Y MODO CLARO/OSCURO
   ========================================================================== */

/* 1. Botones de Control en Barra de Navegación */
.btn-icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(36, 31, 29, 0.7);
  color: var(--champagne);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--t-fast);
  user-select: none;
}

.btn-icon-pill:hover {
  background: rgba(114, 98, 79, 0.4);
  border-color: var(--champagne);
  color: var(--ivory);
  transform: translateY(-1px);
}

.btn-icon-pill:active {
  transform: translateY(0) scale(0.96);
}

.lang-toggle-btn .lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-toggle-btn .lang-code {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.theme-toggle-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
}

.theme-toggle-btn i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.theme-toggle-btn:hover i {
  transform: rotate(20deg) scale(1.1);
}

.nav-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--champagne);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(249, 231, 210, 0.2);
  background: rgba(36, 31, 29, 0.5);
  transition: all var(--t-fast);
}

.nav-phone-link:hover {
  border-color: var(--champagne);
  background: rgba(114, 98, 79, 0.4);
  color: var(--ivory);
  transform: translateY(-1px);
}

.mobile-quick-toggles {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.mobile-quick-toggles .btn-icon-pill {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.9rem;
  justify-content: center;
}

.phone-inline-link {
  color: var(--champagne);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: var(--mono);
  font-size: 1.02rem;
}

.phone-link-big {
  color: var(--champagne);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.phone-link-big:hover {
  text-decoration: underline;
}

.footer-phone-link {
  color: var(--champagne);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 1.05rem;
}

.footer-phone-link:hover {
  text-decoration: underline;
}

.whatsapp-cta {
  background: rgba(37, 211, 102, 0.15) !important;
  border-color: rgba(37, 211, 102, 0.4) !important;
  color: #25D366 !important;
}

.whatsapp-cta:hover {
  background: #25D366 !important;
  color: #000000 !important;
}

.whatsapp-loc-btn {
  color: #25D366 !important;
  border-color: rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-loc-btn:hover {
  background: #25D366 !important;
  color: #000000 !important;
}

.mfc-highlight-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--champagne);
  margin-top: 4px;
  margin-bottom: 8px;
  font-family: var(--mono);
}

/* 2. Sección: Guía Visual de Etiquetas & Cuidado Textil */
.section-guide {
  position: relative;
  overflow: hidden;
}

.guide-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 44px;
}

.guide-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--ink-muted);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
}

.guide-filter-btn:hover {
  background: var(--surface-hover);
  color: var(--ink);
  border-color: var(--champagne);
}

.guide-filter-btn.active {
  background: var(--champagne);
  color: var(--black);
  border-color: var(--champagne);
  box-shadow: 0 4px 16px rgba(249, 231, 210, 0.25);
  font-weight: 700;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.guide-card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all var(--t-normal);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-highlight);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.guide-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(249, 231, 210, 0.08);
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  font-size: 1.15rem;
}

.guide-icon-badge .symbol-code {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
}

.guide-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.guide-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-family: var(--mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 6px;
}

.wash-tag { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.dry-tag { background: rgba(249, 231, 210, 0.18); color: var(--champagne); }
.intensive-tag { background: rgba(248, 113, 113, 0.15); color: #f87171; }
.delicate-tag { background: rgba(147, 197, 253, 0.15); color: #93c5fd; }
.fabric-tag { background: rgba(196, 197, 186, 0.2); color: var(--marble); }
.tip-tag { background: rgba(249, 231, 210, 0.25); color: var(--champagne); }

.guide-symbol-name {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.guide-symbol-desc {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.guide-recommendation {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--champagne);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
}

.guide-recommendation i {
  color: #4ade80;
  font-size: 0.95rem;
  margin-top: 2px;
}

/* 3. MODO CLARO (LIGHT THEME) DE ALTO CONTRASTE Y MÁXIMA NITIDEZ
   Paleta Oficial:
   #000000 Negro | #241F1D Carbón | #72624F Marrón madera | #9A9588 Beige taupe
   #C4C5BA Gris mármol | #F9E7D2 Champán | #FEF7E7 Marfil
*/
body.theme-light {
  --bg: #FEF7E7;
  --bg-warm: #F9E7D2;
  --surface: #FFFFFF;
  --surface-card: #FFFFFF;
  --surface-hover: #F9E7D2;

  --ink: #000000;
  --ink-strong: #000000;
  --ink-muted: #241F1D;
  --ink-faint: #72624F;

  --accent: #72624F;
  --accent-wood: #241F1D;
  
  --line: rgba(114, 98, 79, 0.22);
  --line-strong: rgba(114, 98, 79, 0.38);
  --line-highlight: rgba(114, 98, 79, 0.65);
  --line-wood: rgba(114, 98, 79, 0.35);

  background-color: #FEF7E7;
  color: #000000;
}

body.theme-light .navbar {
  background: rgba(254, 247, 231, 0.92);
  border-bottom: 1px solid rgba(114, 98, 79, 0.2);
  box-shadow: 0 4px 20px rgba(114, 98, 79, 0.08);
}

body.theme-light .navbar.scrolled {
  background: rgba(254, 247, 231, 0.98);
  box-shadow: 0 6px 24px rgba(114, 98, 79, 0.14);
}

body.theme-light .nav-link {
  color: #241F1D;
  font-weight: 600;
}

body.theme-light .nav-link:hover,
body.theme-light .nav-link.active {
  color: #000000;
  background: #F9E7D2;
}

body.theme-light .btn-icon-pill {
  background: #FFFFFF;
  color: #241F1D;
  border: 1.5px solid #C4C5BA;
  box-shadow: 0 2px 8px rgba(114, 98, 79, 0.08);
}

body.theme-light .btn-icon-pill:hover {
  background: #F9E7D2;
  border-color: #72624F;
  color: #000000;
}

body.theme-light .nav-phone-link {
  background: #FFFFFF;
  color: #241F1D;
  border: 1.5px solid #C4C5BA;
  font-weight: 700;
}

body.theme-light .nav-phone-link:hover {
  background: #F9E7D2;
  border-color: #72624F;
  color: #000000;
}

body.theme-light .btn-champagne {
  background: #241F1D;
  color: #FEF7E7;
  border: 1.5px solid #241F1D;
  box-shadow: 0 4px 14px rgba(36, 31, 29, 0.25);
}

body.theme-light .btn-champagne:hover {
  background: #72624F;
  color: #FFFFFF;
  border-color: #72624F;
}

body.theme-light .btn-ghost {
  background: #FFFFFF;
  color: #241F1D;
  border: 1.5px solid #C4C5BA;
  font-weight: 600;
}

body.theme-light .btn-ghost:hover {
  background: #F9E7D2;
  border-color: #72624F;
  color: #000000;
}

body.theme-light .section--dark {
  background-color: #F9E7D2;
}

body.theme-light .section--warm {
  background-color: #FEF7E7;
}

/* Títulos, encabezados y destacados con máximo contraste */
body.theme-light .section-title,
body.theme-light .manifesto-statement,
body.theme-light .card-title,
body.theme-light .pricing-machine,
body.theme-light .guide-symbol-name,
body.theme-light .step-title,
body.theme-light .capacity-title,
body.theme-light .calc-modal-title,
body.theme-light .result-title,
body.theme-light .payment-banner-text h4,
body.theme-light h1, body.theme-light h2, body.theme-light h3, body.theme-light h4 {
  color: #000000 !important;
  font-weight: 700;
}

body.theme-light .section-title em,
body.theme-light .manifesto-statement em,
body.theme-light .calc-teaser-text .section-title em {
  color: #72624F !important;
}

/* Todos los textos y párrafos en Carbón nítido */
body.theme-light .lead,
body.theme-light .card-text,
body.theme-light .guide-symbol-desc,
body.theme-light .step-desc,
body.theme-light .pricing-duration,
body.theme-light .location-desc,
body.theme-light .manifesto-side p,
body.theme-light .info-detail,
body.theme-light .faq-answer p,
body.theme-light .capacity-items li,
body.theme-light .pricing-features li,
body.theme-light .result-desc,
body.theme-light .payment-banner-text p {
  color: #241F1D !important;
  font-weight: 450;
}

/* TODAS LAS ETIQUETAS STRONG EN MODO CLARO SON 100% NEGRAS Y LEGIBLES */
body.theme-light strong,
body.theme-light .pricing-features li strong,
body.theme-light .payment-banner-text strong,
body.theme-light .guide-recommendation strong,
body.theme-light .faq-answer strong,
body.theme-light .manifesto-side strong,
body.theme-light .info-detail strong,
body.theme-light .capacity-price-tag strong {
  color: #000000 !important;
  font-weight: 700 !important;
}

/* Tags de Métodos de Pago en Modo Claro */
body.theme-light .payment-banner-tags .p-tag {
  background: #F9E7D2 !important;
  color: #241F1D !important;
  border: 1.5px solid #72624F !important;
  font-weight: 700 !important;
}
body.theme-light .payment-banner-tags .p-tag i {
  color: #72624F !important;
}

body.theme-light .eyebrow,
body.theme-light .eyebrow-accent {
  color: #72624F !important;
  font-weight: 700 !important;
}

/* Iconos de cajas destacados y perfectamente visibles */
body.theme-light .card-icon-box {
  background: #241F1D !important;
  color: #FEF7E7 !important;
  border: 1.5px solid #72624F !important;
  box-shadow: 0 6px 16px rgba(36, 31, 29, 0.22) !important;
}

body.theme-light .guide-icon-badge {
  background: #241F1D !important;
  color: #F9E7D2 !important;
  border: 1.5px solid #72624F !important;
  box-shadow: 0 4px 12px rgba(36, 31, 29, 0.18) !important;
}

body.theme-light .spec-icon-box,
body.theme-light .step-icon,
body.theme-light .info-icon,
body.theme-light .calc-teaser-icon-box,
body.theme-light .payment-banner-icon {
  background: #241F1D !important;
  color: #FEF7E7 !important;
  border: 1.5px solid #72624F !important;
  box-shadow: 0 4px 14px rgba(36, 31, 29, 0.2) !important;
}

/* Tarjetas con bordes definidos y sombras nítidas */
body.theme-light .feature-card,
body.theme-light .pricing-card,
body.theme-light .capacity-card,
body.theme-light .step-card,
body.theme-light .guide-card,
body.theme-light .location-info-panel,
body.theme-light .calc-teaser-banner,
body.theme-light .payment-banner-card {
  background: #FFFFFF !important;
  border: 1.5px solid #C4C5BA !important;
  box-shadow: 0 6px 24px rgba(114, 98, 79, 0.1) !important;
}

body.theme-light .pricing-card.featured,
body.theme-light .capacity-card.featured-capacity {
  border: 2px solid #72624F !important;
  box-shadow: 0 10px 32px rgba(114, 98, 79, 0.16) !important;
}

body.theme-light .card-index {
  color: #72624F !important;
  font-weight: 700 !important;
}

body.theme-light .feature-tag {
  background: #F9E7D2 !important;
  color: #241F1D !important;
  border: 1.5px solid #72624F !important;
  font-weight: 700 !important;
}

body.theme-light .card-ribbon,
body.theme-light .capacity-highlight-ribbon {
  background: #241F1D !important;
  color: #FEF7E7 !important;
  border: 1px solid #72624F !important;
  font-weight: 700 !important;
}

/* Números y Precios */
body.theme-light .price-box .currency,
body.theme-light .price-box .amount,
body.theme-light .price-box .decimals {
  color: #241F1D !important;
  font-weight: 700 !important;
}

body.theme-light .price-box .period {
  color: #72624F !important;
  font-weight: 600 !important;
}

body.theme-light .machine-tag-badge,
body.theme-light .badge-size {
  color: #72624F !important;
  font-weight: 600 !important;
}

body.theme-light .capacity-hint {
  background: #F9E7D2 !important;
  color: #241F1D !important;
  border: 1px solid #C4C5BA !important;
  font-weight: 600 !important;
}

body.theme-light .spec-strip {
  background: #FFFFFF !important;
  border: 1.5px solid #C4C5BA !important;
  box-shadow: 0 8px 26px rgba(114, 98, 79, 0.12) !important;
}

body.theme-light .spec-num {
  color: #241F1D !important;
}

body.theme-light .spec-label {
  color: #000000 !important;
}

body.theme-light .spec-sub {
  color: #72624F !important;
  font-weight: 600 !important;
}

body.theme-light .m-pill {
  background: #FFFFFF !important;
  color: #241F1D !important;
  border: 1.5px solid #C4C5BA !important;
  font-weight: 600 !important;
}

/* Guía de Etiquetas en Modo Claro */
body.theme-light .guide-tag.wash-tag { background: #dcfce7 !important; color: #166534 !important; font-weight: 700 !important; }
body.theme-light .guide-tag.dry-tag { background: #F9E7D2 !important; color: #241F1D !important; border: 1px solid #72624F !important; font-weight: 700 !important; }
body.theme-light .guide-tag.intensive-tag { background: #fee2e2 !important; color: #991b1b !important; font-weight: 700 !important; }
body.theme-light .guide-tag.delicate-tag { background: #dbeafe !important; color: #1e40af !important; font-weight: 700 !important; }
body.theme-light .guide-tag.fabric-tag { background: #F9E7D2 !important; color: #241F1D !important; border: 1px solid #72624F !important; font-weight: 700 !important; }
body.theme-light .guide-tag.tip-tag { background: #241F1D !important; color: #FEF7E7 !important; font-weight: 700 !important; }

body.theme-light .guide-recommendation {
  color: #241F1D !important;
  border-top: 1.5px solid #C4C5BA !important;
  font-weight: 500 !important;
}

body.theme-light .guide-filter-btn {
  background: #FFFFFF !important;
  color: #241F1D !important;
  border: 1.5px solid #C4C5BA !important;
  font-weight: 600 !important;
}

body.theme-light .guide-filter-btn.active {
  background: #241F1D !important;
  color: #FEF7E7 !important;
  border-color: #241F1D !important;
}

/* Pestañas de Tarifas */
body.theme-light .pricing-tabs {
  background: #FFFFFF !important;
  border: 1.5px solid #C4C5BA !important;
}

body.theme-light .pricing-tab-btn {
  color: #241F1D !important;
  font-weight: 600 !important;
}

body.theme-light .pricing-tab-btn.active {
  background: #241F1D !important;
  color: #FEF7E7 !important;
}

/* Preguntas Frecuentes */
body.theme-light .faq-question {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1.5px solid #C4C5BA !important;
  font-weight: 600 !important;
}

body.theme-light .faq-item.open .faq-question {
  background: #F9E7D2 !important;
  border-color: #72624F !important;
}

body.theme-light .faq-answer {
  background: #FFFFFF !important;
  color: #241F1D !important;
  border: 1.5px solid #C4C5BA !important;
}

/* Visualizador de Capacidad */
body.theme-light .drum-circle-graphic {
  background: #F9E7D2 !important;
  border: 2px solid #72624F !important;
  color: #241F1D !important;
}

body.theme-light .drum-badge {
  background: #241F1D !important;
  color: #FEF7E7 !important;
}

body.theme-light .step-badge-number {
  background: #241F1D !important;
  color: #FEF7E7 !important;
}

/* Footer y Modal */
body.theme-light .footer {
  background: #241F1D !important;
  color: #C4C5BA !important;
}

body.theme-light .footer .footer-title,
body.theme-light .footer .footer-tagline {
  color: #FEF7E7 !important;
}

/* =========================================================================
   CALCULADOR Y MODAL EN MODO CLARO CON CONTRASTE IMPECABLE
   ========================================================================= */
body.theme-light .calc-modal-container {
  background: #FEF7E7 !important;
  border: 2px solid #72624F !important;
  box-shadow: 0 24px 70px rgba(36, 31, 29, 0.4) !important;
  color: #000000 !important;
}

body.theme-light .calc-modal-header {
  background: #FFFFFF !important;
  border-bottom: 1.5px solid #C4C5BA !important;
}

body.theme-light .calc-modal-title {
  color: #000000 !important;
  font-weight: 700 !important;
}

body.theme-light .calc-modal-close {
  background: #F9E7D2 !important;
  color: #241F1D !important;
  border: 1.5px solid #72624F !important;
}

body.theme-light .calc-modal-close:hover {
  background: #241F1D !important;
  color: #FEF7E7 !important;
}

body.theme-light .calc-options-panel {
  background: #FFFFFF !important;
  border: 1.5px solid #C4C5BA !important;
  box-shadow: 0 6px 20px rgba(114, 98, 79, 0.08) !important;
}

body.theme-light .calc-group-label {
  color: #000000 !important;
  font-weight: 700 !important;
}

body.theme-light .calc-step-badge {
  background: #241F1D !important;
  color: #FEF7E7 !important;
}

/* Botones de Tipo de Colada */
body.theme-light .laundry-type-btn {
  background: #FFFFFF !important;
  border: 1.5px solid #C4C5BA !important;
  color: #241F1D !important;
}

body.theme-light .laundry-type-btn .type-btn-info strong {
  color: #000000 !important;
  font-weight: 700 !important;
}

body.theme-light .laundry-type-btn .type-btn-info span {
  color: #241F1D !important;
  font-weight: 450 !important;
}

body.theme-light .laundry-type-btn .type-btn-icon {
  background: #F9E7D2 !important;
  color: #241F1D !important;
  border: 1px solid #72624F !important;
}

body.theme-light .laundry-type-btn:hover {
  background: #FEF7E7 !important;
  border-color: #72624F !important;
}

body.theme-light .laundry-type-btn.active {
  background: #F9E7D2 !important;
  border: 2px solid #72624F !important;
  box-shadow: 0 4px 16px rgba(114, 98, 79, 0.16) !important;
}

body.theme-light .laundry-type-btn.active .type-btn-info strong {
  color: #000000 !important;
  font-weight: 800 !important;
}

body.theme-light .laundry-type-btn.active .type-btn-icon {
  background: #241F1D !important;
  color: #FEF7E7 !important;
  border-color: #241F1D !important;
}

/* Botones de Selección de Servicio */
body.theme-light .service-pill-btn {
  background: #FFFFFF !important;
  color: #241F1D !important;
  border: 1.5px solid #C4C5BA !important;
  font-weight: 600 !important;
}

body.theme-light .service-pill-btn i {
  color: #72624F !important;
}

body.theme-light .service-pill-btn:hover {
  background: #F9E7D2 !important;
  border-color: #72624F !important;
  color: #000000 !important;
}

body.theme-light .service-pill-btn.active {
  background: #241F1D !important;
  color: #FEF7E7 !important;
  border-color: #241F1D !important;
}

body.theme-light .service-pill-btn.active i {
  color: #F9E7D2 !important;
}

/* Panel de Resultados del Cálculo */
body.theme-light .calc-result-panel {
  background: #F9E7D2 !important;
  border: 1.5px solid #72624F !important;
  color: #000000 !important;
  box-shadow: 0 8px 24px rgba(114, 98, 79, 0.14) !important;
}

body.theme-light .calc-result-panel .result-badge {
  color: #72624F !important;
  font-weight: 700 !important;
}

body.theme-light .calc-result-panel .result-title {
  color: #000000 !important;
  font-weight: 700 !important;
}

body.theme-light .calc-result-panel .result-desc {
  color: #241F1D !important;
}

body.theme-light .calc-result-panel .result-details-box {
  background: #FFFFFF !important;
  border: 1.5px solid #C4C5BA !important;
}

body.theme-light .calc-result-panel .result-stat-row {
  border-bottom: 1.5px solid #C4C5BA !important;
}

body.theme-light .calc-result-panel .r-stat .r-label {
  color: #72624F !important;
  font-weight: 600 !important;
}

body.theme-light .calc-result-panel .r-stat .r-value {
  color: #000000 !important;
  font-weight: 800 !important;
}

body.theme-light .calc-result-panel .breakdown-row {
  color: #241F1D !important;
  font-weight: 500 !important;
}

body.theme-light .calc-result-panel .breakdown-row strong {
  color: #000000 !important;
  font-weight: 700 !important;
}

body.theme-light .calc-result-panel .breakdown-total {
  border-top: 1.5px dashed #72624F !important;
}

body.theme-light .calc-result-panel .breakdown-total span {
  color: #000000 !important;
  font-weight: 700 !important;
}

body.theme-light .calc-result-panel .breakdown-total .total-number {
  color: #000000 !important;
  font-weight: 800 !important;
}

body.theme-light .calc-result-panel .result-inclusions {
  border-top: 1.5px solid #C4C5BA !important;
}

body.theme-light .calc-result-panel .inc-title {
  color: #000000 !important;
  font-weight: 700 !important;
}

body.theme-light .calc-result-panel .inc-list li {
  color: #241F1D !important;
}

body.theme-light .calc-result-panel .inc-list li i {
  color: #16a34a !important;
}

body.theme-light .calc-result-panel .btn-champagne {
  background: #241F1D !important;
  color: #FEF7E7 !important;
  border: 1.5px solid #241F1D !important;
}

body.theme-light .calc-result-panel .btn-champagne:hover {
  background: #72624F !important;
  color: #FFFFFF !important;
  border-color: #72624F !important;
}

body.theme-light .mobile-floating-bar {
  background: rgba(254, 247, 231, 0.96) !important;
  border-top: 1.5px solid #C4C5BA !important;
}

body.theme-light .mobile-floating-bar .mobile-float-btn {
  color: #241F1D !important;
}

body.theme-light .mobile-floating-bar .mobile-float-btn.primary {
  background: #241F1D !important;
  color: #FEF7E7 !important;
}

/* Panel de Ubicación en Modo Claro con Alto Contraste */
body.theme-light .location-info-panel {
  background: #FFFFFF !important;
  border: 1.5px solid #C4C5BA !important;
  box-shadow: 0 10px 36px rgba(114, 98, 79, 0.12) !important;
}

body.theme-light .location-info-panel .info-heading {
  color: #000000 !important;
  font-weight: 700 !important;
}

body.theme-light .location-info-panel .info-detail {
  color: #241F1D !important;
}

body.theme-light .location-info-panel .info-detail strong {
  color: #000000 !important;
  font-weight: 700 !important;
}

body.theme-light .location-info-panel .phone-link-big {
  color: #000000 !important;
  font-weight: 800 !important;
}

body.theme-light .location-info-panel .info-subtag {
  color: #72624F !important;
  font-weight: 600 !important;
}

body.theme-light .location-info-panel .copy-address-btn {
  background: #F9E7D2 !important;
  color: #241F1D !important;
  border: 1.5px solid #72624F !important;
  font-weight: 600 !important;
}

body.theme-light .location-info-panel .copy-address-btn:hover {
  background: #241F1D !important;
  color: #FEF7E7 !important;
  border-color: #241F1D !important;
}

body.theme-light .map-card-container {
  border: 1.5px solid #C4C5BA !important;
  box-shadow: 0 10px 36px rgba(114, 98, 79, 0.14) !important;
}

/* Transición suave al alternar tema */
body, .navbar, .section, .feature-card, .pricing-card, .guide-card, .capacity-card, .calc-modal-container {
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}



