/* ==========================================================================
   DRUK DIGITAL - Estilo Liquid Glass Emerald & Silver
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Liquid Glass Emerald & Silver Palette */
  --bg-deep: #051610;
  --emerald-dark: #0a261c;
  --emerald-glow: #134e38;
  --emerald-accent: #2a6f58;
  --emerald-bright: #34d399;
  
  --silver: #e2e8f0;
  --silver-muted: #94a3b8;
  --silver-glow: rgba(226, 232, 240, 0.4);
  
  --glass-bg: rgba(10, 38, 28, 0.65);
  --glass-card: rgba(10, 38, 28, 0.45);
  --glass-card-hover: rgba(19, 78, 56, 0.6);
  --glass-border: rgba(226, 232, 240, 0.15);
  --glass-border-hover: rgba(226, 232, 240, 0.35);
  
  --accent-whatsapp: #25d366;
  --accent-whatsapp-hover: #1ebd56;
  
  --text-white: #ffffff;
  --text-heading: #f8fafc;
  --text-body: #e2e8f0;
  --text-muted: #94a3b8;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  --shadow-main: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(226, 232, 240, 0.2);
  --shadow-glow: 0 0 30px rgba(52, 211, 153, 0.25);
  
  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s ease;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
}

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

body {
  background-color: var(--bg-deep);
  color: var(--silver);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Fondo Dinámico Líquido Animado */
.liquid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.blob {
  position: absolute;
  filter: blur(90px);
  opacity: 0.55;
  animation: float 14s infinite alternate ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: #0f3829;
  top: -10%;
  left: -10%;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: #1b4d3e;
  bottom: -15%;
  right: -10%;
  animation-delay: -5s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: #2a6f58;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -9s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.15); }
}

/* Capa de Formas Geométricas 3D Poliédricas en TODA la página */
.geo-shapes-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.geo-shape {
  position: absolute;
  transition: transform 0.25s cubic-bezier(0.1, 0.9, 0.2, 1);
  will-change: transform;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

/* ZONA 1: HERO / PORTADA (Poliedros 3D Plata & Esmeralda) */
.geo-wireframe-1 {
  top: 40px;
  left: 2%;
  width: 540px;
  height: 540px;
  opacity: 0.45;
  animation: floatGeoSlow 32s infinite alternate ease-in-out;
}

.geo-poly-hero-emerald {
  top: 90px;
  left: 22%;
  width: 250px;
  height: 250px;
  opacity: 0.85;
  animation: floatGeoSlow 28s infinite alternate ease-in-out;
}

.geo-poly-hero-silver {
  top: 440px;
  left: 8%;
  width: 210px;
  height: 210px;
  opacity: 0.8;
  animation: floatGeoSlow 34s infinite alternate ease-in-out;
  animation-delay: -6s;
}

.geo-poly-extra-hero {
  opacity: 0.85;
  animation: floatGeoSlow 30s infinite alternate ease-in-out;
  animation-delay: -10s;
}

.geo-tri-hero-1 {
  top: 260px;
  left: 36%;
  width: 130px;
  height: 130px;
  opacity: 0.8;
  animation: floatGeoSlow 24s infinite alternate ease-in-out;
  animation-delay: -4s;
}

/* ZONA 2: SERVICIO TÉCNICO */
.geo-rect-tech-emerald {
  top: 1050px;
  right: 3%;
  width: 220px;
  height: 300px;
  opacity: 0.85;
  animation: floatGeoSlow 32s infinite alternate ease-in-out;
  animation-delay: -5s;
}

.geo-poly-tech-silver {
  top: 1350px;
  left: 2%;
  width: 220px;
  height: 220px;
  opacity: 0.8;
  animation: floatGeoSlow 36s infinite alternate ease-in-out;
  animation-delay: -12s;
}

.geo-poly-tech-extra {
  opacity: 0.85;
  animation: floatGeoSlow 30s infinite alternate ease-in-out;
  animation-delay: -8s;
}

.geo-tri-tech-silver {
  top: 1650px;
  right: 25%;
  width: 130px;
  height: 130px;
  opacity: 0.8;
  animation: floatGeoSlow 26s infinite alternate ease-in-out;
}

/* ZONA 3: REPUESTOS ORIGINALES */
.geo-wireframe-parts {
  top: 2050px;
  left: -2%;
  width: 460px;
  height: 460px;
  opacity: 0.4;
  animation: floatGeoSlow 38s infinite alternate ease-in-out;
}

.geo-rect-parts-silver {
  top: 2250px;
  right: 4%;
  width: 240px;
  height: 280px;
  opacity: 0.8;
  animation: floatGeoSlow 30s infinite alternate ease-in-out;
  animation-delay: -9s;
}

.geo-poly-parts-extra {
  opacity: 0.8;
  animation: floatGeoSlow 34s infinite alternate ease-in-out;
  animation-delay: -14s;
}

.geo-tri-parts-emerald {
  top: 2550px;
  left: 22%;
  width: 140px;
  height: 140px;
  opacity: 0.85;
  animation: floatGeoSlow 28s infinite alternate ease-in-out;
}

/* ZONA 4: DESARROLLO DE SOFTWARE */
.geo-poly-soft-emerald {
  top: 3050px;
  right: 5%;
  width: 240px;
  height: 240px;
  opacity: 0.85;
  animation: floatGeoSlow 32s infinite alternate ease-in-out;
}

.geo-poly-soft-extra {
  opacity: 0.8;
  animation: floatGeoSlow 36s infinite alternate ease-in-out;
  animation-delay: -11s;
}

.geo-rect-soft-emerald {
  top: 3350px;
  left: 3%;
  width: 230px;
  height: 290px;
  opacity: 0.85;
  animation: floatGeoSlow 34s infinite alternate ease-in-out;
  animation-delay: -13s;
}

.geo-tri-soft-silver {
  top: 3650px;
  right: 28%;
  width: 150px;
  height: 150px;
  opacity: 0.8;
  animation: floatGeoSlow 26s infinite alternate ease-in-out;
}

/* ZONA 5: COTIZADOR & UBICACIÓN / FOOTER */
.geo-wireframe-footer {
  top: 4150px;
  right: -3%;
  width: 480px;
  height: 480px;
  opacity: 0.4;
  animation: floatGeoSlow 40s infinite alternate ease-in-out;
}

.geo-poly-footer-silver {
  top: 4350px;
  left: 4%;
  width: 250px;
  height: 250px;
  opacity: 0.8;
  animation: floatGeoSlow 32s infinite alternate ease-in-out;
}

.geo-poly-footer-extra {
  opacity: 0.85;
  animation: floatGeoSlow 35s infinite alternate ease-in-out;
  animation-delay: -7s;
}

.geo-rect-footer-silver {
  top: 4650px;
  right: 6%;
  width: 220px;
  height: 280px;
  opacity: 0.8;
  animation: floatGeoSlow 36s infinite alternate ease-in-out;
  animation-delay: -8s;
}

.geo-tri-footer-emerald {
  top: 4950px;
  right: 32%;
  width: 130px;
  height: 130px;
  opacity: 0.85;
  animation: floatGeoSlow 28s infinite alternate ease-in-out;
}

/* Red de Líneas Conectoras en Movimiento entre Poliedros */
.geo-wireframe-lines {
  position: absolute;
  width: 100%;
  max-width: 1240px;
  height: 800px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
  left: 50%;
  transform: translateX(-50%);
}

.connecting-line {
  stroke-dasharray: 12 8;
  animation: lineDashFlow 16s infinite linear;
}

.connecting-line-alt {
  stroke-dasharray: 6 10;
  animation: lineDashFlowReverse 20s infinite linear;
}

@keyframes lineDashFlow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 200;
  }
}

