/* ===========================================
   1. VARIABLES Y RESET
   =========================================== */
:root {
  /* Paleta CMYK - Colores Corporativos */
  --cyan: #00bcd4;
  --magenta: #e91e63;
  --yellow: #ffeb3b;
  --black: #212121;
  --white: #ffffff;
  
  /* Colores de acento */
  --cyan-light: #80deea;
  --cyan-dark: #008ba3;
  --magenta-light: #f48fb1;
  --magenta-dark: #b0003a;
  --yellow-light: #fff59d;
  --yellow-dark: #fbc02d;
  
  /* Gradientes CMYK */
  --gradient-cyan: linear-gradient(135deg, var(--cyan), var(--cyan-light));
  --gradient-magenta: linear-gradient(135deg, var(--magenta), var(--magenta-light));
  --gradient-yellow: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  --gradient-black: linear-gradient(135deg, var(--black), #424242);
  --gradient-cmyk: linear-gradient(135deg, 
    var(--cyan) 0%, 
    var(--magenta) 25%, 
    var(--yellow) 50%, 
    var(--black) 75%
  );
  
  /* Sombras modernas */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-cyan: 0 4px 20px rgba(0, 188, 212, 0.3);
  --shadow-magenta: 0 4px 20px rgba(233, 30, 99, 0.3);
  --shadow-yellow: 0 4px 20px rgba(255, 235, 59, 0.3);
  
  /* Espaciado */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;
  
  /* Bordes */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-round: 50%;
  
  /* Tipografía */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
  --font-size-5xl: 3.5rem;
  
  /* Transiciones */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Z-index */
  --z-back: -1;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  --z-max: 9999;
}

/* Reset moderno */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Selección personalizada */
::selection {
  background-color: var(--cyan);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--cyan);
  color: var(--white);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--white);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-cyan);
  border-radius: var(--radius-lg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cyan-dark);
}

/* ===========================================
   2. TIPOGRAFÍA Y UTILIDADES
   =========================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

strong {
  font-weight: 700;
}

.cyan-text { color: var(--cyan); }
.magenta-text { color: var(--magenta); }
.yellow-text { color: var(--yellow); }
.black-text { color: var(--black); }
.white-text { color: var(--white); }

.cyan-bg { background-color: var(--cyan); }
.magenta-bg { background-color: var(--magenta); }
.yellow-bg { background-color: var(--yellow); }
.black-bg { background-color: var(--black); }
.white-bg { background-color: var(--white); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===========================================
   3. ANIMACIONES Y KEYFRAMES
   =========================================== */

/* Fade In */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s var(--transition-bounce) forwards;
}

/* Slide In Left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

/* Slide In Right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}

/* Pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Float */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.float {
  animation: float 3s ease-in-out infinite;
}

/* Glow */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 188, 212, 0.8);
  }
}

.glow {
  animation: glow 2s ease-in-out infinite;
}

/* Rotate */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotate {
  animation: rotate 20s linear infinite;
}

/* Wave */
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.wave {
  animation: wave 20s linear infinite;
}

/* CMYK Colors Animation */
@keyframes cmykColors {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.cmyk-animation {
  background: linear-gradient(90deg, 
    var(--cyan), 
    var(--magenta), 
    var(--yellow), 
    var(--black)
  );
  background-size: 400% 400%;
  animation: cmykColors 15s ease infinite;
}

/* ===========================================
   4. BARRA DE URGENCIA (URGENCY BAR)
   =========================================== */
.urgency-bar {
  background: var(--gradient-cmyk);
  color: var(--white);
  padding: var(--space-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-max);
  transform: translateY(-100%);
  animation: slideInDown 0.6s ease forwards;
  animation-delay: 0.5s;
}

@keyframes slideInDown {
  to {
    transform: translateY(0);
  }
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.urgency-icon {
  font-size: 1.2rem;
  animation: pulse 1.5s infinite;
}

.urgency-text {
  flex: 1;
  font-weight: 600;
  text-align: center;
}

.urgency-countdown {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

#countdownTimer {
  font-family: monospace;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.urgency-cta {
  background: var(--white);
  color: var(--magenta);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.urgency-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.urgency-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 var(--space-xs);
  transition: transform var(--transition-fast);
}

.urgency-close:hover {
  transform: scale(1.2);
}

/* ===========================================
   5. NAVBAR
   =========================================== */
/* ===== VARIABLES CMYK ===== */
:root {
  --cyan: #00bcd4;
  --cyan-dark: #0097a7;
  --cyan-light: rgba(0, 188, 212, 0.15);
  --magenta: #e91e63;
  --magenta-dark: #c2185b;
  --magenta-light: rgba(233, 30, 99, 0.15);
  --yellow: #ffeb3b;
  --yellow-dark: #fbc02d;
  --yellow-light: rgba(255, 235, 59, 0.15);
  --black: #212121;
  --black-dark: #000000;
  --white: #ffffff;
  
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-cyan: 0 5px 20px rgba(0, 188, 212, 0.3);
  --z-fixed: 1000;
  --z-modal: 1100;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;
}

/* ===== NAVBAR BASE ===== */
/* ===== VARIABLES CMYK ===== */
:root {
  --cyan: #00bcd4;
  --cyan-dark: #0097a7;
  --cyan-light: rgba(0, 188, 212, 0.15);
  --magenta: #e91e63;
  --magenta-dark: #c2185b;
  --magenta-light: rgba(233, 30, 99, 0.15);
  --yellow: #ffeb3b;
  --yellow-dark: #fbc02d;
  --yellow-light: rgba(255, 235, 59, 0.15);
  --black: #212121;
  --black-dark: #000000;
  --white: #ffffff;
  
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-cyan: 0 5px 20px rgba(0, 188, 212, 0.3);
  --z-fixed: 1000;
  --z-modal: 1100;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;
}

/* ===== NAVBAR BASE ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: var(--z-fixed);
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
  transition: transform var(--transition-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(15px);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  position: relative;
}

/* ===== LOGO CON BRILLO ===== */
.logo {
  position: relative;
  z-index: var(--z-modal);
}

.logo img {
  height: 50px;
  width: auto;
  transition: all var(--transition-base);
  filter: 
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.8))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover img {
  transform: scale(1.08) rotate(-1deg);
  filter: 
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.9))
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* ===== MENÚ ESCRITORIO (SIN CAMBIOS) ===== */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--space-xs);
  font-weight: 600;
  color: var(--black);
  transition: color var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.link-text {
  position: relative;
  z-index: 1;
  transition: transform var(--transition-fast);
}

.link-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cyan);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
}

.nav-link:hover .link-text {
  transform: translateY(-2px);
}

.nav-link:hover .link-hover {
  transform: translateX(0);
}

.nav-link[data-color="cyan"] .link-hover {
  background: var(--cyan);
}

.nav-link[data-color="magenta"] .link-hover {
  background: var(--magenta);
}

.nav-link[data-color="yellow"] .link-hover {
  background: var(--yellow);
}

.nav-link[data-color="black"] .link-hover {
  background: var(--black);
}

/* ===== BOTÓN DE CONTACTO ===== */
.contact-container {
  display: flex;
  align-items: center;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-pill);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-cyan);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    var(--shadow-cyan),
    0 8px 25px rgba(0, 188, 212, 0.4);
}

.btn-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

/* ===== LÍNEA CMYK ===== */
.cmyk-line {
  display: flex;
  height: 4px;
  position: relative;
  overflow: hidden;
}

.cmyk-color {
  flex: 1;
  position: relative;
  transition: transform 0.3s ease;
}

.cmyk-color::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.8s ease;
}

.cmyk-line:hover .cmyk-color::after {
  left: 100%;
}

.cmyk-color.cyan { 
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}
.cmyk-color.magenta { 
  background: linear-gradient(90deg, var(--magenta), var(--magenta-dark));
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.3);
}
.cmyk-color.yellow { 
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  box-shadow: 0 0 10px rgba(255, 235, 59, 0.3);
}
.cmyk-color.black { 
  background: linear-gradient(90deg, var(--black), var(--black-dark));
  box-shadow: 0 0 10px rgba(33, 33, 33, 0.3);
}

.cmyk-line:hover .cmyk-color {
  transform: translateY(-1px);
}

/* ===== EFECTO CHISPAS ===== */
.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  animation: sparkFly 0.6s ease-out forwards;
}

@keyframes sparkFly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx, 0), var(--ty, -20px)) scale(0);
    opacity: 0;
  }
}

/* ===== OVERLAY PARA MÓVIL ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== BOTÓN HAMBURGUESA MODERNO ===== */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  z-index: var(--z-modal);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.mobile-menu-btn:hover {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 1);
  box-shadow: 
    var(--shadow-md),
    0 0 0 3px rgba(0, 188, 212, 0.1);
  transform: scale(1.05);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

.menu-bar {
  display: block;
  width: 24px;
  height: 3px;
  margin: 3px 0;
  transition: all var(--transition-base);
  border-radius: 3px;
  position: relative;
  transform-origin: center;
}

/* Colores CMYK con efecto neón */
.mobile-menu-btn .menu-bar:nth-child(1) {
  background-color: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.mobile-menu-btn .menu-bar:nth-child(2) {
  background-color: var(--magenta);
  box-shadow: 0 0 8px var(--magenta);
}

.mobile-menu-btn .menu-bar:nth-child(3) {
  background-color: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
}

/* Animación a X con efecto especial */
.mobile-menu-btn.active {
  transform: rotate(180deg);
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 1);
}

.mobile-menu-btn.active .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
  width: 24px;
  background-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.mobile-menu-btn.active .menu-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
  width: 24px;
  background-color: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
}

/* ===== RESPONSIVE REDISEÑADO - MODERNO E INTERACTIVO ===== */

