/* ==========================================================================
   URBAN WASH & HOGAR - EXCLUSIVE DESIGN SYSTEM (INTER ONLY)
   Tipografía Obligatoria: Inter (única fuente para todo el sitio)
   - Títulos: Black Italic (900 Italic)
   - Subtítulos: Extra Bold Italic (800 Italic)
   - Textos: Semi Bold (600 Normal)
   
   Colores de Marca:
   - Blanco: #ffffff
   - Azul Oscuro: #043067
   - Azul Medio: #1a5caa
   - Azul Claro: #00aee7
   - Amarillo Detalles: #f8cf0d
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,600;0,700;0,800;0,900;1,600;1,700;1,800;1,900&display=swap');

:root {
  /* Brand Colors */
  --color-primary-dark: #043067;
  --color-primary-medium: #1a5caa;
  --color-primary-light: #00aee7;
  --color-accent-yellow: #f8cf0d;
  --color-white: #ffffff;
  
  /* Neutral Palette */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-soft-blue: #f0f7ff;
  --bg-dark-card: #03244d;
  --text-main: #0f172a;
  --text-muted: #334155;
  --text-light: #64748b;
  --border-color: #cbd5e1;
  --border-focus: #00aee7;

  /* Typography: ONLY INTER */
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevations & Shadows */
  --shadow-sm: 0 2px 6px rgba(4, 48, 103, 0.06);
  --shadow-md: 0 10px 30px rgba(4, 48, 103, 0.1);
  --shadow-lg: 0 20px 40px rgba(4, 48, 103, 0.16);
  --shadow-glow: 0 0 25px rgba(0, 174, 231, 0.35);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Typography (Semi Bold por defecto para todos los textos) */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-inter);
  font-weight: 600; /* Textos: Semi Bold */
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* TÍTULOS: BLACK ITALIC (900 Italic) - SIEMPRE EN MAYÚSCULA SOSTENIDA */
h1, h2, h3, h4, h5, h6, .title-black-italic, .section-title, .hero-title, .dual-card-title, .service-box-title, .step-title, .price-card-title, .footer-col h4, .faq-question, .contact-card h3, .calc-total-label {
  font-family: var(--font-inter) !important;
  font-weight: 900 !important;
  font-style: italic !important;
  text-transform: uppercase !important;
  color: var(--color-primary-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--color-white) !important;
}

/* SUBTÍTULOS: EXTRA BOLD ITALIC (800 Italic) - CASO NATURAL (NO TITLE CASE) */
.section-subtitle, .hero-subtitle, .badge-tag, .subtitle-extrabold-italic, .pillar-title, .contact-method-title {
  font-family: var(--font-inter) !important;
  font-weight: 800 !important;
  font-style: italic !important;
  text-transform: none;
}

/* TEXTOS: SEMI BOLD (600 Normal) - CASO NATURAL */
p, span, li, a, td, th, input, select, textarea, button, label {
  font-family: var(--font-inter) !important;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
}

/* Los spans dentro de títulos siempre heredan el peso y estilo del título (Black Italic) */
h1 span, h2 span, h3 span, h4 span, .title-black-italic span, .section-title span, .hero-title span, .hero-fullbleed h1 span {
  font-family: inherit !important;
  font-weight: inherit !important;
  font-style: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}

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

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

ul {
  list-style: none;
}

/* ==========================================================================
   LAYOUT & CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 85px 0;
  position: relative;
}

.section-tight {
  padding: 55px 0;
}

.bg-soft {
  background-color: var(--bg-soft-blue);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-dark {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-title {
  font-size: 2.45rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bg-dark .section-subtitle {
  color: #cbd5e1;
}

/* ==========================================================================
   BADGES & BUTTONS
   ========================================================================== */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 174, 231, 0.15);
  color: var(--color-primary-medium);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.badge-tag.yellow {
  background: var(--color-accent-yellow);
  color: var(--color-primary-dark);
}

.badge-tag.white {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-accent-yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary-medium);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(26, 92, 170, 0.4);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 48, 103, 0.5);
}