@keyframes lineDashFlowReverse {
  0% {
    stroke-dashoffset: 200;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Red Triangulada Low-Poly (Plexus Constellation Mesh) */
.geo-triangulated-mesh {
  position: absolute;
  height: 900px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  animation: floatGeoSlow 40s infinite alternate ease-in-out;
}

.connecting-mesh {
  animation: meshPulse 8s infinite alternate ease-in-out;
}

@keyframes meshPulse {
  0% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.55;
  }
  100% {
    opacity: 0.3;
  }
}

/* Animación Lenta y Suave de Flotación y Rotación 3D para Poliedros */
@keyframes floatGeoSlow {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(30px, -45px, 0) rotate(12deg);
  }
  100% {
    transform: translate3d(-25px, -85px, 0) rotate(-10deg);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--emerald-dark);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--emerald-accent);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Badges estilo Liquid Glass */
/* Badges estilo Cristal Líquido Plateado (Silver Liquid Glass) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 22px;
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.28) 0%, rgba(148, 163, 184, 0.18) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.badge-emerald {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.32) 0%, rgba(52, 211, 153, 0.22) 100%);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--emerald-bright);
}

.badge-whatsapp {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.32) 0%, rgba(37, 211, 102, 0.22) 100%);
  color: var(--accent-whatsapp);
  border-color: rgba(255, 255, 255, 0.6);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, var(--silver-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Botones estilo Cristal Líquido Plateado (Silver Liquid Glass) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.5px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.92) 0%, rgba(203, 213, 225, 0.82) 50%, rgba(148, 163, 184, 0.88) 100%);
  color: #051610;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 1);
  font-weight: 800;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, rgba(226, 232, 240, 0.95) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(226, 232, 240, 0.35), inset 0 1px 2px rgba(255, 255, 255, 1);
  color: #000000;
}

.btn-emerald {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.35) 0%, rgba(19, 78, 56, 0.85) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.btn-emerald:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(52, 211, 153, 0.8) 100%);
  color: #051610;
  transform: translateY(-3px);
  border-color: #ffffff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.35) 0%, rgba(37, 211, 102, 0.85) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(37, 211, 102, 0.95) 100%);
  color: #051610;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  border-color: #ffffff;
}

.btn-outline {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.22) 0%, rgba(148, 163, 184, 0.15) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.4) 0%, rgba(203, 213, 225, 0.3) 100%);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(226, 232, 240, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 50px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-whatsapp);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(8deg);
  background: var(--accent-whatsapp-hover);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--accent-whatsapp);
  opacity: 0.6;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   HEADER & NAVBAR LIQUID GLASS CON SUBMENUS DESPLEGABLES
   ========================================================================== */