/* Tablets y móviles grandes */
@media screen and (max-width: 992px) {
  .mobile-menu-btn {
    display: flex;
    order: 3; /* Mover a la derecha */
    margin-left: 15px;
  }
  
  .mobile-overlay {
    display: block;
  }
  
  /* Reordenar elementos del navbar para móvil */
  .navbar-content {
    justify-content: space-between;
  }
  
  /* Logo centrado */
  .logo {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Botón WhatsApp en navbar */
  .contact-container {
    order: 1;
    position: static; /* Remover posición fija */
    animation: none;
    margin-right: 15px;
  }
  
  /* Ajustar botón WhatsApp para navbar */
  .contact-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    animation: none;
    box-shadow: var(--shadow-cyan);
    width: auto;
  }
  
  .contact-btn .btn-text {
    display: none; /* Ocultar texto en tablet */
  }
  
  .contact-btn:hover {
    animation: none;
    transform: translateY(-2px);
  }
  
  .contact-btn .btn-icon {
    margin: 0;
    font-size: 1.2rem;
  }
  
  /* ===== MENÚ MÓVIL CENTRADO - CORRECCIÓN APLICADA ===== */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 340px;
    max-width: 90vw;
    height: 100vh;
    background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    flex-direction: column;
    justify-content: center; /* Cambiado de flex-start a center */
    align-items: center;
    padding: 0;
    transition: right var(--transition-slow) cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
      -5px 0 40px rgba(0, 0, 0, 0.15),
      0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: var(--z-modal);
    overflow: hidden;
    display: flex;
    border-left: 5px solid;
    border-image: linear-gradient(to bottom, var(--cyan), var(--magenta), var(--yellow)) 1;
  }
  
  .nav-menu.active {
    right: 0;
    animation: menuSlideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  @keyframes menuSlideIn {
    0% {
      right: -100%;
      opacity: 0;
      transform: scale(0.95) rotateX(-10deg);
    }
    100% {
      right: 0;
      opacity: 1;
      transform: scale(1) rotateX(0);
    }
  }
  
  /* Cabecera del menú móvil */
  .nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--cyan-light), var(--magenta-light));
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    z-index: 0;
  }
  
  /* Logo dentro del menú móvil - POSICIONADO CORRECTAMENTE */
  .nav-menu .logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: auto;
    display: flex;
    justify-content: center;
    padding: 0;
    order: 0;
    position: absolute !important;
  }
  
  .nav-menu .logo img {
    height: 45px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  }
  
  /* Lista del menú móvil - CENTRADA VERTICALMENTE */
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 40px 0; /* Más padding vertical para centrar mejor */
    width: 100%;
    margin: 80px 0 0 0; /* Espacio para el logo */
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
  }
  
  .nav-item {
    width: 100%;
    margin: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
  }
  
  /* Animación de entrada para items del menú */
  .nav-menu.active .nav-item {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Delay escalonado para animación */
  .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
  .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
  .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
  .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
  
  /* Enlaces del menú móvil - MEJOR CENTRADO */
  .nav-link {
    padding: 18px 30px;
    font-size: 1.15rem;
    width: 100%;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    flex-direction: row;
    gap: 15px;
    position: relative;
    overflow: visible;
    transition: all var(--transition-fast);
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.6);
    padding-left: 40px;
    transform: translateX(5px);
  }
  
  .link-text {
    font-size: 1.15rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: flex-start;
  }
  
  .link-text::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.6;
    transition: all var(--transition-fast);
  }
  
  .nav-link:hover .link-text::before {
    transform: scale(1.3);
    opacity: 1;
  }
  
  .link-hover {
    display: none; /* Ocultamos la línea en móvil */
  }
  
  /* Colores específicos para móvil con efectos */
  .nav-link[data-color="cyan"] {
    color: var(--cyan-dark);
  }
  
  .nav-link[data-color="cyan"]:hover {
    background: var(--cyan-light);
    box-shadow: inset 4px 0 0 var(--cyan);
  }
  
  .nav-link[data-color="cyan"] .link-text::before {
    background: var(--cyan);
  }
  
  .nav-link[data-color="magenta"] {
    color: var(--magenta-dark);
  }
  
  .nav-link[data-color="magenta"]:hover {
    background: var(--magenta-light);
    box-shadow: inset 4px 0 0 var(--magenta);
  }
  
  .nav-link[data-color="magenta"] .link-text::before {
    background: var(--magenta);
  }
  
  .nav-link[data-color="yellow"] {
    color: var(--yellow-dark);
  }
  
  .nav-link[data-color="yellow"]:hover {
    background: var(--yellow-light);
    box-shadow: inset 4px 0 0 var(--yellow);
  }
  
  .nav-link[data-color="yellow"] .link-text::before {
    background: var(--yellow);
  }
  
  .nav-link[data-color="black"] {
    color: var(--black-dark);
  }
  
  .nav-link[data-color="black"]:hover {
    background: var(--black-light);
    box-shadow: inset 4px 0 0 var(--black);
  }
  
  .nav-link[data-color="black"] .link-text::before {
    background: var(--black);
  }
  
  /* Logo en navbar móvil */
  .logo img {
    height: 45px;
    filter: 
      drop-shadow(0 0 6px rgba(255, 255, 255, 0.7))
      drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }
  
  /* Footer del menú móvil */
  .nav-menu::after {
    content: 'NEO GRAFIK BOGOTÁ';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
}

/* ===== MÓVILES MEDIANOS ===== */
@media screen and (max-width: 768px) {
  .navbar-content {
    padding: 12px 0;
  }
  
  .nav-menu {
    width: 320px;
  }
  
  .nav-link {
    padding: 18px 25px;
    font-size: 1.1rem;
  }
  
  .contact-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  .logo img {
    height: 42px;
  }
  
  .mobile-menu-btn {
    width: 46px;
    height: 46px;
  }
}

/* ===== MÓVILES PEQUEÑOS ===== */
@media screen and (max-width: 576px) {
  .navbar-content {
    padding: 10px 0;
  }
  
  .logo img {
    height: 38px;
    filter: 
      drop-shadow(0 0 5px rgba(255, 255, 255, 0.6))
      drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
  }
  
  .nav-menu {
    width: 300px;
    border-left-width: 4px;
    justify-content: flex-start; /* En móviles pequeños, empezar desde arriba */
    padding-top: 80px; /* Espacio para el logo */
  }
  
  .nav-menu .logo {
    top: 25px;
  }
  
  .nav-list {
    margin-top: 0;
    padding: 20px 0;
  }
  
  .nav-link {
    padding: 16px 20px;
    font-size: 1.05rem;
  }
  
  .link-text {
    font-size: 1.05rem;
  }
  
  .link-text::before {
    width: 7px;
    height: 7px;
  }
  
  .contact-btn {
    padding: 9px 15px;
    font-size: 0.8rem;
  }
  
  .mobile-menu-btn {
    width: 44px;
    height: 44px;
  }
  
  .menu-bar {
    width: 22px;
    height: 2.5px;
    margin: 2.5px 0;
  }
}

