* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --azul-primario: #009EDA;
    --azul-secundario: #5CB6E6;
    --azul-terciario: #94CAED;
    --blanco: #ffffff;
    --gris-claro: #f5f5f5;
    --gris-oscuro: #333333;
}

body {
    background-color: var(--gris-claro);
}

/* Header */
header {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Barra de navegación */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--blanco);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

/* Contenedor del logo - Más espacio alrededor */
.contenedor-logo {
    display: flex;
    align-items: center;
    gap: 40px; 
}

/* Logo más grande y con más protagonismo */
.logo {
    height: 120px; /* Aumentado de 60px a 80px */
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(0, 158, 218, 0.4));
    transform-origin: center;
}

.logo:hover {
    transform: scale(1.1) rotate(1deg);
    filter: drop-shadow(0 5px 12px rgba(0, 158, 218, 0.6));
}

/* Efecto de brillo al pasar el mouse */
.logo::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(circle at center, 
                rgba(0, 158, 218, 0.3) 0%, 
                transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo:hover::after {
    opacity: 1;
}

/* Animación sutil de respiración */
@keyframes logoBreath {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 3px 6px rgba(0, 158, 218, 0.4));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 4px 8px rgba(0, 158, 218, 0.5));
    }
}

.logo {
    animation: logoBreath 4s ease-in-out infinite;
}

/* Ajustar menú para compensar logo más grande */
.menu {
    margin-left: 30px; /* Un poco más de margen */
}

/* Responsive para mantener proporciones */
@media (max-width: 1024px) {
    .logo {
        height: 70px;
    }
    
    .contenedor-logo {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 60px;
    }
    
    .contenedor-logo {
        gap: 15px;
    }
    
    .menu {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 50px;
    }
    
    .contenedor-logo {
        gap: 12px;
    }
    
    .menu {
        margin-left: 15px;
    }
}

/* Para pantallas muy grandes */
@media (min-width: 1440px) {
    .logo {
        height: 90px;
    }
    
    .contenedor-logo {
        gap: 30px;
    }
}

/* Menú de navegación */
.menu {
    display: flex;
    list-style: none;
    margin-left: 3rem;
}

.menu li {
    margin: 0 1.5rem;
    position: relative;
}

.menu a {
    text-decoration: none;
    color: var(--gris-oscuro);
    font-weight: 600;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

.menu a:hover {
    color: var(--azul-primario);
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--azul-primario);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

/* Botón de cotización */
.boton-cotizar {
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-secundario));
    color: var(--blanco);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(92, 182, 230, 0.4);
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boton-cotizar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(92, 182, 230, 0.6);
    background: linear-gradient(135deg, #008ec7, #4aa8d8);
}

/* Menú hamburguesa para móviles */
.menu-hamburguesa {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.barra-hamburguesa {
    width: 30px;
    height: 3px;
    background-color: var(--gris-oscuro);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Carrusel */
.carrusel {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
}

.slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
}

.slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
}

.slide-4 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center     center/cover;
}

.contenido-slide {
    position: relative;
    z-index: 2;
    color: var(--blanco);
    max-width: 600px;
}

.contenido-slide {
    position: relative;
    z-index: 2;
    color: var(--blanco);
    max-width: 800px;
    text-align: center; /* Centrar todo el contenido */
    margin: 0 auto; /* Centrar horizontalmente */
    padding: 0 20px;
}

.contenido-slide h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #5CB6E6; /* Azul medio de tu paleta */
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),    /* Sombra negra exterior */
        0 0 20px rgba(92, 182, 230, 0.6),  /* Glow azul interior */
        0 0 30px rgba(92, 182, 230, 0.4);  /* Glow azul más suave */
    white-space: nowrap; /* Mantener en una línea */
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.contenido-slide p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-align: center; /* Párrafo centrado */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Sombra suave para mejor legibilidad */
}

/* Animación sutil para el título */
@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(92, 182, 230, 0.6),
            0 0 30px rgba(92, 182, 230, 0.4);
    }
    50% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 25px rgba(92, 182, 230, 0.8),
            0 0 40px rgba(92, 182, 230, 0.6);
    }
}

