/*
  ╔══════════════════════════════════════════════════════════════╗
  ║                                                              ║
  ║   ███████╗████████╗██╗   ██╗██╗     ███████╗███████╗        ║
  ║   ██╔════╝╚══██╔══╝╚██╗ ██╔╝██║     ██╔════╝██╔════╝        ║
  ║   ███████╗   ██║    ╚████╔╝ ██║     █████╗  ███████╗        ║
  ║   ╚════██║   ██║     ╚██╔╝  ██║     ██╔══╝  ╚════██║        ║
  ║   ███████║   ██║      ██║   ███████╗███████╗███████║        ║
  ║   ╚══════╝   ╚═╝      ╚═╝   ╚══════╝╚══════╝╚══════╝        ║
  ║                                                              ║
  ║   RICHARD AYÓN PÉREZ - DISEÑO PREMIUM 2026                   ║
  ║                                                              ║
  ║   Paleta corporativa:                                        ║
  ║   █ #0A0A0B - Negro Premium                                  ║
  ║   █ #00D4FF - Azul Eléctrico                                 ║
  ║   █ #6A1B9A - Púrpura Profundo                               ║
  ║   █ #C0C0C0 - Plata Satinado                                 ║
  ║                                                              ║
  ║   ¿Te gusta este diseño? Contáctame:                         ║
  ║   📧 richard.ayon@gmail.com                                  ║
  ║   📱 +593 99 105 3846                                        ║
  ║                                                              ║
  ╚══════════════════════════════════════════════════════════════╝
*/

/* ===== RESET & VARIABLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --negro-premium: #0A0A0B;
  --azul-electrico: #00D4FF;
  --purpura-profundo: #6A1B9A;
  --plata-satinado: #C0C0C0;
  --blanco: #FFFFFF;
  --amarillo-neon: #F2E205;
  --whatsapp: #25D366;
  
  --bg-body: var(--negro-premium);
  --texto-principal: var(--blanco);
  --texto-secundario: #B0B0B0;
  --card-bg: rgba(255, 255, 255, 0.05);
  --borde-sutil: rgba(192, 192, 192, 0.15);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-card: 24px;
  --radius-btn: 40px;
}

body.light-mode {
  --bg-body: #F8FAFC;
  --texto-principal: #1E293B;
  --texto-secundario: #475569;
  --card-bg: rgba(255, 255, 255, 0.9);
  --borde-sutil: rgba(0, 0, 0, 0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-body);
  color: var(--texto-principal);
  line-height: 1.5;
  overflow-x: hidden;
  animation: bodyFadeIn 0.6s ease-out;
}

@keyframes bodyFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== UTILIDADES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 50px 0; }

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--azul-electrico), var(--purpura-profundo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-subtitle { color: var(--texto-secundario); font-size: 1.1rem; margin-bottom: 1.5rem; }

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--borde-sutil);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

/* ===== BOTONES CON EFECTOS PREMIUM ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--azul-electrico), var(--purpura-profundo));
  color: var(--blanco);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before { width: 300px; height: 300px; }

.btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4), 0 0 30px var(--azul-electrico);
}

.btn-outline {
  border: 1.5px solid var(--azul-electrico);
  color: var(--azul-electrico);
  background: transparent;
}

.btn-outline:hover {
  background: var(--azul-electrico);
  color: var(--negro-premium);
  transform: translateY(-3px);
}

.hero-btn-effect { transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; overflow: hidden; }
.hero-btn-effect::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.2); transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; }
.hero-btn-effect:hover::before { width: 400px; height: 400px; }
.hero-btn-effect:hover { transform: translateY(-5px) scale(1.02) !important; box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4), 0 0 30px var(--azul-electrico) !important; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.8rem 0;
  transition: var(--transition);
  background: #0A0A0B;
  border-bottom: 1px solid var(--borde-sutil);
}

.header.scrolled { padding: 0.5rem 0; background: #FFFFFF; box-shadow: var(--shadow-md); }
.header-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { width: 40px; height: 40px; object-fit: contain; }
.logo-text { color: #FFFFFF; font-weight: 700; font-size: 1.3rem; transition: color 0.3s; }

.nav-menu { display: flex; gap: 1.8rem; align-items: center; list-style: none; }
.nav-link { color: #FFFFFF; text-decoration: none; font-weight: 500; padding: 6px 0; position: relative; font-size: 0.95rem; transition: color 0.3s; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--azul-electrico), var(--purpura-profundo)); transition: width 0.3s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header.scrolled .logo-text { color: #0A0A0B; }
.header.scrolled .nav-link { color: #0A0A0B; }
.header.scrolled .menu-hamburguesa { color: #0A0A0B; }
.header.scrolled .theme-toggle { color: #0A0A0B; }

.nav-link.active { color: #00D4FF; }
.header.scrolled .nav-link.active { color: #00D4FF; }

.nav-whatsapp { background: #25D366; color: #FFFFFF !important; padding: 8px 18px !important; border-radius: 40px; }
.nav-whatsapp::after { display: none; }

.theme-toggle { background: none; border: 1px solid var(--borde-sutil); color: #FFFFFF; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; }

.menu-hamburguesa { display: none; background: none; border: none; color: #FFFFFF; font-size: 1.6rem; cursor: pointer; }
.btn-whatsapp-mobile { display: none; background: #25D366; color: white; width: 40px; height: 40px; border-radius: 50%; align-items: center; justify-content: center; font-size: 1.3rem; text-decoration: none; }
.header-actions { display: flex; gap: 8px; align-items: center; }

/* ===== HERO ===== */
.hero { padding: 120px 0 40px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-badge { display: inline-block; background: rgba(0, 212, 255, 0.15); color: var(--azul-electrico); padding: 5px 14px; border-radius: 40px; font-weight: 600; font-size: 0.85rem; margin-bottom: 16px; border: 1px solid var(--azul-electrico); }
.hero-title { font-size: 3.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-highlight { background: linear-gradient(135deg, var(--azul-electrico), var(--purpura-profundo)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-subtitle { font-size: 1.1rem; color: var(--texto-secundario); margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-logo-wrapper { display: flex; justify-content: center; }
.hero-logo-img { max-width: 300px; width: 100%; filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3)); transition: var(--transition); animation: logoBounceEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

@keyframes logoBounceEntrance {
  0% { opacity: 0; transform: scale(0.3) rotate(-8deg); filter: drop-shadow(0 0 0 rgba(0, 212, 255, 0)); }
  40% { opacity: 0.8; transform: scale(1.1) rotate(2deg); filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5)); }
  70% { transform: scale(0.95) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3)); }
}