/* ===== MÓVILES MUY PEQUEÑOS ===== */
@media screen and (max-width: 380px) {
  .nav-menu {
    width: 100%;
    max-width: 100%;
    border-left: none;
    border-top: 4px solid;
    border-image: linear-gradient(to right, var(--cyan), var(--magenta), var(--yellow)) 1;
  }
  
  .nav-menu::before {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
  
  .nav-link {
    padding: 15px 20px;
  }
  
  .contact-btn {
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    width: auto;
    height: auto;
  }
  
  .contact-btn .btn-icon {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .logo img {
    height: 35px;
  }
  
  .mobile-menu-btn {
    width: 42px;
    height: 42px;
  }
}

/* ===== BOTÓN WHATSAPP FLOTANTE EXTRA (opcional) ===== */
/* Solo se activa cuando el menú está abierto */
.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1101;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float.active {
  display: block;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

/* ===== EFECTO RIPPLE ===== */
@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===== EFECTO DE ACTIVO EN MÓVIL ===== */
.nav-link.active {
  background: rgba(0, 188, 212, 0.1);
}

.nav-link.active .link-text {
  color: var(--cyan-dark);
  font-weight: 700;
}

.nav-link.active .link-text::before {
  transform: scale(1.5);
  opacity: 1;
  box-shadow: 0 0 8px currentColor;
}
/* ===========================================
   6. SLIDER DE SERVICIOS
   =========================================== */
.neo-slider-section {
  padding: var(--space-xxl) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.cmyk-header {
  display: flex;
  height: 8px;
  margin-bottom: var(--space-xl);
}

.cmyk-stripe {
  flex: 1;
}

.cmyk-stripe.cyan { background: var(--cyan); }
.cmyk-stripe.magenta { background: var(--magenta); }
.cmyk-stripe.yellow { background: var(--yellow); }
.cmyk-stripe.black { background: var(--black); }

.neo-slider-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.neo-slider {
  display: flex;
  transition: transform var(--transition-slow);
}

.neo-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  opacity: 0;
  transform: translateX(50px);
  transition: all var(--transition-slow);
}

.neo-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-content {
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.3s;
}

.slide-number {
  font-size: var(--font-size-sm);
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  letter-spacing: 1px;
}

.current {
  font-size: var(--font-size-xl);
  color: var(--black);
  margin-right: 4px;
}

.slide-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

/* Título del servicio en negro */
.service-title {
  font-size: var(--font-size-3xl);
  line-height: 1.1;
  color: var(--black);
  font-weight: 800;
}

.service-description {
  font-size: var(--font-size-lg);
  color: #666;
  margin-bottom: var(--space-xl);
  max-width: 90%;
  line-height: 1.6;
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.stat {
  text-align: center;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base);
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin-bottom: var(--space-xs);
  font-family: monospace;
  transition: color 0.3s ease;
}

/* === CORRECCIÓN: CLASES DE COLOR PARA CONTADORES === */
/* Contador Cyan */
.neo-slide[data-slide="1"] .stat-number {
  color: var(--cyan) !important;
}

/* Contador Magenta */
.neo-slide[data-slide="2"] .stat-number {
  color: var(--magenta) !important;
}

/* Contador Yellow */
.neo-slide[data-slide="3"] .stat-number {
  color: var(--yellow) !important;
}

/* Contador Black - Cambiado a blanco para contraste */
.neo-slide[data-slide="4"] .stat {
  background: var(--black);
  color: var(--white);
}

.neo-slide[data-slide="4"] .stat-number {
  color: var(--white) !important;
}

.neo-slide[data-slide="4"] .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

/* === CORRECCIÓN: CLASES DE COLOR PARA ICONOS Y TEXTOS === */
/* Iconos Cyan */
.neo-slide[data-slide="1"] .feature i,
.neo-slide[data-slide="1"] .cta-note i {
  color: var(--cyan) !important;
}

/* Iconos Magenta */
.neo-slide[data-slide="2"] .feature i,
.neo-slide[data-slide="2"] .cta-note i {
  color: var(--magenta) !important;
}

/* Iconos Yellow */
.neo-slide[data-slide="3"] .feature i,
.neo-slide[data-slide="3"] .cta-note i {
  color: var(--yellow) !important;
}

/* Iconos Black - Cambiado a blanco */
.neo-slide[data-slide="4"] .feature i,
.neo-slide[data-slide="4"] .cta-note i {
  color: var(--white) !important;
}

/* Color de fondo para iconos del slide */
.service-icon.cyan-bg {
  background: var(--cyan);
}

.service-icon.magenta-bg {
  background: var(--magenta);
}

.service-icon.yellow-bg {
  background: var(--yellow);
}

.service-icon.black-bg {
  background: var(--black);
}

/* Características del servicio */
.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
}

.feature i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Texto de características en gris oscuro */
.feature-text {
  color: #444; /* Gris más oscuro */
  font-weight: 500;
  line-height: 1.4;
}

/* Texto de características en slide negro */
.neo-slide[data-slide="4"] .feature-text {
  color: var(--white);
}

.slide-visual {
  position: relative;
  animation: slideInRight 0.8s ease forwards;
  animation-delay: 0.5s;
}

.visual-wrapper {
  position: relative;
  padding: var(--space-lg);
}

/* Contenedor de imagen del servicio */
.service-image-container {
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-image-container:hover .service-image {
  transform: scale(1.05);
}

/* Overlays para imágenes */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  transition: opacity var(--transition-base);
}

.service-image-container:hover .image-overlay {
  opacity: 0.2;
}

.cyan-overlay {
  background: linear-gradient(135deg, var(--cyan), transparent);
}

.magenta-overlay {
  background: linear-gradient(135deg, var(--magenta), transparent);
}

.yellow-overlay {
  background: linear-gradient(135deg, var(--yellow), transparent);
}

/* Estilos para el dashboard de marketing digital */
.digital-visual {
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.dashboard {
  width: 320px;
  height: 220px;
  background: rgba(33, 33, 33, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.chart {
  display: flex;
  align-items: flex-end;
  gap: var(--space-md);
  height: 120px;
  margin-bottom: var(--space-lg);
}

.bar {
  flex: 1;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  animation: growBar 1.5s ease-out forwards;
}

@keyframes growBar {
  from {
    height: 0;
  }
}

.metrics {
  display: flex;
  justify-content: space-around;
  gap: var(--space-md);
}

.metric {
  text-align: center;
  flex: 1;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

/* Colores para metricas del dashboard */
.metric-value.cyan-text {
  color: var(--cyan);
}

.metric-value.magenta-text {
  color: var(--magenta);
}

.slide-actions {
  text-align: center;
}

.neo-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-size-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.neo-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  filter: blur(20px);
  opacity: 0.7;
  z-index: -1;
  animation: pulse 2s infinite;
}

.cta-note {
  margin-top: var(--space-sm);
  font-size: var(--font-size-sm);
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

/* Color de nota CTA en slide negro */
.neo-slide[data-slide="4"] .cta-note {
  color: rgba(255, 255, 255, 0.8);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.control-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-round);
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition-base);
}

.control-btn:hover {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: var(--space-md);
}

.dot {
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-base);
}

.dot.active {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.dot:hover:not(.active) {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.slider-progress {
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  margin-top: var(--space-lg);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 25%;
  transition: transform var(--transition-slow);
}

/* Animación de progreso del slider */
@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Responsive para el slider */
@media (max-width: 1024px) {
  .neo-slide {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .slide-visual {
    order: -1;
  }
  
  .service-image-container {
    height: 280px;
  }
  
  .digital-visual {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .service-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-image-container {
    height: 240px;
  }
  
  .digital-visual {
    height: 240px;
  }
  
  .dashboard {
    width: 280px;
    height: 180px;
    padding: var(--space-md);
  }
  
  .slider-dots {
    display: none;
  }
}

@media (max-width: 480px) {
  .service-stats {
    grid-template-columns: 1fr;
  }
  
  .service-image-container {
    height: 200px;
  }
  
  .digital-visual {
    height: 200px;
  }
  
  .dashboard {
    width: 240px;
    height: 150px;
  }
  
  .chart {
    height: 80px;
  }
}
/* ===========================================
   7. FORMULARIO SUPABASE
   =========================================== */

/* Variables específicas del formulario */
:root {
    --form-bg: #f8fafc;
    --form-card-bg: #ffffff;
    --form-border: #e2e8f0;
    --form-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --form-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
    --form-radius: 16px;
    --form-padding: 2rem;
}

/* Sección principal del formulario */
.modern-form-section {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Fondo decorativo */
.form-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.form-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: floatOrb 20s ease-in-out infinite;
}

.cyan-orb {
    width: 300px;
    height: 300px;
    background: var(--cyan);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.magenta-orb {
    width: 250px;
    height: 250px;
    background: var(--magenta);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.yellow-orb {
    width: 200px;
    height: 200px;
    background: var(--yellow);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, 30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
    }
    75% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

/* Contenedor principal */
.modern-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

/* Encabezado del formulario */
.form-header-modern {
    text-align: center;
    margin-bottom: var(--space-xl);
    animation: fadeInDown 0.8s ease forwards;
}

.form-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: linear-gradient(135deg, var(--magenta), var(--cyan));
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.badge-icon {
    animation: pulse 2s infinite;
}

.form-title-modern {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
    color: var(--black);
}

.title-highlight {
    display: inline-block;
    position: relative;
    padding: 0 10px;
}

.cyan-gradient-text {
    background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle-modern {
    font-size: var(--font-size-lg);
    color: #666;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

/* Estadísticas destacadas */
.highlight-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.highlight-stat {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    min-width: 250px;
    transition: transform var(--transition-base);
}

.highlight-stat:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--black);
    margin-bottom: var(--space-xs);
    font-family: 'Courier New', monospace;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: #666;
    font-weight: 600;
}

/* Grid principal del formulario */
.form-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (max-width: 1024px) {
    .form-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* Columna de beneficios */
.form-benefits-col {
    animation: slideInLeft 0.8s ease forwards;
}

.benefits-card {
    background: var(--white);
    border-radius: var(--form-radius);
    padding: var(--form-padding);
    box-shadow: var(--form-shadow);
    height: 100%;
    border: 1px solid var(--form-border);
    position: sticky;
    top: var(--space-md);
}

.benefits-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-lg);
    color: var(--black);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: #f8fafc;
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
}

.benefit-item:hover {
    transform: translateX(5px);
    background: #f1f5f9;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-content h4 {
    font-size: var(--font-size-md);
    margin-bottom: var(--space-xs);
    color: var(--black);
}

.benefit-content p {
    font-size: var(--font-size-sm);
    color: #666;
    line-height: 1.4;
}

/* Testimonio rápido */
.quick-testimonial {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), rgba(233, 30, 99, 0.05));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--cyan);
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--cyan);
    opacity: 0.3;
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-size: var(--font-size-md);
    color: #666;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 700;
    color: var(--black);
    font-size: var(--font-size-sm);
}

.author-location {
    font-size: var(--font-size-xs);
    color: #888;
}

/* Columna del formulario */
.form-wrapper-modern {
    animation: slideInRight 0.8s ease forwards;
}

.form-card {
    background: var(--form-card-bg);
    border-radius: var(--form-radius);
    box-shadow: var(--form-shadow);
    overflow: hidden;
    margin-bottom: var(--space-lg);
    border: 1px solid var(--form-border);
    transition: box-shadow var(--transition-base);
}

.form-card:hover {
    box-shadow: var(--form-shadow-hover);
}

/* Barra de colores superior */
.form-color-bar {
    display: flex;
    height: 6px;
}

.color-strip {
    flex: 1;
}

.cyan-strip {
    background: var(--cyan);
}

.magenta-strip {
    background: var(--magenta);
}

.yellow-strip {
    background: var(--yellow);
}

/* Encabezado del formulario */
.form-card-header {
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
    text-align: center;
    border-bottom: 1px solid var(--form-border);
}

.form-card-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-xs);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.form-card-subtitle {
    color: #666;
    font-size: var(--font-size-md);
}

/* Formulario moderno */
.modern-supabase-form {
    padding: var(--space-xl);
}

/* Grid de campos */
.form-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .form-fields-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* Grupo de campos */
.form-field-group {
    margin-bottom: var(--space-md);
}

.form-field-group.full-width {
    grid-column: 1 / -1;
}

.field-label {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--black);
    font-size: var(--font-size-sm);
}

.label-icon {
    font-size: 1rem;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.field-input-wrapper {
    position: relative;
}

/* Campos de formulario */
.modern-form-input,
.modern-form-select,
.modern-form-textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--form-border);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: var(--font-size-md);
    background: var(--white);
    transition: all var(--transition-fast);
    color: var(--black);
}

.modern-form-input:focus,
.modern-form-select:focus,
.modern-form-textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.modern-form-input::placeholder,
.modern-form-textarea::placeholder {
    color: #999;
}

/* Línea de enfoque */
.field-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
    transition: width var(--transition-base);
}

.modern-form-input:focus ~ .field-focus-line,
.modern-form-select:focus ~ .field-focus-line,
.modern-form-textarea:focus ~ .field-focus-line {
    width: 100%;
}

/* Select personalizado */
.modern-form-select {
    appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

.select-arrow {
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

/* Textarea con contador */
.modern-form-textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}

.textarea-counter {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: var(--font-size-xs);
    color: #999;
}

/* Checkboxes modernos */
.checkbox-group-modern {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.modern-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-label-modern {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: var(--font-size-sm);
    line-height: 1.4;
    color: #666;
    flex: 1;
}

.check-icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--form-border);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all var(--transition-fast);
}

.modern-checkbox:checked + .checkbox-label-modern .check-icon {
    background: var(--cyan);
    border-color: var(--cyan);
}

.modern-checkbox:checked + .checkbox-label-modern .check-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-link-modern {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
}

.privacy-link-modern:hover {
    text-decoration: underline;
}

/* Botón de envío */
.submit-container {
    margin-top: var(--space-xl);
}

.modern-submit-btn {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: var(--font-size-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.3);
}

.modern-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 188, 212, 0.4);
}

.modern-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.submit-text {
    font-size: 1.1rem;
    line-height: 1;
}

.submit-subtext {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 4px;
}

.submit-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-base);
}

.modern-submit-btn:hover .submit-icon {
    transform: translateX(5px) rotate(-10deg);
}

.submit-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

.submit-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--cyan);
    border-radius: var(--radius-lg);
    animation: pulseRing 2s ease-out infinite;
}

.submit-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    font-size: var(--font-size-sm);
    color: #666;
    text-align: center;
}

/* Mensaje de éxito */
.modern-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    z-index: 10;
    animation: fadeIn 0.6s ease forwards;
}

.success-card {
    background: var(--white);
    border-radius: var(--form-radius);
    padding: var(--space-xxl);
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--form-shadow);
    border: 2px solid var(--cyan);
    animation: scaleIn 0.6s ease forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto var(--space-lg);
    animation: successBounce 0.6s ease forwards;
}

@keyframes successBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.success-title-modern {
    font-size: var(--font-size-xl);
    color: var(--cyan);
    margin-bottom: var(--space-md);
    font-weight: 800;
}

.success-text-modern {
    font-size: var(--font-size-md);
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.success-actions-modern {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.success-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: #25D366;
    color: white;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
    flex: 1;
    justify-content: center;
}

.success-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.success-close-btn {
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.1);
    color: var(--black);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    flex: 1;
}

.success-close-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Footer del formulario */
.form-footer-modern {
    background: var(--white);
    border-radius: var(--form-radius);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--form-border);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    color: #666;
}

/* CTA adicional */
.form-cta-modern {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), rgba(233, 30, 99, 0.05));
    border-radius: var(--form-radius);
    padding: var(--space-xl);
    text-align: center;
    margin-top: var(--space-xl);
    border: 2px dashed rgba(0, 188, 212, 0.2);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--font-size-xl);
    color: var(--black);
    margin-bottom: var(--space-xs);
    font-weight: 700;
}

.cta-text {
    font-size: var(--font-size-md);
    color: #666;
    margin-bottom: var(--space-lg);
}

.cta-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: #25D366;
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    font-size: var(--font-size-lg);
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .modern-form-section {
        padding: var(--space-xl) 0;
    }
    
    .benefits-card {
        position: static;
    }
    
    .form-card-header {
        padding: var(--space-lg) var(--space-md);
    }
    
    .modern-supabase-form {
        padding: var(--space-lg);
    }
    
    .success-card {
        padding: var(--space-xl);
    }
    
    .success-actions-modern {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .highlight-stat {
        min-width: 100%;
    }
    
    .modern-submit-btn {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .submit-content {
        align-items: center;
    }
    
    .cta-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================================
   AGREGAR PARA EL FORMUARIO
   =========================================== */
/* Estilos para el modal de confirmación de descuento */
.discount-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.discount-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.discount-modal-header {
    padding: 20px;
    text-align: center;
    color: white;
}

.discount-modal-header i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.discount-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.discount-modal-body {
    padding: 25px;
}

.discount-modal-body p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.discount-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.discount-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
}

.discount-benefit i {
    font-size: 1.2rem;
}

.discount-modal-footer {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: #f8fafc;
}

.discount-btn-no, .discount-btn-yes {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.discount-btn-no {
    background: #e2e8f0;
    color: #64748b;
}

.discount-btn-no:hover {
    background: #cbd5e1;
}

.discount-btn-yes {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
}

.discount-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para notificaciones del formulario */
.form-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    animation: slideIn 0.3s ease;
    max-width: 400px;
    font-family: 'Inter', sans-serif;
}

.form-notification.success {
    background: #2ecc71;
}

@keyframes slideIn {
    from { 
        transform: translateX(100%); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    line-height: 1.4;
    font-size: 14px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.notification-close:hover {
    opacity: 1;
}

/* ===========================================
   8. SECCIÓN IDEA CREATIVA
   =========================================== */
.idea-section {
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.cmyk-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-back);
}

.cmyk-wave {
  position: absolute;
  width: 200%;
  height: 100px;
  opacity: 0.1;
}

.cyan-wave {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  top: 20%;
  animation: wave 15s linear infinite;
}

.magenta-wave {
  background: linear-gradient(90deg, transparent, var(--magenta), transparent);
  top: 50%;
  animation: wave 20s linear infinite reverse;
}

.yellow-wave {
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  bottom: 20%;
  animation: wave 25s linear infinite;
}

.idea-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: var(--z-normal);
}

.idea-content {
  text-align: center;
  animation: fadeIn 1s ease forwards;
}

.idea-title {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-md);
}