/* ==========================================================================
   HEADER & NAVBAR CRISTAL LÍQUIDO PLATEADO (SILVER LIQUID GLASSMORPHISM)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-normal);
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.88) 0%, rgba(203, 213, 225, 0.78) 50%, rgba(148, 163, 184, 0.85) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.header .container {
  max-width: 1360px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.navbar nav {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Tarjeta / Badge Destacada del Logo */
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 1px 2px rgba(255, 255, 255, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.logo:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), inset 0 1px 2px rgba(255, 255, 255, 1);
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.85);
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  transition: var(--transition-fast);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  line-height: 1;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #051610;
  background: rgba(255, 255, 255, 0.4);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: #0a261c;
  transition: var(--transition-fast);
  border-radius: 3px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 70%;
}

/* Dropdown Submenú General */
.nav-dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Badge de Teléfono y WhatsApp Proporcionado */
.header-phone-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 8px 18px;
  background: rgba(5, 22, 16, 0.85);
  border: 1.5px solid var(--emerald-bright);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

.header-phone-badge:hover {
  background: rgba(19, 78, 56, 0.95);
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.75), inset 0 1px 2px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px) scale(1.03);
  color: #ffffff;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 600px;
  background: rgba(10, 38, 28, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(226, 232, 240, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 35px rgba(52, 211, 153, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 120;
}

.dropdown-menu-sm {
  width: 440px;
}

.nav-dropdown-item:hover .dropdown-menu,
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-header {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--emerald-bright);
  font-weight: 700;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.dropdown-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(5, 22, 16, 0.5);
  border: 1px solid rgba(226, 232, 240, 0.08);
  transition: var(--transition-fast);
}

.dropdown-link:hover {
  background: rgba(19, 78, 56, 0.65);
  border-color: var(--glass-border-hover);
  transform: translateX(4px);
}

.dropdown-link i {
  font-size: 1.4rem;
  color: var(--emerald-bright);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.dropdown-link strong {
  display: block;
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.2;
}

.dropdown-link small {
  display: block;
  font-size: 0.75rem;
  color: var(--silver-muted);
  margin-top: 0.1rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  color: #0f172a;
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 85px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 85px);
  overflow-y: auto;
  background: rgba(10, 38, 28, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.mobile-drawer.active {
  display: flex;
}

.mobile-sublinks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-sublink {
  font-size: 0.85rem;
  color: var(--silver-muted);
  padding: 0.4rem 0.6rem;
  background: rgba(5, 22, 16, 0.5);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   HERO SECTION & SLIDER CAROUSEL
   ========================================================================== */
.hero {
  padding-top: 150px;
  padding-bottom: 90px;
  position: relative;
}

.hero-slider-container {
  position: relative;
  width: 100%;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(35px) scale(0.98);
  transition: all 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

/* Flechas de Navegación Lateral en Cristal Líquido (Formato Pastilla Esquina Externa) */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 35;
  width: 42px;
  height: 78px;
  border-radius: 40px; /* Formato Pastilla */
  background: linear-gradient(135deg, rgba(10, 38, 28, 0.92) 0%, rgba(19, 78, 56, 0.95) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-arrow:hover {
  background: linear-gradient(135deg, #ffffff 0%, var(--emerald-bright) 100%);
  color: #051610;
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 16px 40px rgba(52, 211, 153, 0.55), inset 0 1px 2px rgba(255, 255, 255, 1);
}

.hero-arrow-prev {
  left: -58px;
}

.hero-arrow-next {
  right: -58px;
}

/* Indicadores Puntos (Dots) */
.hero-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  position: relative;
  z-index: 20;
}

.hero-slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(226, 232, 240, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dots .dot.active, .hero-slider-dots .dot:hover {
  width: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, var(--emerald-bright) 100%);
  border-color: #ffffff;
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.7);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 5;
}

.hero-title {
  font-size: 3.2rem;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.95), 0 0 35px rgba(5, 22, 16, 0.95);
}

.hero-description {
  font-size: 1.1rem;
  color: #f8fafc;
  max-width: 560px;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 25px rgba(5, 22, 16, 0.95);
  font-weight: 500;
  background: rgba(5, 22, 16, 0.45);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-description strong {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(52, 211, 153, 0.6);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  margin-top: 1rem;
}

.stat-item h4 {
  font-size: 1.8rem;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.stat-item p {
  font-size: 0.85rem;
  color: #cbd5e1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-visual {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(52, 211, 153, 0.25);
  transition: var(--transition-normal);
}

.hero-img-wrapper:hover {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 45px rgba(52, 211, 153, 0.4);
}

.hero-img-wrapper img,
.hero-img-wrapper video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img-wrapper:hover img,
.hero-img-wrapper:hover video {
  transform: scale(1.03);
}

.hero-card-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(5, 22, 16, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-card-float i {
  font-size: 2rem;
  color: var(--emerald-bright);
}

/* ==========================================================================
   SECTIONS GENERAL LIQUID GLASS
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-title {
  font-size: 2.4rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--silver-muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   SERVICIO TECNICO - TARJETAS LIQUID GLASS CON ACORDEON (9 CATEGORIAS)
   ========================================================================== */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
}

.service-card.highlight {
  border-color: var(--emerald-bright);
  box-shadow: 0 0 35px rgba(52, 211, 153, 0.35);
  transform: translateY(-4px);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  background: var(--glass-card-hover);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 20px rgba(226, 232, 240, 0.05);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(19, 78, 56, 0.4);
  color: var(--emerald-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border: 1px solid var(--glass-border);
}

.service-title {
  font-size: 1.35rem;
  color: var(--silver);
}

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

.symptoms-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.symptom-tag {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.18) 0%, rgba(148, 163, 184, 0.1) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

/* Acordeón de Diagnóstico estilo Cristal Líquido Plateado */
.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.18) 0%, rgba(148, 163, 184, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  margin-top: auto;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.accordion-toggle:hover, .accordion-toggle.active {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.35) 0%, rgba(203, 213, 225, 0.25) 100%);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.accordion-toggle i {
  transition: transform 0.3s ease;
}

.accordion-toggle.active i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0;
}

.accordion-content.open {
  max-height: 500px;
  padding-top: 1rem;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.diagnosis-item {
  background: rgba(5, 22, 16, 0.6);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  border-left: 3px solid var(--emerald-bright);
}

.diagnosis-item h5 {
  font-size: 0.9rem;
  color: var(--silver);
  margin-bottom: 0.2rem;
}

.diagnosis-item p {
  color: var(--silver-muted);
}

/* ==========================================================================
   SECCION DE REPUESTOS ORIGINALES
   ========================================================================== */
.repuestos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.repuesto-card-main {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.4s ease;
}

.repuesto-card-main.highlight {
  border-color: var(--emerald-bright);
  box-shadow: 0 0 35px rgba(52, 211, 153, 0.35);
}

.repuesto-card-main:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  background: var(--glass-card-hover);
}

.repuestos-list-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.repuestos-list-features li {
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--silver);
  background: rgba(5, 22, 16, 0.4);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
}

.repuestos-list-features li i {
  color: var(--emerald-bright);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

/* ==========================================================================
   DESARROLLO DE SOFTWARE PARA EMPRENDIMIENTOS
   ========================================================================== */
.software-section {
  position: relative;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.18) 0%, rgba(148, 163, 184, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--silver);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.tab-btn:hover {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.35) 0%, rgba(203, 213, 225, 0.25) 100%);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.92) 0%, rgba(203, 213, 225, 0.82) 100%);
  color: #051610;
  border-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 1);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.solution-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.4s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  background: var(--glass-card-hover);
}