.contenido-slide h2 {
    animation: titleGlow 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1200px) {
    .contenido-slide h2 {
        font-size: 2.7rem;
    }
}

@media (max-width: 992px) {
    .contenido-slide h2 {
        font-size: 2.4rem;
        white-space: normal; /* Permitir múltiples líneas en tablet */
        line-height: 1.3;
    }
    
    .contenido-slide p {
        font-size: 1.2rem;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .contenido-slide h2 {
        font-size: 2.1rem;
        text-shadow: 
            1px 1px 3px rgba(0, 0, 0, 0.8),
            0 0 15px rgba(92, 182, 230, 0.6),
            0 0 25px rgba(92, 182, 230, 0.4);
    }
    
    .contenido-slide p {
        font-size: 1.1rem;
        max-width: 450px;
    }
}

@media (max-width: 576px) {
    .contenido-slide {
        padding: 0 15px;
    }
    
    .contenido-slide h2 {
        font-size: 1.9rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .contenido-slide p {
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.5;
    }
}

/* Asegurar que el contenido esté bien posicionado */
.slide {
    display: flex;
    align-items: center;
    justify-content: center; /* Centrar vertical y horizontalmente */
    text-align: center;
    padding: 0 5%;
}

/* Botón también centrado */
.boton-slide {
    display: inline-block;
    margin: 0 auto;
}

        .boton-slide {
            background-color: var(--azul-primario);
            color: var(--blanco);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 1.1rem;
        }

        .boton-slide:hover {
            background-color: #0084c2;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .controles {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 2;
        }

        .control {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 10px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .control.activo {
            background-color: var(--blanco);
        }

        /* Estilos responsivos */
        @media (max-width: 992px) {
            .carrusel {
                height: 400px;
            }
            
            .contenido-slide h2 {
                font-size: 2rem;
            }
            
            .contenido-slide p {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--blanco);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding-top: 5rem;
                transition: left 0.3s ease;
                z-index: 1000;
            }

            .menu.activo {
                left: 0;
            }

            .menu li {
                margin: 1.5rem 0;
            }

            .menu a {
                font-size: 1.3rem;
            }

            .menu-hamburguesa {
                display: block;
            }

            .menu-hamburguesa.activo .barra-hamburguesa:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .menu-hamburguesa.activo .barra-hamburguesa:nth-child(2) {
                opacity: 0;
            }

            .menu-hamburguesa.activo .barra-hamburguesa:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .boton-cotizar {
                padding: 0.7rem 1.5rem;
                font-size: 1rem;
                position: absolute;
                right: 70px;
            }

            .carrusel {
                height: 350px;
            }
            
            .slide {
                padding: 0 5%;
            }
            
            .contenido-slide h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .logo {
                height: 50px;
            }
            
            .carrusel {
                height: 300px;
            }
            
            .contenido-slide h2 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
            
            .contenido-slide p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }
            
            .boton-slide {
                padding: 0.6rem 1.5rem;
                font-size: 1rem;
            }
        }

 /* servicios */
/* Estilos generales para la sección de servicios */
.servicios {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 20px;
}

/* Encabezado de la sección */
.encabezado-seccion {
    text-align: center;
    margin-bottom: 60px;
}

.badge-azul {
    background-color: #009fe3;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.encabezado-seccion h2 {
    color: #111;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.linea-divisora {
    width: 100px;
    height: 4px;
    background-color: #009fe3;
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid de servicios en disposición horizontal */
.grid-servicios {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

/* Tarjetas de servicio */
.servicio {
    padding: 25px 15px;
    transition: all 0.3s ease;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 159, 227, 0.1);
}

.servicio:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 159, 227, 0.2);
    border-color: rgba(0, 159, 227, 0.3);
}

/* Iconos */
.servicio .icono {
    font-size: 2.8rem;
    color: #009fe3;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.servicio:hover .icono {
    transform: scale(1.1);
}

/* Texto */
.servicio h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.servicio p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Efecto de borde superior */
.servicio::before {
    content: '';
    display: block;
    height: 4px;
    background-color: #009fe3;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 4px 4px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.servicio:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .servicios {
        padding: 40px 30px;
    }
}