.title-text {
  display: block;
}

.title-highlight {
  display: inline-block;
  position: relative;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--cyan);
  opacity: 0.3;
  z-index: var(--z-back);
}

.idea-subtitle {
  font-size: var(--font-size-xl);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  color: #666;
}

.highlight-word {
  position: relative;
  display: inline-block;
}

.highlight-word::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  opacity: 0.2;
  z-index: var(--z-back);
}

.idea-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.stat-circle {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-round);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 3s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.2s);
}

.cyan-stat {
  background: rgba(0, 188, 212, 0.1);
  border: 2px solid var(--cyan);
}

.magenta-stat {
  background: rgba(233, 30, 99, 0.1);
  border: 2px solid var(--magenta);
  animation-delay: 0.2s;
}

.yellow-stat {
  background: rgba(255, 235, 59, 0.1);
  border: 2px solid var(--yellow);
  animation-delay: 0.4s;
}

.stat-value {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.idea-actions {
  margin-top: var(--space-xl);
}

.idea-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  color: var(--white);
  border-radius: var(--radius-xl);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  margin-bottom: var(--space-md);
}

.idea-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.btn-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.btn-main-text {
  font-size: var(--font-size-xl);
}

.btn-subtext {
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

.btn-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
}

.btn-icon-default,
.btn-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  transition: all var(--transition-base);
}

.btn-icon-default {
  opacity: 1;
}

.btn-icon-hover {
  opacity: 0;
  transform: scale(0.5);
}

.idea-btn:hover .btn-icon-default {
  opacity: 0;
  transform: scale(0.5);
}

.idea-btn:hover .btn-icon-hover {
  opacity: 1;
  transform: scale(1);
}

.btn-glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  filter: blur(20px);
  opacity: 0.5;
  z-index: -1;
  animation: pulse 2s infinite;
}

.btn-pulse-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--cyan);
  border-radius: var(--radius-xl);
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.idea-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  font-size: var(--font-size-md);
  color: #666;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
}

.cyan-element {
  background: rgba(0, 188, 212, 0.1);
  color: var(--cyan);
  top: 20%;
  left: 10%;
}