.btn-yellow {
  background-color: var(--color-accent-yellow);
  color: var(--color-primary-dark);
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(248, 207, 13, 0.5);
}

.btn-yellow:hover {
  background-color: #ffd624;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(248, 207, 13, 0.7);
}

.btn-outline {
  border-color: var(--color-primary-medium);
  color: var(--color-primary-medium);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--color-primary-medium);
  color: var(--color-white);
}

.btn-outline-white {
  border-color: var(--color-white);
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary-dark);
}

.btn-light-blue {
  background-color: var(--color-primary-light);
  color: var(--color-white);
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0, 174, 231, 0.45);
}

.btn-light-blue:hover {
  background-color: #0096c7;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 174, 231, 0.65);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   TOPBAR & HEADER
   ========================================================================== */
/* ==========================================================================
   TOPBAR & HEADER (TODO EN MAYÚSCULA SOSTENIDA)
   ========================================================================== */
.topbar {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: uppercase !important;
  letter-spacing: 0.04em;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 24px;
  text-transform: uppercase !important;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase !important;
}

.topbar-item svg {
  color: var(--color-accent-yellow);
}

.topbar-badge {
  background: var(--color-accent-yellow);
  color: var(--color-primary-dark);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(4, 48, 103, 0.1);
  transition: var(--transition);
  text-transform: uppercase !important;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.brand-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  text-transform: uppercase !important;
}

.nav-link {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--color-primary-dark);
  position: relative;
  padding: 8px 4px;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
}

.nav-link:hover {
  color: var(--color-primary-light);
}

.nav-link.active {
  color: var(--color-primary-medium);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-full);
}

.header-action {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-action .btn {
  text-transform: uppercase !important;
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-primary-dark);
}

/* ==========================================================================
   NUEVA OPCIÓN DE BANNER PRINCIPAL (DINÁMICO, MULTICAPA, LUMINOSO Y MODERNO)
   ========================================================================== */
.hero-fullbleed {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/hero_laundry.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 110px 24px 75px 24px;
  overflow: hidden;
}

/* Overlay fotográfico con gradiente azul oscuro de alta profundidad */
.hero-fullbleed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(4, 48, 103, 0.92) 0%,
    rgba(4, 48, 103, 0.76) 45%,
    rgba(4, 48, 103, 0.96) 100%
  );
  z-index: 1;
}

/* Luces ambientales dinámicas (Glow Orbs) para eliminar lo estático */
.hero-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
  animation: heroOrbFloat 10s ease-in-out infinite alternate;
}

.hero-ambient-orb-1 {
  width: 480px;
  height: 480px;
  top: 5%;
  left: 10%;
  background: radial-gradient(circle, rgba(0, 174, 231, 0.5) 0%, rgba(4, 48, 103, 0) 70%);
}

.hero-ambient-orb-2 {
  width: 520px;
  height: 520px;
  bottom: 5%;
  right: 10%;
  background: radial-gradient(circle, rgba(26, 92, 170, 0.55) 0%, rgba(0, 174, 231, 0) 70%);
  animation-duration: 13s;
  animation-direction: alternate-reverse;
}

@keyframes heroOrbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(45px, -35px) scale(1.15); }
  100% { transform: translate(-35px, 45px) scale(0.92); }
}

/* Partículas/burbujas flotantes de colada limpia que dan dinamismo constante */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(0, 174, 231, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 15px rgba(0, 174, 231, 0.35);
  animation: floatBubble linear infinite;
}

.hero-particle:nth-child(1) { width: 32px; height: 32px; left: 8%; animation-duration: 15s; animation-delay: 0s; }
.hero-particle:nth-child(2) { width: 20px; height: 20px; left: 24%; animation-duration: 12s; animation-delay: 2s; }
.hero-particle:nth-child(3) { width: 42px; height: 42px; left: 48%; animation-duration: 18s; animation-delay: 1s; opacity: 0.65; }
.hero-particle:nth-child(4) { width: 24px; height: 24px; left: 72%; animation-duration: 14s; animation-delay: 3s; }
.hero-particle:nth-child(5) { width: 36px; height: 36px; left: 88%; animation-duration: 16s; animation-delay: 4.5s; }
.hero-particle:nth-child(6) { width: 16px; height: 16px; left: 62%; animation-duration: 11s; animation-delay: 5.5s; }