.solution-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(19, 78, 56, 0.4);
  color: var(--emerald-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid var(--glass-border);
}

.solution-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.solution-features li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--silver);
}

.solution-features li i {
  color: var(--emerald-bright);
}

/* Demo Simulator Box Liquid Glass */
.demo-simulator {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-main);
}

.simulator-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.simulator-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 22, 16, 0.4);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.feature-toggle span {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Custom Switch Toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(148, 163, 184, 0.3);
  transition: .3s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--silver);
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--emerald-glow);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.simulator-preview {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-main);
}

.simulator-preview img,
.simulator-preview video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.simulator-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 22, 16, 0.85);
  backdrop-filter: blur(6px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.live-badge {
  align-self: flex-start;
  background: rgba(52, 211, 153, 0.2);
  color: var(--emerald-bright);
  border: 1px solid rgba(52, 211, 153, 0.4);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.preview-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.preview-feature-tag {
  background: rgba(19, 78, 56, 0.4);
  color: var(--silver);
  border: 1px solid var(--glass-border);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

/* ==========================================================================
   COTIZADOR INTERACTIVO WHATSAPP DUAL LIQUID GLASS
   ========================================================================== */
.calculator-box {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-main);
  max-width: 900px;
  margin: 0 auto;
}

.calc-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.calc-type-btn {
  padding: 1.25rem;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.18) 0%, rgba(148, 163, 184, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--silver-muted);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition-normal);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.calc-type-btn.active, .calc-type-btn:hover {
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.92) 0%, rgba(203, 213, 225, 0.82) 100%);
  border-color: #ffffff;
  color: #051610;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 1);
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(5, 22, 16, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: var(--silver);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-control:focus {
  border-color: var(--silver);
  background: rgba(5, 22, 16, 0.8);
  box-shadow: 0 0 15px rgba(226, 232, 240, 0.15), inset 0 1px 0 rgba(226, 232, 240, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.calc-summary-box {
  background: rgba(5, 22, 16, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whatsapp-preview-text {
  background: rgba(5, 22, 16, 0.7);
  border: 1px dashed var(--glass-border);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--emerald-bright);
  font-family: monospace;
  white-space: pre-line;
}

/* ==========================================================================
   GARANTIA Y UBICACION FISICA
   ========================================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.trust-badges-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-badge-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  color: var(--emerald-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid var(--glass-border);
}

.location-box {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-main);
}

.location-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.info-item i {
  color: var(--emerald-bright);
  font-size: 1.2rem;
  width: 24px;
}

.map-placeholder {
  width: 100%;
  height: 250px;
  background: rgba(5, 22, 16, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-muted);
  border-top: 1px solid var(--glass-border);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: rgba(5, 22, 16, 0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--silver-muted);
  margin-top: 1rem;
  max-width: 360px;
  font-size: 0.95rem;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--silver);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--silver-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--silver);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--silver-muted);
  font-size: 0.875rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1400px) {
  .hero-arrow-prev {
    left: -20px;
  }
  .hero-arrow-next {
    right: -20px;
  }
}

@media (max-width: 1150px) {
  .hero-slider-arrow {
    top: auto;
    bottom: -65px;
    transform: none;
    height: 44px;
    width: 65px;
    border-radius: 22px;
  }
  .hero-slider-arrow:hover {
    transform: scale(1.08);
  }
  .hero-arrow-prev {
    left: calc(50% - 80px);
  }
  .hero-arrow-next {
    right: calc(50% - 80px);
  }
  .hero-slider-dots {
    margin-top: 5.5rem;
  }
}

@media (max-width: 992px) {
  .dropdown-menu {
    width: 90vw;
  }
  .repuestos-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .demo-simulator {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .dropdown-menu {
    display: none;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .calc-type-selector {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Redes Sociales & Botones de Contacto Liquid Glass */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--silver);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-normal);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.social-icon-btn:hover {
  background: rgba(19, 78, 56, 0.7);
  border-color: var(--emerald-bright);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(52, 211, 153, 0.3);
}

/* Animación de Parpadeo / Resplandor Líquido (Glow Pulse) */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.8), 0 0 10px rgba(52, 211, 153, 0.5);
    border-color: var(--emerald-bright);
  }
  50% {
    box-shadow: 0 0 25px 8px rgba(52, 211, 153, 0.5), 0 0 20px rgba(255, 255, 255, 0.8);
    border-color: #ffffff;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.8), 0 0 10px rgba(52, 211, 153, 0.5);
    border-color: var(--emerald-bright);
  }
}

.header-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  background: rgba(10, 38, 28, 0.85);
  border: 2px solid var(--emerald-bright);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  backdrop-filter: blur(12px);
  animation: pulseGlow 1.8s infinite ease-in-out;
  transition: var(--transition-fast);
  letter-spacing: 0.5px;
}

.header-phone-badge i {
  color: var(--accent-whatsapp);
  font-size: 1.2rem;
  animation: pulse 1.2s infinite alternate;
}

.header-phone-badge:hover {
  transform: scale(1.06);
  background: var(--accent-whatsapp);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
}
.header-phone-badge:hover i {
  color: #ffffff;
}