.magenta-element {
  background: rgba(233, 30, 99, 0.1);
  color: var(--magenta);
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.yellow-element {
  background: rgba(255, 235, 59, 0.1);
  color: var(--yellow);
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}

.idea-background {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.1;
  z-index: var(--z-back);
  pointer-events: none;
}

.idea-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================================
   9. SECCIÓN NOSOTROS
   =========================================== */
/* ===========================================
   SECCIÓN NOSOTROS - VERSIÓN BLANCO & CMYK
   =========================================== */

.neo-about-section.white-version {
    background: #ffffff;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* Contenedor principal */
.neo-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Encabezado */
.neo-about-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.neo-about-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.neo-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.neo-main-title .title-line {
    display: block;
}

.neo-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cmyk-separator {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cmyk-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

.cyan-dot { 
    background: var(--cyan);
    animation-delay: 0s; 
}
.magenta-dot { 
    background: var(--magenta);
    animation-delay: 0.2s; 
}
.yellow-dot { 
    background: var(--yellow);
    animation-delay: 0.4s; 
}
.black-dot { 
    background: var(--black);
    animation-delay: 0.6s; 
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Grid principal CORREGIDO */
.neo-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: start;
}

/* Columnas reorganizadas */
.neo-story-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.neo-featured-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 120px;
}

/* Responsive para el grid */
@media (max-width: 1024px) {
    .neo-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .neo-featured-column {
        position: static;
        order: -1;
    }
    
    .neo-story-column {
        order: 1;
    }
}

/* Tarjeta de historia */
.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.story-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.story-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 15px 40px rgba(0,188,212,0.15);
}

.story-header {
    padding: 1.5rem 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.story-content {
    padding: 2rem;
}

.story-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Timeline horizontal */
.horizontal-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.timeline-item {
    position: relative;
    padding-top: 2rem;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
}

.timeline-content {
    text-align: center;
    padding-top: 0.5rem;
}

.timeline-content h4 {
    font-size: 0.875rem;
    margin: 0.5rem 0 0.25rem;
    color: var(--black);
}

.timeline-content p {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

/* Tabs de Misión, Visión y Valores */
.mission-vision-tabs {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.mission-vision-tabs.visible {
    opacity: 1;
    transform: translateX(0);
}

.tabs-header {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #eee;
}

.tab-button {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    border-right: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.tab-button:last-child {
    border-right: none;
}

.tab-button.active {
    color: white;
    background: var(--cyan);
}

.tab-button:hover:not(.active) {
    background: rgba(0,188,212,0.1);
}

.tabs-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane h4 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tab-pane p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tab-pane ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tab-pane li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.vision-goals {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.goal {
    flex: 1;
    padding: 1rem;
    border-radius: 12px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.goal-year {
    font-size: 1.25rem;
    font-weight: 800;
}

.goal-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.value {
    padding: 1.25rem;
    border-radius: 12px;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    background: white;
    transition: transform 0.3s ease;
}

.value:hover {
    transform: translateY(-5px);
}

.value i {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.value h5 {
    margin: 0.5rem 0;
    font-size: 0.875rem;
}

.value p {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

.cyan-border { border-color: var(--cyan); }
.magenta-border { border-color: var(--magenta); }
.yellow-border { border-color: var(--yellow); }
.black-border { border-color: var(--black); }

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.stats-showcase.visible {
    opacity: 1;
    transform: translateX(0);
}

.stat-item {
    padding: 1.5rem;
    border-radius: 12px;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    background: white;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Columna derecha - Featured */
.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.featured-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.image-container {
    position: relative;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.featured-image:hover .main-image {
    transform: scale(1.05);
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    mix-blend-mode: multiply;
}

.featured-image:hover .cyan-layer { opacity: 0.1; }
.featured-image:hover .magenta-layer { opacity: 0.05; }
.featured-image:hover .yellow-layer { opacity: 0.05; }

.cyan-layer { background: var(--cyan); }
.magenta-layer { background: var(--magenta); }
.yellow-layer { background: var(--yellow); }

.floating-experience {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
}

.badge-content {
    width: 70px;
    height: 70px;
    background: var(--cyan);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0,188,212,0.4);
    animation: float 3s ease-in-out infinite;
}

.badge-content .years {
    font-size: 1.25rem;
    line-height: 1;
}

.badge-content .text {
    font-size: 0.75rem;
    opacity: 0.9;
}

.service-tags {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 2;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.featured-image:hover .service-tag {
    opacity: 1;
    transform: translateX(0);
}

.featured-image:hover .service-tag:nth-child(1) { transition-delay: 0.1s; }
.featured-image:hover .service-tag:nth-child(2) { transition-delay: 0.2s; }
.featured-image:hover .service-tag:nth-child(3) { transition-delay: 0.3s; }

.quality-stamp {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    margin-top: 1rem;
    border: 2px solid #eee;
}

.quality-stamp i {
    font-size: 1.5rem;
}

.stamp-text {
    display: flex;
    flex-direction: column;
}

.stamp-text strong {
    font-size: 0.875rem;
    color: var(--black);
}

.stamp-text span {
    font-size: 0.75rem;
    color: #888;
}

/* Testimonio destacado */
.featured-testimonial {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.featured-testimonial.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 15px 40px rgba(0,188,212,0.15);
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-text p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h5 {
    margin: 0 0 0.25rem;
    color: var(--black);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.875rem;
    color: #888;
}

.author-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-rating i {
    font-size: 1rem;
}

.rating {
    font-weight: 700;
    color: var(--black);
}

/* CTA de conversión */
.conversion-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.conversion-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-container {
    padding: 2rem;
    border-radius: 20px;
    border-width: 2px;
    border-style: solid;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-stats .stat {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.cta-stats .number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 0.25rem;
}

.cta-stats .label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    background: #25D366;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    border: none;
    cursor: pointer;
    width: 100%;
}

.whatsapp-cta-button i {
    font-size: 1.5rem;
}

.whatsapp-cta-button small {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

.whatsapp-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37,211,102,0.3);
}

.whatsapp-cta-button .button-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

/* Valores corporativos */
.core-values {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.core-values.visible {
    opacity: 1;
    transform: translateY(0);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.card-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .neo-main-title {
        font-size: 2.5rem;
    }
    
    .horizontal-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .neo-about-section.white-version {
        padding: 4rem 0;
    }
    
    .neo-about-container {
        padding: 0 1rem;
    }
    
    .neo-main-title {
        font-size: 2rem;
    }
    
    .neo-subtitle {
        font-size: 1rem;
    }
    
    .horizontal-timeline {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-button {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .vision-goals {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
    }
    
    .values-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}
/* ===========================================
   CONTADOR PREMIUM - NEO GRAFIK
   Optimizado para conversiones y urgencia
   =========================================== */

.contador-premium-section {
    position: relative;
    padding: 6rem 0;
    margin: 4rem auto;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 24px;
    overflow: hidden;
    max-width: 1400px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Partículas de fondo */
.contador-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatParticlePremium 20s linear infinite;
}

.cyan-particle {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--cyan), transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.magenta-particle {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--magenta), transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.yellow-particle {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, var(--yellow), transparent 70%);
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

.black-particle {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--black), transparent 70%);
    top: 40%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes floatParticlePremium {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(40px, 30px) rotate(90deg);
    }
    50% {
        transform: translate(20px, 60px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, 30px) rotate(270deg);
    }
}

/* Badge flotante */
.floating-offer-badge-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    transform: rotate(3deg);
    animation: floatBadgePremium 3s ease-in-out infinite;
}

@keyframes floatBadgePremium {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-8px); }
}

.badge-content-premium {
    background: linear-gradient(135deg, var(--magenta), var(--cyan));
    color: white;
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    box-shadow: 
        0 8px 25px rgba(233, 30, 99, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.badge-icon-premium {
    font-size: 16px;
    animation: spinSlowPremium 10s linear infinite;
}

.badge-pulse-premium {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--cyan);
    border-radius: 20px;
    animation: pulseRingPremium 2s ease-out infinite;
}

@keyframes pulseRingPremium {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Contenedor principal */
.contador-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Encabezado */
.contador-header {
    text-align: center;
    margin-bottom: 40px;
}

.contador-decoration {
    margin-bottom: 30px;
    position: relative;
    height: 4px;
}

.decoration-line-premium {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--cyan), 
        var(--magenta), 
        var(--yellow), 
        transparent
    );
}

.decoration-dot-premium {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: -3px;
    animation: bounceDotPremium 2s ease-in-out infinite;
}

.cyan-dot { 
    left: 25%; 
    background: var(--cyan);
    animation-delay: 0s;
}
.magenta-dot { 
    left: 50%; 
    background: var(--magenta);
    animation-delay: 0.4s;
}
.yellow-dot { 
    left: 75%; 
    background: var(--yellow);
    animation-delay: 0.8s;
}

@keyframes bounceDotPremium {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.contador-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
    line-height: 1.2;
}

.title-line-1,
.title-line-2,
.title-line-3 {
    display: block;
}

.title-line-2 {
    position: relative;
    display: inline-block;
    margin: 10px 0;
}

.highlight-gradient-premium {
    background: linear-gradient(90deg, 
        var(--cyan), 
        var(--magenta), 
        var(--yellow)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(0, 188, 212, 0.4);
    animation: gradientFlowPremium 3s ease infinite alternate;
}

@keyframes gradientFlowPremium {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.title-sparkle-premium {
    position: absolute;
    top: -12px;
    right: -25px;
    color: var(--yellow);
    font-size: 22px;
    animation: sparkleTwinklePremium 2s ease-in-out infinite;
}

@keyframes sparkleTwinklePremium {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.contador-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.badge-urgente {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 10px;
    animation: pulseUrgent 1.5s infinite;
}

@keyframes pulseUrgent {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Grid principal */
.contador-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .contador-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Columna izquierda - Oferta */
.oferta-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.discount-card-premium {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.discount-card-premium:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-glow-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 188, 212, 0.1) 0%,
        transparent 50%,
        rgba(233, 30, 99, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.discount-card-premium:hover .card-glow-premium {
    opacity: 1;
}

.discount-badge-premium {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.4);
    animation: badgeFloatPremium 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes badgeFloatPremium {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.discount-value-premium {
    font-size: 32px;
    line-height: 1;
}

.discount-label-premium {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.discount-ribbon-premium {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 15px;
    background: var(--magenta);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.price-comparison-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.original-price,
.discounted-price {
    position: relative;
    padding: 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.original-price {
    opacity: 0.7;
}

.price-label-premium {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value-premium {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.old-price {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    position: relative;
}

.price-line-through {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--magenta);
    transform: rotate(-15deg);
    opacity: 0.5;
}

.new-price {
    color: var(--cyan);
    font-size: 32px;
    text-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
    animation: priceGlowPremium 2s ease-in-out infinite alternate;
}

@keyframes priceGlowPremium {
    from { text-shadow: 0 0 20px rgba(0, 188, 212, 0.4); }
    to { text-shadow: 0 0 30px rgba(0, 188, 212, 0.6); }
}

.savings-arrow {
    text-align: center;
    margin: 10px 0;
}

.savings-text {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--yellow);
    margin-top: 5px;
}

.price-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-features-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.additional-info-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-icon-premium {
    font-size: 24px;
    margin-top: 5px;
}

.info-content-premium h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 16px;
}

.client-counter-premium {
    font-size: 28px;
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 10px;
}

.availability-bar-premium {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
    position: relative;
}

.available-slots-premium {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    border-radius: 4px;
    animation: slotPulsePremium 2s ease-in-out infinite;
}

@keyframes slotPulsePremium {
    0%, 100% { width: 30%; }
    50% { width: 35%; }
}

.availability-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.coverage-badges-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.coverage-badge-premium {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

/* Columna derecha - Contador */
.contador-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contador-premium-main {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contador-header-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contador-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contador-header-text h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 20px;
}

.contador-header-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contador-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.time-unit {
    flex: 1;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.time-unit:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.unit-value {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Courier New', monospace;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 0 10px currentColor;
    position: relative;
    z-index: 1;
}

#contadorDias { color: var(--cyan); }
#contadorHoras { color: var(--magenta); }
#contadorMinutos { color: var(--yellow); }
#contadorSegundos { color: white; }

.unit-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.unit-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-fill-premium {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    width: var(--progress-width, 100%);
    transition: width 1s ease;
}

.time-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 32px;
    font-weight: 700;
    margin: 0 5px;
}

.contador-progress-bar {
    margin: 30px 0;
}

.progress-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill-animated {
    background: linear-gradient(90deg, 
        var(--cyan), 
        var(--magenta), 
        var(--yellow)
    );
    height: 100%;
    width: 70%;
    border-radius: 4px;
    position: relative;
    animation: progressShimmerPremium 3s ease-in-out infinite;
}

@keyframes progressShimmerPremium {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.progress-pulse-point {
    position: absolute;
    top: 0;
    left: 70%;
    width: 16px;
    height: 16px;
    background: var(--cyan);
    border-radius: 50%;
    transform: translate(-50%, -4px);
    animation: progressPulsePremium 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--cyan);
}

@keyframes progressPulsePremium {
    0%, 100% {
        transform: translate(-50%, -4px) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -4px) scale(1.2);
        opacity: 0.7;
    }
}

.progress-labels-premium {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.urgent-note {
    padding: 15px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: urgentNotePulse 1.5s infinite;
    margin-top: 20px;
}

@keyframes urgentNotePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Botones de acción */
.contador-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contador-primary-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: white;
    padding: 25px 30px;
    border-radius: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: none;
    cursor: pointer;
}

.contador-primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 188, 212, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1);
}

.btn-content-premium {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-main-text-premium {
    font-size: 20px;
    line-height: 1.2;
}

.btn-subtext-premium {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 5px;
}

.btn-icon-premium {
    font-size: 32px;
    transition: transform 0.3s ease;
}

.contador-primary-btn:hover .btn-icon-premium {
    transform: scale(1.2) rotate(10deg);
}

.btn-pulse-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

.secondary-buttons-premium {
    display: flex;
    gap: 15px;
}

.secondary-btn-premium {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.trust-badges-premium {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge-premium {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.legal-note-premium {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .contador-premium-section {
        margin: 2rem 15px;
        padding: 3rem 0;
        border-radius: 20px;
    }
    
    .contador-title {
        font-size: 1.8rem;
    }
    
    .contador-display {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 15px;
    }
    
    .unit-value {
        font-size: 32px;
    }
    
    .secondary-buttons-premium {
        flex-direction: column;
    }
    
    .trust-badges-premium {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .floating-offer-badge-premium {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 20px;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .contador-title {
        font-size: 1.5rem;
    }
    
    .contador-subtitle {
        font-size: 16px;
    }
    
    .price-value-premium {
        font-size: 22px;
    }
    
    .new-price {
        font-size: 26px;
    }
    
    .unit-value {
        font-size: 28px;
    }
    
    .contador-primary-btn {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .btn-content-premium {
        align-items: center;
    }
}

/* Efectos adicionales para el contador */
.contador-display.urgent .time-unit {
    border-color: var(--magenta);
    animation: urgentPulse 1s infinite;
}

.contador-display.critical .time-unit {
    border-color: var(--cyan);
    background: rgba(233, 30, 99, 0.1);
    animation: criticalPulse 0.5s infinite;
}

@keyframes urgentPulse {
    0%, 100% { border-color: var(--magenta); }
    50% { border-color: rgba(233, 30, 99, 0.5); }
}

@keyframes criticalPulse {
    0%, 100% { 
        border-color: var(--cyan);
        background: rgba(233, 30, 99, 0.1);
    }
    50% { 
        border-color: var(--cyan);
        background: rgba(233, 30, 99, 0.2);
    }
}

.unit-value.glow {
    animation: valueGlow 0.5s ease;
}

@keyframes valueGlow {
    0% { text-shadow: 0 0 5px currentColor; }
    50% { text-shadow: 0 0 20px currentColor; }
    100% { text-shadow: 0 0 5px currentColor; }
}

.contador-display.blink {
    animation: blinkCritical 0.5s step-end infinite;
}

@keyframes blinkCritical {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Modal de detalles */
.offer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-content h3 {
    color: var(--cyan);
    margin-bottom: 20px;
    font-size: 24px;
}

.modal-content ul {
    list-style: none;
    padding: 0;
}

.modal-content li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.modal-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: bold;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--cyan);
}

/* Notificación de cupos */
.slot-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 300px;
}

.slot-notification i {
    font-size: 20px;
}

.close-notification {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.7;
}

.close-notification:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* ===========================================
   10. FOOTER
   =========================================== */

  /* Variables específicas del footer */
:root {
  --footer-bg: #0a0a0a;
  --footer-text: rgba(255, 255, 255, 0.85);
  --footer-border: rgba(255, 255, 255, 0.1);
  --footer-highlight: rgba(255, 255, 255, 0.05);
  --footer-whatsapp: #25D366;
  --footer-instagram: #E1306C;
  --footer-facebook: #1877F2;
  --footer-email: #EA4335;
}

/* Estructura principal del footer */
.neo-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
  margin-top: auto;
}

/* Partículas del footer */
.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: footerParticleFloat 25s infinite linear;
}

.cyan-particle {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.magenta-particle {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--magenta), transparent 70%);
  top: 65%;
  right: 15%;
  animation-delay: 8s;
}

.yellow-particle {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--yellow), transparent 70%);
  bottom: 25%;
  left: 20%;
  animation-delay: 16s;
}

.black-particle {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, var(--black), transparent 70%);
  top: 35%;
  right: 20%;
  animation-delay: 24s;
}

@keyframes footerParticleFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(40px, 25px) rotate(90deg);
  }
  50% {
    transform: translate(20px, 50px) rotate(180deg);
  }
  75% {
    transform: translate(-20px, 25px) rotate(270deg);
  }
}

/* Contenedor principal */
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-md);
  position: relative;
  z-index: 1;
}

/* Grid principal del footer */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* Columnas del footer */
.footer-col {
  animation: footerFadeIn 0.8s ease forwards;
  opacity: 0;
}

.footer-col-map {
  animation-delay: 0.1s;
}

.footer-col-info {
  animation-delay: 0.2s;
}

/* Encabezado de secciones del footer */
.footer-section-header {
  margin-bottom: var(--space-lg);
}

.footer-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  margin-bottom: var(--space-md);
  transition: transform var(--transition-base);
}

.footer-section-header:hover .footer-icon-wrapper {
  transform: rotate(15deg) scale(1.1);
}

.footer-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: white;
  line-height: 1.2;
}

.footer-subtitle {
  font-size: var(--font-size-md);
  opacity: 0.7;
  line-height: 1.5;
}

/* Mapa del footer */
.footer-map-wrapper {
  margin-bottom: var(--space-lg);
}

.footer-map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-base);
}

.footer-map-frame:hover {
  transform: translateY(-5px);
}

.footer-google-map {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter var(--transition-base);
}

.footer-google-map:hover {
  filter: grayscale(0) contrast(1);
}

.footer-map-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  animation: footerSlideInLeft 0.6s ease-out;
}

.footer-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
}

.footer-badge-content {
  display: flex;
  flex-direction: column;
}

.footer-badge-content strong {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: white;
}

.footer-badge-content span {
  font-size: var(--font-size-xs);
  opacity: 0.8;
}

/* Botones del mapa - CLASES ÚNICAS */
.footer-map-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.footer-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.footer-map-btn:hover {
  transform: translateY(-2px);
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.footer-direction-btn {
  background: rgba(0, 188, 212, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(0, 188, 212, 0.3);
}

.footer-direction-btn:hover {
  background: rgba(0, 188, 212, 0.25);
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.2);
}

.footer-whatsapp-btn {
  background: rgba(37, 211, 102, 0.15);
  color: var(--footer-whatsapp);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.25);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.footer-btn-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.footer-map-btn:hover .footer-btn-icon {
  transform: scale(1.2);
}

.footer-btn-text {
  transition: transform 0.3s ease;
}

.footer-map-btn:hover .footer-btn-text {
  transform: translateX(2px);
}

.footer-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.footer-map-btn:hover .footer-btn-glow {
  opacity: 0.4;
}

/* Dirección del footer */
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--footer-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-lg);
  transition: all 0.3s ease;
}

.footer-address:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-address-icon {
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-address-details {
  flex: 1;
  font-style: normal;
}

.footer-address-details strong {
  display: block;
  font-size: var(--font-size-md);
  color: white;
  margin-bottom: var(--space-xs);
}

.footer-address-details span {
  display: block;
  font-size: var(--font-size-sm);
  opacity: 0.8;
  margin-bottom: var(--space-sm);
}

.footer-address-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-xs);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-address:hover .footer-meta-item {
  opacity: 0.9;
}

/* Marca del footer */
.footer-brand {
  margin-bottom: var(--space-xl);
}

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 5px 15px rgba(0, 188, 212, 0.3));
}

.footer-brand-text {
  font-size: var(--font-size-md);
  line-height: 1.6;
  opacity: 0.9;
  max-width: 90%;
}

/* Navegación rápida del footer */
.footer-quick-nav {
  margin-bottom: var(--space-xl);
}

.footer-nav-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: white;
}