@keyframes floatBubble {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  15% {
    opacity: 0.8;
  }
  85% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-115vh) rotate(360deg) scale(1.15);
    opacity: 0;
  }
}

.hero-fullbleed-content {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
}

/* Badge en vivo con indicador beacon pulsante */
.hero-fullbleed .hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.hero-status-pill .detail-accent {
  color: var(--color-accent-yellow);
  font-size: 0.9rem;
}

.hero-pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Titular: Blanco y Azul Claro (Amarillo solo detalles) */
.hero-fullbleed h1 {
  font-size: 3.9rem !important;
  color: var(--color-white) !important;
  margin-bottom: 22px;
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  letter-spacing: -0.015em;
  text-transform: uppercase !important;
}

.hero-fullbleed h1 .highlight-cyan {
  font-family: var(--font-inter) !important;
  font-weight: 900 !important;
  font-style: italic !important;
  font-size: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: uppercase !important;
  color: var(--color-primary-light) !important; /* Azul Claro: #00aee7 */
  display: inline-block;
  text-shadow: 0 0 32px rgba(0, 174, 231, 0.65);
}

.hero-fullbleed .hero-subtitle {
  font-size: 1.25rem !important;
  color: #f1f5f9 !important;
  max-width: 860px;
  margin: 0 auto 34px auto;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  font-weight: 800 !important;
  font-style: italic !important;
  text-transform: none !important;
}

.hero-fullbleed .hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}

/* FILA DE TARJETAS FLOTANTES DE ALTO IMPACTO (3 PILARES DINÁMICOS) */
.hero-floating-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 35px;
}

.hero-floating-card {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: left;
  transition: var(--transition);
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(4, 48, 103, 0.35);
  position: relative;
  overflow: hidden;
  animation: heroFloatCard 6s ease-in-out infinite alternate;
}

.hero-floating-card:nth-child(2) {
  animation-delay: 1.5s;
  animation-duration: 7s;
}

.hero-floating-card:nth-child(3) {
  animation-delay: 3s;
  animation-duration: 6.5s;
}

@keyframes heroFloatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

.hero-floating-card:hover {
  transform: translateY(-9px) !important;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(0, 174, 231, 0.7);
  box-shadow: 0 16px 40px rgba(0, 174, 231, 0.35);
}

.hero-floating-card-icon {
  font-size: 1.7rem;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-floating-card-title {
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  font-style: italic !important;
  color: var(--color-white) !important;
  margin-bottom: 6px;
  text-transform: uppercase !important;
}

.hero-floating-card-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.45;
  font-weight: 600;
  margin: 0;
  text-transform: none;
}

.hero-floating-card-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--color-primary-light);
  font-weight: 800;
  text-transform: none;
}

.hero-fullbleed .hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.94rem;
  text-transform: none;
}

.hero-trust-item span.icon-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent-yellow);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 0.82rem;
}

/* ==========================================================================
   CARDS & GRIDS
   ========================================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dual-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.dual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.dual-card-media {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.dual-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dual-card:hover .dual-card-media img {
  transform: scale(1.04);
}

.dual-card-body {
  padding: 34px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dual-card-title {
  font-size: 1.65rem;
  margin-bottom: 14px;
}

.grid-3 .dual-card-title {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.grid-3 .dual-card-body {
  padding: 26px;
}

.grid-3 .dual-card-media {
  height: 220px;
}

.dual-card-desc {
  color: var(--text-muted);
  margin-bottom: 22px;
  flex: 1;
}

/* Tags 01, 02, 03 reducidos un 30% con el estilo azul claro de 03 */
.pillar-badge-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: #e0f2fe;
  color: #0369a1;
  font-family: var(--font-inter) !important;
  font-weight: 800 !important;
  font-style: italic !important;
  font-size: 0.64rem;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Taquillas Showcase Dinámico con PNG */
.locker-showcase-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background: radial-gradient(circle, rgba(0, 174, 231, 0.12) 0%, rgba(4, 48, 103, 0.04) 75%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 174, 231, 0.2);
  box-shadow: var(--shadow-md);
  overflow: visible;
}