@media (max-width: 1024px) {
    .grid-servicios {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .servicio {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .encabezado-seccion h2 {
        font-size: 2rem;
    }
    
    .grid-servicios {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .servicio {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .servicios {
        margin: 60px auto;
        padding: 40px 15px;
    }
    
    .encabezado-seccion h2 {
        font-size: 1.8rem;
    }
    
    .badge-azul {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
    
    .servicio {
        padding: 20px 15px;
    }
    
    .servicio .icono {
        font-size: 2.5rem;
    }
    
    .servicio h3 {
        font-size: 1.2rem;
    }
    
    .servicio p {
        font-size: 0.9rem;
    }
}

/* nosotros */

/* Estilos Sección Sobre Nosotros */
.sobre-nosotros {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.contenedor-titulo {
    text-align: center;
    margin-bottom: 60px;
}

.contenedor-titulo h2 {
    font-size: 2.8rem;
    color: #111;
    margin: 20px 0;
}

.contenedor-sobre-nosotros {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.imagen-equipo {
    position: relative;
    flex: 1;
    min-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.imagen-equipo img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.decoracion-azul {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #009EDA, #5CB6E6);
    top: -20px;
    left: -20px;
    z-index: 0;
    border-radius: 12px;
}

.contenido-texto {
    flex: 1;
}

.tarjeta-experiencia {
    background: linear-gradient(135deg, #009EDA, #5CB6E6);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 158, 218, 0.3);
}

.tarjeta-experiencia h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.descripcion p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.lista-certificaciones {
    list-style: none;
    margin-top: 25px;
}

.lista-certificaciones li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.lista-certificaciones i {
    color: #009EDA;
    position: absolute;
    left: 0;
    top: 4px;
}

/* Contenedor del botón */
.contenedor-boton {
    margin-top: 40px;
    text-align: center;
}

/* Estilos base del botón */
.boton-contactar {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 18px 40px;
    background: linear-gradient(135deg, #009EDA, #0077B5);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 158, 218, 0.4);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

/* Texto del botón */
.texto-boton {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Icono del botón */
.icono-boton {
    margin-left: 15px;
    transform: translateX(-5px);
    opacity: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* Efecto hover (fondo animado) */
.efecto-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0077B5, #009EDA);
    z-index: 1;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 50px;
}

/* Efecto de pulsación */
.efecto-pulsacion {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transform: scale(0.9);
    opacity: 0;
    z-index: 0;
}

/* Animaciones al hacer hover */
.boton-contactar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 158, 218, 0.6);
}

.boton-contactar:hover .texto-boton {
    transform: translateX(-5px);
}

.boton-contactar:hover .icono-boton {
    transform: translateX(0);
    opacity: 1;
}

.boton-contactar:hover .efecto-hover {
    transform: translateY(0);
}

/* Animación de pulsación constante */
@keyframes pulsacion {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.efecto-pulsacion {
    animation: pulsacion 2s infinite;
}

/* Efecto al hacer clic */
.boton-contactar:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 5px 15px rgba(0, 158, 218, 0.8);
}

.nuestro-objetivo {
    background-color: #f8fafc;
    padding: 80px 0;
    margin: 80px 0;
    position: relative;
}

.nuestro-objetivo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #009EDA, #5CB6E6);
}

.contenedor-objetivo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contenedor-objetivo h3 {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 30px;
    text-align: center;
}

.contenedor-objetivo p {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.servicios-destacados {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.servicio-destacado {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #009EDA;
}

.servicio-destacado:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 158, 218, 0.15);
}

.servicio-destacado i {
    font-size: 2.5rem;
    color: #009EDA;
    margin-bottom: 20px;
}

.servicio-destacado h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #111;
}

.servicio-destacado p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .contenedor-sobre-nosotros {
        flex-direction: column;
        gap: 40px;
    }
    
    .imagen-equipo {
        min-width: 100%;
    }
    
    .servicios-destacados,
    .tarjetas-compromiso {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contenedor-titulo h2 {
        font-size: 2.2rem;
    }
    
    .tarjeta-experiencia h3 {
        font-size: 1.8rem;
    }
    
    .nuestro-objetivo {
        padding: 60px 0;
    }
    
    .servicios-destacados,
    .tarjetas-compromiso {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .contenedor-titulo h2 {
        font-size: 2rem;
    }
    
    .imagen-equipo {
        min-width: auto;
    }
    
    .descripcion p {
        font-size: 1rem;
    }
    
    .lista-certificaciones li {
        font-size: 0.95rem;
    }
}

/* soluciones */

/* Estilos sección soluciones tecnológicas */
.soluciones-tecnologicas {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.contenedor-titulo {
    text-align: center;
    margin-bottom: 60px;
}

.contenedor-titulo h2 {
    font-size: 2.5rem;
    color: #111;
    margin: 20px 0;
}

.grid-soluciones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.solucion {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #009EDA;
    position: relative;
    overflow: hidden;
}

.solucion:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 158, 218, 0.15);
}

.icono-solucion {
    font-size: 2.5rem;
    color: #009EDA;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.solucion:hover .icono-solucion {
    transform: scale(1.1);
}

.solucion h3 {
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 15px;
    font-weight: 700;
}

.solucion p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.boton-solucion {
    display: inline-flex;
    align-items: center;
    color: #009EDA;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.boton-solucion i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.boton-solucion:hover {
    color: #0077B5;
}

.boton-solucion:hover i {
    transform: translateX(5px);
}

.contenedor-busqueda {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.busqueda {
    position: relative;
    display: flex;
}

.busqueda input {
    width: 100%;
    padding: 15px 25px;
    border: 2px solid #009EDA;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.busqueda input:focus {
    border-color: #0077B5;
    box-shadow: 0 0 0 3px rgba(0, 158, 218, 0.2);
}

.busqueda button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #009EDA;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.busqueda button:hover {
    background: #0077B5;
    transform: scale(1.05);
}

/* flotantes */

/* Modales */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.mostrar {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-contenido {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal.mostrar .modal-contenido {
    transform: scale(1);
}

.modal-cerrar {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4757;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-cerrar:hover {
    background: #ff6b81;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, #0c4a6e 0%, #009EDA 100%);
    color: white;
    padding: 40px 40px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-icono {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.modal-body {
    padding: 30px 40px;
}

.modal-imagenes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.modal-imagenes img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.modal-imagenes img:hover {
    transform: scale(1.02);
}

.modal-texto h3 {
    color: #0c4a6e;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.modal-texto p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-texto ul {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.modal-texto li {
    margin-bottom: 8px;
}

.modal-caracteristicas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.caracteristica {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #009EDA;
}

.caracteristica i {
    color: #009EDA;
}

.modal-footer {
    padding: 25px 40px;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.boton-cotizar {
    background: linear-gradient(135deg, #009EDA 0%, #0c4a6e 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 158, 218, 0.3);
}

.boton-cotizar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 158, 218, 0.4);
}

/* Estadísticas del modal de seguridad */
.modal-estadisticas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    text-align: center;
}

.estadistica {
    background: linear-gradient(135deg, #0c4a6e 0%, #009EDA 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 158, 218, 0.3);
}

.numero {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.texto {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mejora para características */
.caracteristica {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #009EDA;
    transition: transform 0.3s ease;
}

.caracteristica:hover {
    transform: translateX(5px);
}

.caracteristica i {
    font-size: 1.5rem;
    color: #009EDA;
    min-width: 30px;
}

/* Estilos específicos para modal de incendios */
.modal-normas {
    margin: 25px 0;
    padding: 20px;
    background: #fff3e0;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.modal-normas h4 {
    color: #d84315;
    margin-bottom: 15px;
}

.normas-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.norma-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f4511e 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(244, 81, 30, 0.3);
}

/* Estadísticas con tema de incendios */
#modal-incendios .estadistica {
    background: linear-gradient(135deg, #ff6b35 0%, #d84315 100%);
}

#modal-incendios .caracteristica {
    border-left-color: #ff6b35;
}

#modal-incendios .caracteristica i {
    color: #ff6b35;
}

/* Botón de cotización para incendios */
#modal-incendios .boton-cotizar {
    background: linear-gradient(135deg, #ff6b35 0%, #d84315 100%);
    box-shadow: 0 5px 15px rgba(244, 81, 30, 0.3);
}

#modal-incendios .boton-cotizar:hover {
    box-shadow: 0 8px 25px rgba(244, 81, 30, 0.4);
}

/* Asegurar que las imágenes siempre se vean bien */
.modal-imagenes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    min-height: 200px; /* Altura mínima */
}

.modal-imagenes img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: linear-gradient(45deg, #ffebee, #ffcdd2); /* Fondo temático */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d32f2f;
    font-weight: bold;
}

/* Estilo para cuando falla la imagen */
.modal-imagenes img:after {
    content: "🔥 Sistema Incendios";
    display: none;
}

.modal-imagenes img[src*="placehold"] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-align: center;
}

/* Estilos específicos para modal de intrusión */
#modal-intrusion .modal-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

#modal-intrusion .estadistica {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

#modal-intrusion .caracteristica {
    border-left-color: #2c3e50;
}

#modal-intrusion .caracteristica i {
    color: #2c3e50;
}

#modal-intrusion .boton-cotizar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

#modal-intrusion .boton-cotizar:hover {
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

/* Niveles de seguridad */
.modal-niveles {
    margin: 25px 0;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 10px;
    border-left: 4px solid #2c3e50;
}

.modal-niveles h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.niveles-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.nivel {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nivel-icono {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.nivel-titulo {
    display: block;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.nivel-desc {
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* Estilos específicos para modal de Data Center */
#modal-data .modal-header {
    background: linear-gradient(135deg, #006699 0%, #004466 100%);
}

#modal-data .estadistica {
    background: linear-gradient(135deg, #006699 0%, #004466 100%);
}

#modal-data .caracteristica {
    border-left-color: #006699;
}

#modal-data .caracteristica i {
    color: #006699;
}

#modal-data .boton-cotizar {
    background: linear-gradient(135deg, #006699 0%, #004466 100%);
    box-shadow: 0 5px 15px rgba(0, 102, 153, 0.3);
}

#modal-data .boton-cotizar:hover {
    box-shadow: 0 8px 25px rgba(0, 102, 153, 0.4);
}

/* Especificaciones técnicas */
.modal-especificaciones {
    margin: 25px 0;
    padding: 20px;
    background: #e8f4f8;
    border-radius: 10px;
    border-left: 4px solid #006699;
}

.modal-especificaciones h4 {
    color: #006699;
    margin-bottom: 15px;
}

.especificaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.especificacion {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.especificacion i {
    font-size: 1.5rem;
    color: #006699;
    margin-bottom: 8px;
    display: block;
}

.especificacion span {
    display: block;
    font-weight: bold;
    color: #006699;
    margin-bottom: 5px;
}

.especificacion small {
    font-size: 0.75rem;
    color: #7f8c8d;
}

/* Niveles Tier */
#modal-data .nivel {
    background: linear-gradient(135deg, #e8f4f8 0%, #ffffff 100%);
    border: 1px solid #b8e0f0;
}

/* Estilos específicos para modal de Telefonía */
#modal-voip .modal-header {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

#modal-voip .estadistica {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

#modal-voip .caracteristica {
    border-left-color: #27ae60;
}

#modal-voip .caracteristica i {
    color: #27ae60;
}

#modal-voip .boton-cotizar {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

#modal-voip .boton-cotizar:hover {
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

/* Funcionalidades grid */
.modal-funcionalidades {
    margin: 25px 0;
    padding: 20px;
    background: #e8f8ef;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.modal-funcionalidades h4 {
    color: #27ae60;
    margin-bottom: 15px;
}

.funcionalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.funcionalidad {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.funcionalidad:hover {
    transform: translateY(-3px);
}

.funcionalidad i {
    font-size: 1.5rem;
    color: #27ae60;
    margin-bottom: 8px;
    display: block;
}

.funcionalidad span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Beneficios */
.modal-beneficios {
    margin: 25px 0;
}

.modal-beneficios h4 {
    color: #27ae60;
    margin-bottom: 15px;
}

.beneficios-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.beneficio {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #e8f8ef;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.beneficio i {
    font-size: 1.5rem;
    color: #27ae60;
    margin-top: 3px;
}

.beneficio strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

.beneficio p {
    margin: 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}
/* Responsive */
@media (max-width: 768px) {
    .modal-contenido {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 20px;
    }
    
    .modal-imagenes {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contenedor-titulo h2 {
        font-size: 2rem;
    }
    
    .grid-soluciones {
        grid-template-columns: 1fr;
    }
    
    .solucion {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contenedor-titulo h2 {
        font-size: 1.8rem;
    }
    
    .solucion h3 {
        font-size: 1.3rem;
    }
    
    .busqueda input {
        padding: 12px 20px;
    }
}

/* Portafolio de Servicios */
.portafolio-servicios {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.filtros-portafolio {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filtro-btn {
    padding: 12px 25px;
    border: 2px solid #009EDA;
    background: white;
    color: #009EDA;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filtro-btn:hover,
.filtro-btn.activo {
    background: #009EDA;
    color: white;
    transform: translateY(-2px);
}

.grid-portafolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.item-portafolio {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    cursor: pointer;
}

.item-portafolio.visible {
    opacity: 1;
    transform: translateY(0);
}

.item-portafolio img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item-portafolio:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 158, 218, 0.9));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.item-portafolio:hover .overlay {
    transform: translateY(0);
}

.overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.oculto {
    display: none;
}

.contenedor-boton {
    text-align: center;
    margin-top: 40px;
}

.boton-ver-mas {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #009EDA, #0077B5);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 158, 218, 0.3);
}

.boton-ver-mas:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 158, 218, 0.4);
    background: linear-gradient(135deg, #0077B5, #009EDA);
}

/* Animaciones de entrada */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.item-portafolio.animado {
    animation: slideUp 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .filtros-portafolio {
        gap: 10px;
    }
    
    .filtro-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .grid-portafolio {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .item-portafolio img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .grid-portafolio {
        grid-template-columns: 1fr;
    }
    
    .boton-ver-mas {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0c4a6e 0%, #009EDA 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer-superior {
    padding: 60px 0 40px;
}

.footer-contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-columna h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-columna h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #5CB6E6;
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.footer-descripcion {
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.footer-redes {
    display: flex;
    gap: 15px;
}

.red-social {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: white; /* Iconos en blanco */
}

.red-social:hover {
    background: #5CB6E6;
    transform: translateY(-3px);
    border-color: white;
    color: white; /* Mantener blanco al hacer hover */
}

.red-social i {
    color: white !important;
    font-size: 1.1rem;
}

.red-social:hover i {
    color: white !important;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: #5CB6E6;
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.8rem;
}

.footer-contacto {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contacto-item i {
    width: 20px;
    color: white; /* Cambiado a blanco */
    opacity: 0.9;
}


.contacto-item span {
    opacity: 0.9;
}

/* Mapa Styles - VERSIÓN PREMIUM */
.footer-mapa {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0c4a6e 0%, #009EDA 100%);
}

.mapa-contenedor {
    position: relative;
    width: 90%;
    height: 85%;
    margin: 30px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 4px rgba(92, 182, 230, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.mapa-contenedor:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 60px -12px rgba(0, 0, 0, 0.6),
        0 0 0 4px rgba(92, 182, 230, 0.5),
        inset 0 4px 12px rgba(255, 255, 255, 0.3);
}

.mapa-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: 
        grayscale(40%) 
        brightness(95%) 
        contrast(120%)
        hue-rotate(190deg)
        saturate(140%);
    transition: all 0.4s ease;
}

.mapa-iframe:hover {
    filter: 
        grayscale(20%) 
        brightness(100%) 
        contrast(130%)
        hue-rotate(185deg)
        saturate(160%);
}

.mapa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(12, 74, 110, 0.3) 0%, 
                rgba(0, 158, 218, 0.2) 50%, 
                rgba(92, 182, 230, 0.1) 100%);
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Marcador personalizado flotante */
.mapa-marcador {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 10;
    animation: flotar 3s ease-in-out infinite;
}

.mapa-marcador i {
    font-size: 2.5rem;
    color: #FF6B6B;
    text-shadow: 
        0 0 20px rgba(255, 107, 107, 0.8),
        0 0 40px rgba(255, 107, 107, 0.4),
        0 0 60px rgba(255, 107, 107, 0.2);
}

@keyframes flotar {
    0%, 100% { transform: translate(-50%, -100%) translateY(0px); }
    50% { transform: translate(-50%, -100%) translateY(-10px); }
}

/* Efecto de borde luminoso */
.mapa-contenedor::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, 
                #009EDA, 
                #5CB6E6, 
                #94CAED, 
                #009EDA);
    z-index: -1;
    animation: bordeLuminoso 3s ease-in-out infinite;
    background-size: 400% 400%;
}

@keyframes bordeLuminoso {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Tooltip de ubicación */
.mapa-tooltip {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 15px;
    color: #0c4a6e;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mapa-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-mapa {
        height: 350px;
    }
    
    .mapa-contenedor {
        width: 95%;
        height: 80%;
        margin: 20px auto;
        border-radius: 15px;
    }
    
    .mapa-marcador i {
        font-size: 2rem;
    }
    
    .mapa-tooltip {
        font-size: 0.8rem;
        padding: 10px 16px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .footer-mapa {
        height: 300px;
    }
    
    .mapa-contenedor {
        border-radius: 12px;
        margin: 15px auto;
    }
    
    .mapa-tooltip {
        font-size: 0.75rem;
        padding: 8px 12px;
        bottom: 10px;
    }
}
/* Footer Inferior */
.footer-inferior {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.derechos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.derechos p {
    margin: 0;
    opacity: 0.8;
}

.diseñador {
    color: white; /* Cambiado a blanco */
    text-decoration: none; /* Sin subrayado */
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.diseñador:hover {
    color: #5CB6E6; /* Azul al hacer hover */
    text-decoration: none; /* Mantener sin subrayado */
    opacity: 1;
    transform: translateY(-1px);
}

/* Animación del logo */
@keyframes logoWave {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(2deg); }
    50% { transform: scale(0.95) rotate(-2deg); }
    75% { transform: scale(1.02) rotate(1deg); }
}

#footer-logo {
    animation: logoWave 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-contenedor {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-columna h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-redes {
        justify-content: center;
    }
    
    .contacto-item {
        justify-content: center;
    }
    
    .derechos {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-superior {
        padding: 40px 0 30px;
    }
    
    .footer-columna h4 {
        font-size: 1.2rem;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .red-social {
        width: 40px;
        height: 40px;
    }
}

/* Redes Sociales Flotantes */
.redes-flotantes {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flotante-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(100px);
    opacity: 0;
    animation: slideIn 0.6s ease forwards;
}

.flotante-btn:nth-child(1) { animation-delay: 0.2s; }
.flotante-btn:nth-child(2) { animation-delay: 0.4s; }
.flotante-btn:nth-child(3) { animation-delay: 0.6s; }

.flotante-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.flotante-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.flotante-btn.facebook {
    background: linear-gradient(135deg, #1877F2, #0A5CAD);
}

.flotante-btn.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4, #5851DB);
}

/* Tooltip */
.tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) rotate(45deg);
}

.flotante-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Animaciones */
@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Animación de pulso para WhatsApp */
.flotante-btn.whatsapp {
    animation: slideIn 0.6s ease forwards, pulse 2s ease-in-out infinite 3s;
}

/* Efecto de onda */
.flotante-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: wave 2s ease-out infinite;
    opacity: 0;
    z-index: -1;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .redes-flotantes {
        right: 15px;
        bottom: 15px;
    }
    
    .flotante-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .tooltip {
        display: none;
    }
    
    .flotante-btn:hover {
        transform: translateY(-3px) scale(1.05);
    }
}

@media (max-width: 480px) {
    .redes-flotantes {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }
    
    .flotante-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}