.footer-title-icon {
  font-size: 1.1rem;
}

.footer-nav-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
}

.footer-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.footer-nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
  padding-left: var(--space-lg);
}

.footer-link-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-round);
  flex-shrink: 0;
}

.footer-link-text {
  flex: 1;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: transform 0.3s ease;
}

.footer-nav-link:hover .footer-link-text {
  transform: translateX(2px);
}

.footer-link-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.5);
}

.footer-nav-link:hover .footer-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Contacto del footer */
.footer-contact {
  margin-bottom: var(--space-xl);
}

.footer-contact-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: white;
}

.footer-contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.footer-contact-channel:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.footer-channel-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-contact-channel:hover .footer-channel-icon {
  transform: scale(1.1);
}

.whatsapp-bg {
  background: rgba(37, 211, 102, 0.2);
}

.email-bg {
  background: rgba(234, 67, 53, 0.2);
}

.footer-channel-info {
  flex: 1;
}

.footer-channel-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}

.footer-channel-value {
  font-size: var(--font-size-md);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.footer-channel-status {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer-status-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-round);
}

.online-dot {
  background: var(--cyan);
  animation: footerPulseDot 2s infinite;
}

@keyframes footerPulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.footer-status-text {
  font-size: var(--font-size-xs);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-contact-channel:hover .footer-status-text {
  opacity: 1;
}

.footer-channel-action {
  opacity: 0;
  transform: translateX(5px);
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-channel:hover .footer-channel-action {
  opacity: 1;
  transform: translateX(0);
}

/* Redes sociales del footer */
.footer-social {
  margin-bottom: var(--space-xl);
}

.footer-social-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: white;
}

.footer-social-links {
  display: flex;
  gap: var(--space-md);
}

.footer-social-link {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--footer-border);
  border-radius: var(--radius-round);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-decoration: none;
  color: white;
}

.footer-social-link:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: transparent;
}

.footer-instagram:hover {
  background: var(--footer-instagram);
  box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.footer-facebook:hover {
  background: var(--footer-facebook);
  box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.footer-whatsapp-social:hover {
  background: var(--footer-whatsapp);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.footer-social-icon {
  font-size: 1.2rem;
  color: white;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.footer-social-link:hover .footer-social-icon {
  transform: rotate(10deg);
}

.footer-social-tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.footer-social-link:hover .footer-social-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.footer-social-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover .footer-social-glow {
  opacity: 0.4;
}

/* Separador del footer */
.footer-divider {
  margin: var(--space-xl) 0;
}

.footer-divider-line {
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--footer-border) 50%, 
    transparent 100%
  );
  position: relative;
  overflow: hidden;
}

.footer-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: var(--radius-round);
  animation: footerDotFloat 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
  border: 2px solid var(--footer-bg);
  box-shadow: 0 0 10px currentColor;
}

.footer-dot.cyan-dot {
  left: 15%;
  background: var(--cyan);
}

.footer-dot.magenta-dot {
  left: 40%;
  background: var(--magenta);
}

.footer-dot.yellow-dot {
  left: 65%;
  background: var(--yellow);
}

.footer-dot.black-dot {
  left: 90%;
  background: var(--white);
}

@keyframes footerDotFloat {
  0%, 100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
  }
}

/* Footer bottom reorganizado */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--footer-border);
  animation: footerFadeIn 0.8s ease forwards;
  animation-delay: 0.3s;
}

@media (max-width: 768px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-md);
  }
}

.footer-copyright {
  text-align: left;
}

@media (max-width: 768px) {
  .footer-copyright {
    text-align: center;
  }
}

.footer-copyright-text {
  font-size: var(--font-size-sm);
  opacity: 0.7;
  margin-bottom: var(--space-xs);
  line-height: 1.4;
}

.footer-brand-name {
  font-weight: 700;
  opacity: 1;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-legal-link:hover {
  color: var(--cyan);
  text-decoration: underline;
}

.footer-legal-divider {
  opacity: 0.3;
}

/* ============================================
   MEJORAS PARA "DESARROLLADO POR MONSTER MARKETING"
   Más visible e impactante en escritorio y responsive
============================================= */

.footer-credits {
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  background: rgba(233, 30, 99, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233, 30, 99, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  z-index: 2;
  transform: translateZ(0);
  will-change: transform;
}

.footer-credits:hover {
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.25);
  border-color: rgba(233, 30, 99, 0.4);
}

.footer-credits-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  position: relative;
  z-index: 4;
}

.footer-credits-label {
  font-size: var(--font-size-xs);
  opacity: 0.9 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xs);
  display: block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-agency-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-md) !important;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    rgba(233, 30, 99, 0.15) 0%, 
    rgba(0, 188, 212, 0.15) 100%);
  border: 1px solid rgba(233, 30, 99, 0.3);
  font-weight: 800 !important;
  letter-spacing: 0.5px;
  min-height: 44px;
  cursor: pointer !important;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 188, 212, 0.3);
  z-index: 3;
}

.footer-agency-link:hover {
  color: white !important;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
  background: linear-gradient(135deg, 
    rgba(233, 30, 99, 0.25) 0%, 
    rgba(0, 188, 212, 0.25) 100%);
  border-color: rgba(233, 30, 99, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.footer-agency-name {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-agency-text {
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-agency-highlight {
  font-weight: 900 !important;
  color: var(--cyan) !important;
  text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.footer-agency-icon {
  font-size: 0.9rem !important;
  opacity: 0.9 !important;
  transition: all 0.3s ease;
  color: var(--cyan) !important;
}

.footer-agency-link:hover .footer-agency-icon {
  transform: translate(3px, -3px) scale(1.1);
  opacity: 1 !important;
}

.footer-agency-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(233, 30, 99, 0.3), 
    rgba(0, 188, 212, 0.3),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  z-index: -1;
}

.footer-agency-link:hover .footer-agency-glow {
  transform: translateX(100%);
}

.footer-agency-link::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--magenta), 
    var(--cyan), 
    var(--magenta), 
    var(--cyan));
  border-radius: var(--radius-md);
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.footer-agency-link:hover::before {
  opacity: 0.3;
  animation: footerAgencyPulse 2s infinite;
}

@keyframes footerAgencyPulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.3;
  }
}

/* ============================================
   RESPONSIVE - Asegurar visibilidad en móviles
============================================= */