.locker-glow-effect {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 174, 231, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
  animation: pulseGlowLocker 4s ease-in-out infinite alternate;
}

@keyframes pulseGlowLocker {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0.85; }
}

.locker-img-box {
  position: relative;
  z-index: 2;
  max-width: 420px;
  width: 100%;
  transition: var(--transition);
  animation: lockerFloat 6s ease-in-out infinite alternate;
}

@keyframes lockerFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.locker-png-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(4, 48, 103, 0.22));
  transition: transform 0.4s ease;
}

.locker-showcase-wrapper:hover .locker-png-img {
  transform: scale(1.03);
}

.locker-floating-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 174, 231, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  box-shadow: 0 8px 24px rgba(4, 48, 103, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}

.locker-floating-badge.badge-top {
  top: 15px;
  right: 15px;
}

.locker-floating-badge.badge-bottom {
  bottom: 15px;
  left: 15px;
}

/* Banner Final con Imagen IMG1.jpg de fondo y Franja Azul */
.section-banner-stress {
  position: relative;
  background-image: url('../images/IMG1.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 105px 0;
  overflow: hidden;
}

.banner-stress-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(4, 48, 103, 0.92) 0%,
    rgba(26, 92, 170, 0.86) 50%,
    rgba(4, 48, 103, 0.94) 100%
  );
  z-index: 1;
}

.locker-showcase-clean {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
}

.locker-png-standalone {
  width: 100%;
  max-width: 460px;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(4, 48, 103, 0.24));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  animation: lockerFloat 6s ease-in-out infinite alternate;
}

.locker-png-standalone:hover {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 26px 48px rgba(4, 48, 103, 0.32));
}

.banner-logo-white {
  max-height: 96px;
  width: auto;
  margin: 0 auto 28px auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s ease;
}

.banner-logo-white:hover {
  transform: scale(1.04);
}

.btn-whatsapp-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #25D366;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-whatsapp-banner:hover {
  background-color: #20ba5a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
  color: #ffffff !important;
}

.btn-whatsapp-banner svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.service-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-box-media {
  height: 180px;
  margin: -34px -34px 22px -34px;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft-blue);
}

.service-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-box:hover .service-box-media img {
  transform: scale(1.06);
}

.service-box-media-icon {
  position: absolute;
  bottom: 12px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-medium);
  box-shadow: 0 4px 14px rgba(4, 48, 103, 0.2);
  transition: var(--transition);
}

.service-box:hover .service-box-media-icon {
  background: var(--color-primary-medium);
  color: var(--color-white);
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--color-primary-light);
  transition: var(--transition);
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 174, 231, 0.4);
}

.service-box:hover::before {
  height: 100%;
}

.service-box-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--bg-soft-blue);
  color: var(--color-primary-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-box:hover .service-box-icon {
  background: var(--color-primary-medium);
  color: var(--color-white);
}

.service-box-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-box-desc {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 20px;
  flex: 1;
}

.service-box-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-color);
}

.service-box-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   PRICING TABLES & CARDS
   ========================================================================== */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.pricing-tab-btn {
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.98rem;
  background: var(--color-white);
  border: 1.5px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.pricing-tab-btn.active {
  background: var(--color-primary-medium);
  color: var(--color-white);
  border-color: var(--color-primary-medium);
  box-shadow: 0 4px 16px rgba(26, 92, 170, 0.35);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  background: var(--color-white);
}

.clean-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.clean-table th {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  font-weight: 800;
  font-style: italic;
  padding: 18px 24px;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.clean-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.95rem;
}

.clean-table tr:hover td {
  background-color: var(--bg-soft-blue);
}

.price-pill {
  display: inline-block;
  font-weight: 800;
  color: var(--color-primary-medium);
  background: rgba(0, 174, 231, 0.12);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.price-pill.highlight {
  background: var(--color-accent-yellow);
  color: var(--color-primary-dark);
}

/* ==========================================================================
   TAQUILLAS STEP WORKFLOW
   ========================================================================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.step-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(0, 174, 231, 0.25);
}

.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: var(--color-accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   FEATURE PILLARS / EXPERIENCE
   ========================================================================== */
.pillar-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent-yellow);
}