@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-logo-wrapper:hover .hero-logo-img { animation: logoFloat 3s ease-in-out infinite; filter: drop-shadow(0 0 50px var(--azul-electrico)); }

/* ===== CARRUSEL ===== */
.carousel-section { padding: 30px 0; }
.carousel-container { position: relative; border-radius: 24px; overflow: hidden; }
.carousel-slides { display: flex; transition: transform 0.5s ease; }
.carousel-slide { min-width: 100%; position: relative; height: 450px; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slide-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; background: linear-gradient(transparent, rgba(10, 10, 11, 0.95)); color: white; }
.slide-price { display: inline-block; background: linear-gradient(135deg, var(--azul-electrico), var(--purpura-profundo)); color: white; padding: 6px 20px; border-radius: 40px; font-weight: 700; font-size: 1.3rem; margin-bottom: 12px; border: 1px solid var(--plata-satinado); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(10, 10, 11, 0.7); backdrop-filter: blur(8px); color: white; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; border: 1px solid var(--borde-sutil); cursor: pointer; z-index: 10; transition: var(--transition); }
.carousel-btn:hover { background: var(--azul-electrico); color: var(--negro-premium); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }
.carousel-dots { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--azul-electrico); width: 25px; border-radius: 20px; }

/* ===== SERVICIOS ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { text-align: center; padding: 0 0 1.2rem 0; overflow: hidden; }
.service-img-wrapper { margin: -1.5rem -1.5rem 1.2rem -1.5rem; overflow: hidden; }
.service-img { width: 100%; height: 160px; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img { transform: scale(1.05); }
.service-icon { font-size: 2rem; color: var(--azul-electrico); margin-bottom: 12px; }
.service-price { margin-top: 14px; padding: 8px; background: linear-gradient(135deg, var(--azul-electrico), var(--purpura-profundo)); color: white; border-radius: 40px; font-weight: 700; font-size: 1.1rem; width: 80%; margin: 14px auto 0; }

/* ===== VALORES ===== */
.valores-section { background: linear-gradient(180deg, transparent, rgba(106, 27, 154, 0.05), transparent); }
.valores-carousel-wrapper { overflow: hidden; padding: 15px 0; margin: 15px 0; }
.valores-carousel { display: flex; gap: 14px; animation: scrollValores 25s linear infinite; width: fit-content; }
.valores-carousel:hover { animation-play-state: paused; }
@keyframes scrollValores { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.valor-chip { background: var(--card-bg); backdrop-filter: blur(8px); border: 1px solid var(--borde-sutil); color: var(--texto-principal); padding: 10px 24px; border-radius: 40px; font-weight: 600; font-size: 1.1rem; white-space: nowrap; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.valor-chip:hover { background: linear-gradient(135deg, var(--azul-electrico), var(--purpura-profundo)); color: white; transform: scale(1.1) translateY(-3px); box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3); }
.valores-descripcion { text-align: center; color: var(--plata-satinado); margin-top: 15px; }

/* ===== CLIENTES ===== */
.clientes-carousel-container { position: relative; margin-top: 15px; }
.clientes-carousel { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 15px 5px; -ms-overflow-style: none; scrollbar-width: none; }
.clientes-carousel::-webkit-scrollbar { display: none; }
.cliente-card { flex: 0 0 calc(33.333% - 14px); min-width: 180px; scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 1rem; text-decoration: none; color: var(--texto-principal); }
.cliente-card img { width: 120px; height: 60px; object-fit: contain; margin-bottom: 12px; filter: brightness(0) invert(1); transition: var(--transition); }
body.light-mode .cliente-card img { filter: brightness(0) invert(0); }
.cliente-card:hover img { transform: scale(1.05); }
.cliente-prev { left: -15px; }
.cliente-next { right: -15px; }

/* ===== CONTACTO ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-form-card h3 { margin-bottom: 20px; font-size: 1.3rem; }
.map-card { padding: 0; overflow: hidden; min-height: 450px; }
.contact-form { display: grid; gap: 16px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 18px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--borde-sutil); border-radius: 14px; color: var(--texto-principal); font-size: 0.95rem; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--azul-electrico); box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15); }
.checkbox-group { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.checkbox-group a { color: var(--azul-electrico); }

/* ===== CTA FINAL ===== */
.cta-final { padding: 50px 0; text-align: center; }
.cta-final h2 { font-size: 2.2rem; margin-bottom: 20px; background: linear-gradient(135deg, var(--azul-electrico), var(--purpura-profundo)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===== FOOTER ===== */
.footer { padding: 40px 0 20px; border-top: 1px solid var(--borde-sutil); background: #0A0A0B; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr; gap: 30px; margin-bottom: 30px; }
.footer-col h4 { color: #FFFFFF; margin-bottom: 16px; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 10px; }
.footer-logo-link:hover { transform: translateX(3px); }
.footer-logo-img { width: 40px; height: 40px; object-fit: contain; }
.footer-brand-name { color: #FFFFFF; font-weight: 700; font-size: 1.1rem; }
.footer-tagline { color: var(--plata-satinado); font-size: 0.8rem; }
.footer-menu, .footer-legal-menu { list-style: none; }
.footer-menu li, .footer-legal-menu li { margin-bottom: 8px; }
.footer-menu a, .footer-legal-menu a { color: var(--texto-secundario); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-menu a:hover, .footer-legal-menu a:hover { color: var(--azul-electrico); }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-link { color: var(--texto-secundario); text-decoration: none; font-size: 0.85rem; display: flex; align-items: center; gap: 10px; transition: var(--transition); }
.footer-contact-link i { width: 18px; color: var(--azul-electrico); }
.footer-contact-link:hover { color: #FFFFFF; transform: translateX(3px); }
.footer-bottom { padding-top: 20px; border-top: 1px solid var(--borde-sutil); text-align: center; }
.footer-copyright { color: #aaa; font-size: 0.75rem; }
.footer-dev-link { color: var(--azul-electrico); text-decoration: none; }
.footer-dev-link:hover { color: var(--purpura-profundo); text-decoration: underline; }

/* ===== WHATSAPP ===== */
.whatsapp-float { position: fixed; bottom: 25px; left: 25px; width: 55px; height: 55px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 30px; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); z-index: 999; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5); }
.whatsapp-tooltip { position: absolute; left: 70px; background: #0A0A0B; color: white; padding: 6px 14px; border-radius: 30px; font-size: 0.85rem; border: 1px solid #25D366; opacity: 0; transition: 0.3s; pointer-events: none; white-space: nowrap; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; left: 65px; }

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 25px; right: 25px; width: 45px; height: 45px; background: #00D4FF; color: #0A0A0B; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 998; cursor: pointer; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: #6A1B9A; color: white; }

/* ===== COOKIES Y MODALES ===== */
.cookie-banner { position: fixed; bottom: 25px; left: 25px; right: 25px; max-width: 420px; background: var(--card-bg); backdrop-filter: blur(20px); border-radius: 16px; border: 1px solid var(--borde-sutil); z-index: 2000; display: none; }
.cookie-content { padding: 18px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.cookie-link { color: var(--azul-electrico); text-decoration: none; font-size: 0.85rem; }

.modal { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px); z-index: 3000; align-items: center; justify-content: center; padding: 20px; }
.modal-content { max-width: 500px; max-height: 80vh; overflow-y: auto; background: var(--bg-body); padding: 25px; border-radius: 24px; position: relative; }
.modal-close { position: absolute; top: 12px; right: 12px; background: none; border: none; color: var(--texto-secundario); font-size: 24px; cursor: pointer; }
.modal-close:hover { color: var(--azul-electrico); }
.modal-body h4 { color: var(--azul-electrico); margin: 18px 0 8px; font-size: 1rem; }
.modal-body a { color: var(--azul-electrico); }

/* ===== EFECTOS DE CARGA ===== */
.section { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.section.visible { opacity: 1; transform: translateY(0); }
#inicio { opacity: 1; transform: translateY(0); }

.glass-card { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s, border-color 0.35s; }
.glass-card.visible { opacity: 1; transform: translateY(0); }
.glass-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 212, 255, 0.2); border-color: var(--azul-electrico); }

/* ===== EFECTOS TÁCTILES MÓVIL ===== */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:active, .hero-btn-effect:active { transform: scale(0.98) !important; box-shadow: 0 0 40px var(--azul-electrico) !important; }
  .glass-card:active { transform: scale(0.99); border-color: var(--azul-electrico); }
  .valor-chip:active { background: linear-gradient(135deg, var(--azul-electrico), var(--purpura-profundo)); color: white; transform: scale(1.05); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cliente-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 768px) {
  .section { padding: 30px 0; }
  .section-title { font-size: 1.8rem; }
  .container { padding: 0 20px; }
  
  .menu-hamburguesa { display: block; }
  .nav-menu { position: fixed; top: 65px; left: 0; right: 0; background: #0A0A0B; flex-direction: column; padding: 25px; gap: 18px; transform: translateY(-150%); transition: transform 0.3s; z-index: 999; border-bottom: 1px solid var(--borde-sutil); }
  .nav-menu.active { transform: translateY(0); }
  .nav-menu .nav-link { color: #FFFFFF; }
  .header.scrolled .nav-menu { background: #FFFFFF; }
  .header.scrolled .nav-menu .nav-link { color: #0A0A0B; }
  .nav-menu .nav-link.active { color: #00D4FF; }
  
  .btn-whatsapp-mobile { display: flex; }
  .nav-whatsapp { display: none; }
  
  .hero { padding: 100px 0 30px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-title { font-size: 2.2rem; }
  .hero-cta { justify-content: center; }
  .hero-logo-img { max-width: 220px; margin: 0 auto; }
  
  .carousel-slide { height: 300px; }
  .carousel-slide img { object-position: 35% center; }
  .slide-overlay { padding: 20px; }
  .slide-price { font-size: 1.1rem; padding: 5px 14px; }
  
  .services-grid { grid-template-columns: 1fr; }
  
  .cliente-card { flex: 0 0 85%; }
  .cliente-prev, .cliente-next { display: flex !important; opacity: 0.85; width: 40px; height: 40px; background: var(--negro-premium); border: 1px solid var(--azul-electrico); }
  .cliente-prev { left: 0; }
  .cliente-next { right: 0; }
  .clientes-carousel { padding-left: 10px; padding-right: 10px; }
  .clientes-carousel-container { margin-bottom: 35px; }
  .clientes-carousel-container::after { content: '← Desliza →'; position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); color: var(--plata-satinado); font-size: 0.75rem; opacity: 0.7; white-space: nowrap; background: rgba(10, 10, 11, 0.5); padding: 4px 16px; border-radius: 40px; backdrop-filter: blur(4px); border: 1px solid var(--borde-sutil); pointer-events: none; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .map-card { min-height: 280px; }
  
  .footer { padding: 30px 0 15px; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; text-align: center; }
  .footer-logo-link { justify-content: center; }
  .footer-contact-info { align-items: center; }
  .footer-copyright { font-size: 0.7rem; line-height: 1.4; }
  
  .whatsapp-float { left: 18px; bottom: 18px; width: 50px; height: 50px; font-size: 28px; }
  .whatsapp-tooltip { display: none; }
  .scroll-top { bottom: 18px; right: 18px; width: 40px; height: 40px; }
  .cookie-banner { left: 15px; right: 15px; bottom: 80px; }
}