@media (max-width: 768px) {
  .footer-credits {
    margin-top: var(--space-md);
    padding: var(--space-md);
    order: 2;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-agency-link {
    font-size: var(--font-size-lg) !important;
    padding: var(--space-md) var(--space-xl);
    width: 100%;
    justify-content: center;
    min-height: 54px;
  }
  
  .footer-agency-link:hover {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
  
  .footer-credits-label {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .footer-credits {
    padding: var(--space-sm);
  }
  
  .footer-agency-link {
    font-size: var(--font-size-md) !important;
    padding: var(--space-sm) var(--space-lg);
  }
  
  .footer-agency-name {
    flex-direction: column;
    gap: 0;
  }
}

/* Botón volver arriba del footer */
.footer-back-top {
  text-align: right;
}

@media (max-width: 768px) {
  .footer-back-top {
    text-align: center;
  }
}

.footer-back-top-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--footer-border);
  border-radius: var(--radius-md);
  color: white;
  font-weight: 600;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  border: none;
}

.footer-back-top-btn:hover {
  background: rgba(0, 188, 212, 0.2);
  border-color: rgba(0, 188, 212, 0.4);
  transform: translateY(-3px);
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.footer-back-top-icon {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.footer-back-top-btn:hover .footer-back-top-icon {
  transform: translateY(-2px);
}

.footer-back-top-text {
  transition: transform 0.3s ease;
}

.footer-back-top-btn:hover .footer-back-top-text {
  transform: translateY(-1px);
}

.footer-back-top-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 188, 212, 0.2), 
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.footer-back-top-btn:hover .footer-back-top-ripple {
  transform: translateX(100%);
}

/* Cookie notice del footer */
.footer-cookie-notice {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--footer-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-cookie-notice.visible {
  transform: translateY(0);
  opacity: 1;
}

.footer-cookie-content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
}

.footer-cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.footer-cookie-text {
  flex: 1;
  font-size: var(--font-size-sm);
  line-height: 1.4;
}

.footer-cookie-text p {
  margin-bottom: var(--space-xs);
}

.footer-cookie-info {
  color: var(--cyan);
  text-decoration: none;
  font-size: var(--font-size-xs);
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-cookie-info:hover {
  text-decoration: underline;
}

.footer-cookie-actions {
  flex-shrink: 0;
}

.footer-cookie-btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--cyan);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-cookie-btn:hover {
  transform: scale(1.05);
  background: var(--cyan-dark);
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

/* Animaciones específicas del footer */
@keyframes footerFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes footerSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Estados de hover con clases únicas */
.footer-hover-lift:hover {
  transform: translateY(-3px);
}

.footer-hover-scale:hover {
  transform: scale(1.05);
}

.footer-hover-glow:hover {
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}

/* Responsive adicional */
@media (max-width: 480px) {
  .footer-container {
    padding: var(--space-xl) var(--space-sm);
  }
  
  .footer-map-actions {
    grid-template-columns: 1fr;
  }
  
  .footer-social-links {
    justify-content: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .footer-cookie-notice {
    left: 20px;
    right: 20px;
    max-width: none;
  }
  
  .footer-cookie-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
}

/* Asegurar que las animaciones sean fluidas */
@media (prefers-reduced-motion: reduce) {
  .footer-particle,
  .footer-dot,
  .footer-status-dot,
  .footer-cookie-notice,
  .footer-map-btn,
  .footer-nav-link,
  .footer-contact-channel,
  .footer-social-link,
  .footer-agency-link,
  .footer-back-top-btn,
  .footer-cookie-btn {
    animation: none;
    transition: none;
  }
}
/* ===========================================
   FLOATING SOCIAL MEDIA BUTTONS - NEO GRAFIK
   Botones flotantes únicos para redes sociales
   =========================================== */

/* ===========================================
   BOTONES FLOTANTES - ESTILOS DEFINITIVOS
   =========================================== */

/* Variables de colores para buen contraste */
:root {
  /* Colores de botones */
  --whatsapp-bg: #25D366;
  --whatsapp-dark: #128C7E;
  --facebook-bg: #1877F2;
  --facebook-dark: #0D47A1;
  --instagram-bg: #E1306C;
  --instagram-dark: #833AB4;
  --catalog-bg: #FF4081;
  --catalog-dark: #E91E63;
  
  /* Colores de texto (siempre blanco para buen contraste) */
  --text-light: #FFFFFF;
  --text-dark: #333333;
  
  /* Tamaños responsive */
  --float-size-desktop: 56px;
  --float-size-tablet: 50px;
  --float-size-mobile: 48px;
  --float-size-small: 44px;
}

/* Contenedor principal - VISIBLE SIEMPRE */
.float-social-container {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 9998;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cada botón - CLARAMENTE VISIBLE Y TOCABLE */
.float-social-btn {
  position: relative;
  width: var(--float-size-desktop);
  height: var(--float-size-desktop);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: visible;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(255, 255, 255, 0.3) inset;
  border: 3px solid rgba(255, 255, 255, 0.8);
  cursor: pointer !important;
  pointer-events: auto !important;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  animation: floatGentle 4s ease-in-out infinite;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Animación de flotación */
@keyframes floatGentle {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}

.float-social-btn:nth-child(1) { animation-delay: 0s; }
.float-social-btn:nth-child(2) { animation-delay: 0.5s; }
.float-social-btn:nth-child(3) { animation-delay: 1s; }
.float-social-btn:nth-child(4) { animation-delay: 1.5s; }

/* Iconos grandes y visibles */
.float-icon {
  font-size: 1.5rem;
  color: var(--text-light) !important;
  position: relative;
  z-index: 3;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ETIQUETAS - TEXTO GRANDE Y CONTRASTANTE */
.float-label {
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  min-width: 120px;
  text-align: center;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.25),
    0 0 0 2px rgba(255, 255, 255, 0.2) inset;
  border: 2px solid;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Triángulo de la etiqueta */
.float-label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid;
}

/* Colores específicos para cada etiqueta - ALTO CONTRASTE */

/* WhatsApp */
.float-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-bg), var(--whatsapp-dark));
}

.float-whatsapp .float-label {
  background: var(--whatsapp-bg) !important;
  color: var(--text-light) !important;
  border-color: var(--whatsapp-dark) !important;
}

.float-whatsapp .float-label::after {
  border-left-color: var(--whatsapp-bg) !important;
}

/* Facebook */
.float-facebook {
  background: linear-gradient(135deg, var(--facebook-bg), var(--facebook-dark));
}

.float-facebook .float-label {
  background: var(--facebook-bg) !important;
  color: var(--text-light) !important;
  border-color: var(--facebook-dark) !important;
}

.float-facebook .float-label::after {
  border-left-color: var(--facebook-bg) !important;
}

/* Instagram */
.float-instagram {
  background: linear-gradient(135deg, var(--instagram-bg), var(--instagram-dark));
}

.float-instagram .float-label {
  background: var(--instagram-bg) !important;
  color: var(--text-light) !important;
  border-color: var(--instagram-dark) !important;
}

.float-instagram .float-label::after {
  border-left-color: var(--instagram-bg) !important;
}

/* Catálogo */
.float-catalog {
  background: linear-gradient(135deg, var(--catalog-bg), var(--catalog-dark));
}

.float-catalog .float-label {
  background: var(--catalog-bg) !important;
  color: var(--text-light) !important;
  border-color: var(--catalog-dark) !important;
}

.float-catalog .float-label::after {
  border-left-color: var(--catalog-bg) !important;
}

/* Efecto de pulso */
.float-pulse {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 3px solid;
  border-radius: 50%;
  opacity: 0;
  animation: floatPulse 2.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

/* Efecto de brillo */
.float-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Hover en escritorio */
@media (hover: hover) and (pointer: fine) {
  .float-social-btn:hover {
    transform: translateX(-10px) scale(1.1) !important;
    box-shadow: 
      0 15px 40px rgba(0, 0, 0, 0.3),
      0 0 0 3px rgba(255, 255, 255, 0.5) inset !important;
  }
  
  .float-social-btn:hover .float-icon {
    transform: scale(1.2) rotate(5deg) !important;
  }
  
  .float-social-btn:hover .float-label {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-50%) translateX(0) !important;
  }
  
  .float-social-btn:hover .float-glow {
    opacity: 1 !important;
  }
  
  .float-social-btn:hover .float-pulse {
    animation-play-state: paused !important;
  }
}

/* ===========================================
   RESPONSIVE - MÓVILES (768px o menos)
   =========================================== */

@media (max-width: 768px) {
  /* CONTENEDOR EN LA PARTE INFERIOR - SIEMPRE VISIBLE */
  .float-social-container {
    position: fixed !important;
    bottom: 20px !important;
    top: auto !important;
    right: 50% !important;
    transform: translateX(50%) !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.98), 
      rgba(255, 255, 255, 0.95)) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-radius: 60px !important;
    padding: 14px 28px !important;
    box-shadow: 
      0 15px 50px rgba(0, 0, 0, 0.25),
      0 0 0 2px rgba(255, 255, 255, 0.4) inset,
      0 0 0 1px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    min-width: 300px !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    animation: mobileContainerEntry 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
  }
  
  @keyframes mobileContainerEntry {
    from {
      opacity: 0;
      transform: translateX(50%) translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateX(50%) translateY(0);
    }
  }
  
  /* BOTONES GRANDES Y TOCABLES */
  .float-social-btn {
    width: 55px !important;
    height: 55px !important;
    margin: 0 !important;
    animation: floatGentleMobile 3s ease-in-out infinite !important;
    border-width: 3px !important;
    box-shadow: 
      0 8px 25px rgba(0, 0, 0, 0.2),
      0 0 0 2px rgba(255, 255, 255, 0.4) inset !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  @keyframes floatGentleMobile {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
  }
  
  .float-social-btn:nth-child(1) { animation-delay: 0s; }
  .float-social-btn:nth-child(2) { animation-delay: 0.3s; }
  .float-social-btn:nth-child(3) { animation-delay: 0.6s; }
  .float-social-btn:nth-child(4) { animation-delay: 0.9s; }
  
  /* Iconos grandes */
  .float-icon {
    font-size: 22px !important;
    color: white !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4) !important;
  }
  
  /* ETIQUETAS EN MÓVILES - ARRIBA DEL BOTÓN */
  .float-label {
    position: absolute !important;
    bottom: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-15px) !important;
    top: auto !important;
    right: auto !important;
    padding: 10px 18px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    min-width: 110px !important;
    text-align: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.3),
      0 0 0 2px rgba(255, 255, 255, 0.3) inset !important;
    border-width: 2px !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    z-index: 1002 !important;
  }
  
  /* Triángulo hacia abajo en móviles */
  .float-label::after {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-top: 10px solid !important;
    border-left: 10px solid transparent !important;
    border-right: 10px solid transparent !important;
    border-bottom: none !important;
    right: auto !important;
  }
  
  /* Mostrar etiqueta al tocar */
  .float-social-btn.active .float-label {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(-20px) !important;
  }
  
  /* Efecto de toque */
  .float-social-btn:active {
    transform: scale(0.92) !important;
    transition: transform 0.1s ease !important;
  }
  
  /* Asegurar que los enlaces funcionen */
  .float-social-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
  }
}

/* Móviles pequeños (480px o menos) */
@media (max-width: 480px) {
  .float-social-container {
    bottom: 15px !important;
    padding: 12px 22px !important;
    gap: 12px !important;
    min-width: 280px !important;
    border-radius: 50px !important;
  }
  
  .float-social-btn {
    width: 50px !important;
    height: 50px !important;
  }
  
  .float-icon {
    font-size: 20px !important;
  }
  
  .float-label {
    font-size: 12px !important;
    padding: 8px 14px !important;
    min-width: 100px !important;
  }
  
  /* Ajuste para pantallas muy cortas */
  @media (max-height: 600px) {
    .float-social-container {
      bottom: 10px !important;
      padding: 10px 18px !important;
    }
    
    .float-social-btn {
      width: 48px !important;
      height: 48px !important;
    }
  }
}

/* Tablets (769px a 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .float-social-container {
    right: 20px !important;
    transform: translateY(-50%) !important;
  }
  
  .float-social-btn {
    width: var(--float-size-tablet);
    height: var(--float-size-tablet);
  }
  
  .float-icon {
    font-size: 1.4rem;
  }
}

/* ===========================================
   ESTADOS DE ACCESIBILIDAD Y FOCO
   =========================================== */