.pillar-num {
  font-size: 1.25rem;
  font-weight: 900;
  font-style: italic;
  color: var(--color-accent-yellow);
  margin-bottom: 12px;
}

.pillar-title {
  font-size: 1.3rem;
  color: var(--color-white) !important;
  margin-bottom: 10px;
}

.pillar-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
}

/* ==========================================================================
   CONTACT FORM & LOCATION
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card, .contact-form-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-soft-blue);
  color: var(--color-primary-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-method-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}

.form-label span {
  color: #ef4444;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: #fafbfc;
  color: var(--text-main);
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary-light);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(0, 174, 231, 0.15);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary-medium);
}

/* ==========================================================================
   WHATSAPP INTERACTIVE FLOATING POPUP WIDGET (CON OPCIONES ANTES DE REDIRIGIR)
   ========================================================================== */
.whatsapp-widget-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
}

/* Botón flotante disparador */
.whatsapp-trigger-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #25D366;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-trigger-btn:hover {
  background-color: #20bd5a;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-trigger-btn svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

.whatsapp-badge-pulse {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 11px;
  height: 11px;
  background-color: var(--color-accent-yellow);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(248, 207, 13, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(248, 207, 13, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(248, 207, 13, 0); }
}

/* Modal desplegable con opciones de consulta */
.whatsapp-popup {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 360px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(4, 48, 103, 0.22);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: slideUpFade 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.whatsapp-popup.active {
  display: flex;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.whatsapp-popup-header {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-agent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-agent-avatar img {
  width: 100%;
  height: auto;
}

.whatsapp-agent-name {
  font-size: 0.95rem;
  font-weight: 800;
  font-style: italic;
  color: var(--color-white);
}

.whatsapp-agent-status {
  font-size: 0.78rem;
  color: var(--color-accent-yellow);
  display: flex;
  align-items: center;
  gap: 5px;
}

.whatsapp-agent-status::before {
  content: '';
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

.whatsapp-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.whatsapp-close-btn:hover {
  color: var(--color-accent-yellow);
}

.whatsapp-popup-body {
  padding: 20px;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.whatsapp-chat-bubble {
  background: var(--color-white);
  padding: 12px 16px;
  border-radius: 14px 14px 14px 4px;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.whatsapp-options-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 800;
  font-style: italic;
}

.whatsapp-options-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.whatsapp-option-item {
  background: var(--color-white);
  border: 1.5px solid var(--border-color);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-option-item:hover {
  background-color: var(--bg-soft-blue);
  border-color: var(--color-primary-medium);
  color: var(--color-primary-medium);
  transform: translateX(4px);
}

.whatsapp-custom-box {
  padding: 14px 20px;
  background: var(--color-white);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
}

.whatsapp-custom-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  outline: none;
}

.whatsapp-custom-input:focus {
  border-color: #25D366;
}

.whatsapp-send-btn {
  background: #25D366;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.whatsapp-send-btn:hover {
  background: #20bd5a;
  transform: scale(1.05);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-primary-dark);
  color: #e2e8f0;
  padding: 75px 0 30px 0;
  border-top: 4px solid var(--color-primary-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 66px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: var(--color-white) !important;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--color-primary-light);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary-light);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #cbd5e1;
}

.footer-bottom a {
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--color-primary-light);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-fullbleed h1 {
    font-size: 3rem !important;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--color-primary-medium);
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-fullbleed {
    padding: 70px 16px;
    min-height: 70vh;
  }
  .hero-fullbleed h1 {
    font-size: 2.3rem !important;
  }
  .hero-fullbleed .hero-subtitle {
    font-size: 1.1rem !important;
  }
  .hero-floating-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  .steps-container {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
  .whatsapp-popup {
    width: calc(100vw - 36px);
    right: -10px;
  }
  .whatsapp-trigger-btn span.whatsapp-label {
    display: none;
  }
  .whatsapp-trigger-btn {
    padding: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