.float-social-btn:focus {
  outline: 3px solid var(--cyan, #00bcd4) !important;
  outline-offset: 4px !important;
  transform: translateX(-10px) scale(1.1) !important;
}

.float-social-btn:focus .float-label {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(-50%) translateX(0) !important;
}

/* Modo reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
  .float-social-container,
  .float-social-btn,
  .float-pulse,
  .float-label {
    animation: none !important;
    transition: opacity 0.3s ease !important;
  }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  @media (max-width: 768px) {
    .float-social-container {
      background: linear-gradient(135deg, 
        rgba(40, 40, 40, 0.98), 
        rgba(30, 30, 30, 0.95)) !important;
      border-color: rgba(255, 255, 255, 0.15) !important;
    }
  }
}

/* ===========================================
   GARANTIZAR FUNCIONALIDAD ABSOLUTA
   =========================================== */

/* Asegurar que sean tocables en todos los navegadores */
.float-social-btn {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Fix para iOS */
@supports (-webkit-touch-callout: none) {
  .float-social-container {
    padding-bottom: max(20px, env(safe-area-inset-bottom)) !important;
  }
}

/* Asegurar visibilidad absoluta */
.float-social-container.mobile-visible {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 9999 !important;
}

/* Efecto ripple para clics */
@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
/* ===========================================
   13. ANIMACIONES CON SCROLL
   =========================================== */
[data-scroll] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Diferentes delays para elementos escalonados */
[data-scroll-delay="0"] { transition-delay: 0s; }
[data-scroll-delay="1"] { transition-delay: 0.2s; }
[data-scroll-delay="2"] { transition-delay: 0.4s; }
[data-scroll-delay="3"] { transition-delay: 0.6s; }

/* Parallax effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ===========================================
   14. RESPONSIVE DESIGN
   =========================================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
  :root {
    --space-xl: 3rem;
    --space-xxl: 4rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
  }

  .neo-slide {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .slide-visual {
    order: -1;
  }

  .acrylic-visual,
  .print-visual,
  .neon-visual,
  .digital-visual {
    height: 200px;
  }

  .neo-about-grid {
    grid-template-columns: 1fr;
  }

  .neo-image-column {
    position: static;
  }

  .form-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Pequeña - 768px */
@media (max-width: 768px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 2.5rem;
    --space-xxl: 3rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 2.5rem;
  }

  .navbar-content {
    flex-wrap: wrap;
  }

  .nav-menu {
    order: 3;
    width: 100%;
    margin-top: var(--space-md);
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu-btn.active .menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-btn.active .menu-bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active .menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .service-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-dots {
    display: none;
  }

  .urgency-content {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .urgency-cta {
    order: 3;
    width: 100%;
  }

  .idea-stats {
    flex-wrap: wrap;
  }

  .stat-circle {
    width: 100px;
    height: 100px;
  }

  .inline-stats {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .copyright-text {
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    padding: var(--space-sm) var(--space-md);
  }

  .whatsapp-text {
    display: none;
  }
}

/* Móvil - 480px */
@media (max-width: 480px) {
  :root {
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.75rem;
    --font-size-4xl: 2rem;
    --font-size-5xl: 2.25rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .neo-slider-section,
  .lead-form-section,
  .idea-section,
  .neo-about-section {
    padding: var(--space-xl) 0;
  }

  .service-stats {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: var(--space-md);
  }

  .slider-controls {
    gap: var(--space-md);
  }

  .control-btn {
    width: 50px;
    height: 50px;
  }

  .form-wrapper {
    padding: var(--space-md);
  }

  .submit-btn {
    padding: var(--space-md) var(--space-lg);
  }

  .idea-btn {
    padding: var(--space-md) var(--space-lg);
    flex-direction: column;
    gap: var(--space-md);
  }

  .btn-text-content {
    align-items: center;
    text-align: center;
  }

  .info-card {
    padding: var(--space-lg);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .offer-button {
    padding: var(--space-md);
    font-size: var(--font-size-sm);
  }

  .countdown-timer {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .time-separator {
    display: none;
  }

  .popup-content {
    margin: var(--space-sm);
  }

  .popup-body {
    padding: var(--space-md);
  }
}

/* Móvil Pequeño - 360px */
@media (max-width: 360px) {
  :root {
    --font-size-lg: 1rem;
    --font-size-xl: 1.125rem;
    --font-size-2xl: 1.25rem;
    --font-size-3xl: 1.5rem;
  }

  .contact-btn {
    padding: var(--space-sm);
    font-size: var(--font-size-sm);
  }

  .neo-btn {
    padding: var(--space-md);
    font-size: var(--font-size-md);
  }

  .stat-number {
    font-size: var(--font-size-2xl);
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: var(--space-sm);
  }
}

/* ===========================================
   15. UTILIDADES RESPONSIVE ADICIONALES
   =========================================== */

/* Ocultar elementos en móvil */
.mobile-hide {
  display: block;
}

@media (max-width: 768px) {
  .mobile-hide {
    display: none;
  }
}

/* Mostrar elementos solo en móvil */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}

/* Orientación horizontal en móvil */
@media (max-width: 768px) and (orientation: landscape) {
  .navbar {
    position: static;
  }
  
  .navbar-content {
    padding: var(--space-xs) 0;
  }
  
  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }
}

/* Alto contraste para accesibilidad */
@media (prefers-contrast: high) {
  :root {
    --cyan: #008BA3;
    --magenta: #AD1457;
    --yellow: #F57F17;
    --black: #000000;
    --white: #FFFFFF;
  }
  
  .navbar {
    background: var(--white);
    border-bottom: 2px solid var(--black);
  }
  
  .contact-btn {
    border: 2px solid var(--cyan);
  }
}

/* Modo oscuro automático */
@media (prefers-color-scheme: dark) {
  body {
    background: #121212;
    color: #e0e0e0;
  }
  
  .navbar {
    background: rgba(30, 30, 30, 0.95);
  }
  
  .nav-link {
    color: #e0e0e0;
  }
  
  .info-card,
  .stat,
  .form-wrapper,
  .testimonial-card,
  .value-card {
    background: #1e1e1e;
    color: #e0e0e0;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    background: #2d2d2d;
    border-color: #404040;
    color: #e0e0e0;
  }
  
  ::placeholder {
    color: #888;
  }
  
  .service-description,
  .neo-subtitle,
  .idea-subtitle {
    color: #aaa;
  }
}

/* ===========================================
   16. ANIMACIONES DE ENTRADA POR SECCIÓN
   =========================================== */

/* Entrada escalonada para elementos de lista */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Entrada con fade para imágenes */
.image-fade-in {
  opacity: 0;
  animation: imageFadeIn 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes imageFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Entrada con slide para textos */
.text-slide-in {
  opacity: 0;
  transform: translateX(-30px);
  animation: textSlideIn 0.8s ease forwards;
}

@keyframes textSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Efecto de aparición con máscara */
.mask-reveal {
  position: relative;
  overflow: hidden;
}

.mask-reveal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  animation: maskReveal 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes maskReveal {
  to {
    left: 100%;
  }
}

/* ===========================================
   17. LOADING STATES
   =========================================== */

/* Skeleton loading */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 75%
  );
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s infinite;
}

@keyframes skeletonLoading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 188, 212, 0.2);
  border-top-color: var(--cyan);
  border-radius: var(--radius-round);
  animation: rotate 1s linear infinite;
}

/* Loading overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-max);
  backdrop-filter: blur(5px);
}

/* ===========================================
   18. ESTADOS INTERACTIVOS
   =========================================== */

/* Hover effects mejorados */
.hover-lift {
  transition: transform var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-grow {
  transition: transform var(--transition-base);
}

.hover-grow:hover {
  transform: scale(1.05);
}

.hover-rotate {
  transition: transform var(--transition-base);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

/* Focus states para accesibilidad */
.focus-visible:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Active states */
.btn:active {
  transform: translateY(1px);
}

/* Disabled states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ===========================================
   19. PRINT STYLES
   =========================================== */
@media print {
  .urgency-bar,
  .navbar,
  .whatsapp-float,
  .cookie-notice-mini,
  .offer-popup,
  .contact-btn,
  .neo-btn,
  .submit-btn,
  .idea-btn,
  .cta-button,
  .offer-button,
  .map-actions,
  .back-top-btn {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  .neo-slider-section,
  .lead-form-section,
  .idea-section,
  .neo-about-section {
    padding: 1cm 0;
    page-break-inside: avoid;
  }
  
  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
  
  .footer-main-grid {
    display: block;
  }
  
  .footer-map-column {
    display: none;
  }
}

/* ===========================================
   20. FALLBACKS Y POLYFILLS
   =========================================== */

/* Fallback para backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
  .navbar {
    background: rgba(255, 255, 255, 0.98);
  }
  
  .map-badge,
  .urgency-countdown,
  .service-tag,
  .badge-content {
    background: rgba(0, 0, 0, 0.9);
  }
}

/* Fallback para aspect-ratio */
.aspect-ratio-fallback {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.aspect-ratio-fallback > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Fallback para grid */
@supports not (display: grid) {
  .neo-about-grid {
    display: flex;
    flex-wrap: wrap;
  }
  
  .neo-info-column,
  .neo-image-column {
    width: 100%;
  }
  
  .service-stats,
  .inline-stats,
  .values-grid {
    display: flex;
    flex-wrap: wrap;
  }
}

/* ===========================================
   21. OPTIMIZACIONES DE PERFORMANCE
   =========================================== */

/* Optimización de animaciones */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Optimización para pantallas de baja resolución */
@media (max-resolution: 1dppx) {
  .logo img,
  .footer-logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Optimización para conexiones lentas */
@media (prefers-reduced-data: reduce) {
  .idea-background,
  .floating-elements,
  .cmyk-background,
  .cmyk-gradient-overlay {
    display: none;
  }
  
  .neo-slide.active .slide-visual {
    display: none;
  }
  
  .acrylic-visual,
  .print-visual,
  .neon-visual,
  .digital-visual {
    background: none;
  }
}

@keyframes progress {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* ===========================================
   NOTIFICACIONES MEJORADAS - NEO GRAFIK
   =========================================== */

/* ===========================================
   1. BARRA DE URGENCIA MEJORADA
   =========================================== */
.urgency-bar {
    background: linear-gradient(135deg, 
        var(--cyan) 0%, 
        var(--magenta) 25%, 
        var(--yellow) 50%, 
        var(--black) 75%
    );
    color: var(--white);
    padding: var(--space-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-max);
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.urgency-bar.visible {
    transform: translateY(0);
}

.urgency-bar.hiding {
    transform: translateY(-100%);
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 1.2rem;
    animation: pulse 1.5s infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.urgency-text {
    flex: 1;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

.urgency-countdown {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 800;
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#countdownTimer {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, 
        var(--cyan), 
        var(--magenta), 
        var(--yellow)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.urgency-cta {
    background: var(--white);
    color: var(--magenta);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    white-space: nowrap;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.urgency-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.urgency-cta:hover::before {
    left: 100%;
}

.urgency-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    border-color: var(--magenta);
}

.urgency-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    line-height: 1;
    padding: 0;
}

.urgency-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* ===========================================
   2. POPUP DE OFERTA 
   =========================================== */
.offer-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
}

.offer-popup.visible {
    opacity: 1;
    display: flex;
}

.offer-popup.hiding {
    opacity: 0;
}

.popup-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    margin: auto;
}

.offer-popup.visible .popup-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--magenta) 0%, var(--cyan) 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
    border-radius: 20px 20px 0 0;
}

.popup-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    line-height: 1;
    padding: 0;
    position: relative;
    z-index: 11;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-body {
    padding: 30px;
    text-align: center;
}

/* Media Queries Responsive del Popup */
@media (max-width: 768px) {
    .popup-content {
        margin: 15px;
        max-width: calc(100% - 30px);
        max-height: 85vh;
        border-radius: 15px;
    }
    
    .popup-body {
        padding: 20px;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        font-size: 1.5rem;
        flex-wrap: wrap;
    }
    
    .countdown-hours,
    .countdown-minutes,
    .countdown-seconds {
        min-width: 60px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        margin: 10px;
        max-width: calc(100% - 20px);
        border-radius: 12px;
    }
    
    .popup-header {
        padding: 15px 20px;
        border-radius: 12px 12px 0 0;
    }
    
    .popup-body {
        padding: 15px;
    }
    
    .popup-title {
        font-size: 1.3rem;
    }
    
    .popup-btn {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .popup-close {
        width: 40px;
        height: 40px;
        font-size: 26px;
        background: rgba(255, 255, 255, 0.3);
    }
}
/* ===========================================
   3. NOTIFICACIÓN DE COOKIES MODERNA
   =========================================== */
.cookie-notice-mini {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    z-index: var(--z-modal);
    transform: translateX(150%) translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    display: none;
}

.cookie-notice-mini.visible {
    transform: translateX(0) translateY(0);
    opacity: 1;
    display: block;
}

.cookie-notice-mini.hiding {
    transform: translateX(150%) translateY(20px);
    opacity: 0;
}

.cookie-notice-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--cyan), 
        var(--magenta), 
        var(--yellow), 
        var(--black)
    );
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg);
}

.cookie-text {
    font-size: var(--font-size-sm);
    color: var(--black);
    line-height: 1.5;
}

.cookie-link {
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.cookie-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

.cookie-link:hover {
    color: var(--cyan-dark);
}

.cookie-link:hover::after {
    width: 100%;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
    align-items: center;
}

.cookie-btn {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cookie-btn:hover::before {
    left: 100%;
}

.accept-btn {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2);
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
    border-color: var(--cyan-light);
}

.decline-btn {
    background: transparent;
    color: #666;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.decline-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.2);
}

/* ===========================================
   4. RESPONSIVE PARA NOTIFICACIONES
   =========================================== */
@media (max-width: 768px) {
    /* Barra de urgencia */
    .urgency-content {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .urgency-text {
        order: 1;
        width: 100%;
    }
    
    .urgency-countdown {
        order: 2;
        width: 100%;
        justify-content: center;
    }
    
    .urgency-cta {
        order: 3;
        width: 100%;
    }
    
    .urgency-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    /* Cookies */
    .cookie-notice-mini {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    /* Cookies */
    .cookie-content {
        padding: var(--space-md);
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* ===========================================
   5. ANIMACIONES ESPECIALES
   =========================================== */
@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* ===========================================
   6. ESTADOS DE CONTADORES
   =========================================== */
[data-count].completed {
    position: relative;
}

[data-count].completed::after {
    content: '✓';
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--cyan);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}