@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ? Estilos Generales */


    /** Barra de Navegación */

    .p-superior{
        background-color: #0a192f;
        display: block;
        padding: 10px 20px;
        color: white;
    }


    @media (min-width: 400px) {
        .p-superior{
            background-color: #0a192f;
            display: flex;
            align-items: center;
            justify-content: end;
            height: 50px;
        }
        
        .p-superior div {
            margin: 0 15px; /* o margin-right si están en línea */
        }
    }

    .bg-body-tertiary {
        background-color: #007bff !important; /* azul Bootstrap */
    }

/*? Inicio */

/** Carrusel Responsivo */

.f-carrusel,
.carousel,
.carousel-item {
    width: 100%;
    height: 100vh; /* por defecto: ocupa toda la pantalla */
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 💻 Laptops (pantallas medianas entre 1024px y 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
    .f-carrusel,
    .carousel,
    .carousel-item {
        height: 85vh; /* ocupa el 85% de la pantalla */
    }
}

/* 📱 Tablets (pantallas menores a 992px) */
@media (max-width: 992px) {
    .f-carrusel,
    .carousel,
    .carousel-item {
        height: 70vh;
    }
}

/* 📲 Celulares (pantallas menores a 576px) */
@media (max-width: 576px) {
    .f-carrusel,
    .carousel,
    .carousel-item {
        height: 55vh;
    }
}

:root {
    --color-principal: #0a192f;
}

/* Fondo del texto con transparencia elegante */
.caption-style {
    background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(6px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Título del carrusel */
.titulo-carousel {
    color: #00b4d8 !important;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

/* Descripción */
.caption-style p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f1f1f1;
}

/* Botón */
.btn-carousel {
    background: linear-gradient(135deg, #0a192f, #113a6d);
    border: none;
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.4);
    transition: all 0.35s ease;
}

/* Efecto hover */
.btn-carousel:hover {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.5);
}

/* Efecto clic */
.btn-carousel:active {
    transform: scale(0.97);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

/* Animación más suave */
.animate__animated.animate__fadeInUp {
    animation-duration: 1.2s;
    animation-delay: 0.3s;
}

/** Servicios */
/* Sección general */
.servicios-section {
    background-color: #c8102e; /* Rojo principal */
    color: #fff;
    padding: 60px 0;
    font-family: "Poppins", sans-serif;
}

/* Contenedor principal */
.servicios-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* Título lateral */
.servicios-title {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(120%) rotate(-90deg);
    text-align: center;
    transform-origin: left top;
}

.servicios-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.servicios-title p {
    font-size: 1.2rem;
    margin: 0;
}

/* Contenido principal */
.servicios-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    position: relative;
}

/* Botones navegación */
.btn-nav {
    background: #fff;
    color: #c8102e;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-nav:hover {
    background: #fd7a2e;
    color: #fff;
}

/* Item del servicio */
.servicio-item {
    background-color: #c8102e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
}

.servicio-texto {
    max-width: 55%;
}

.servicio-texto h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.servicio-texto p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-detalle {
    display: inline-block;
    background: #fff;
    color: #c8102e;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-detalle:hover {
    background: #fd7a2e;
    color: #fff;
}

/* Imagen circular */
.servicio-imagen {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicio-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsivo */
@media (max-width: 900px) {
    .servicio-item {
            flex-direction: column;
            text-align: center;
    }

    .servicio-texto {
            max-width: 100%;
    }

    .servicio-imagen {
            width: 250px;
            height: 250px;
    }

    .servicios-title {
        position: static;
        transform: none;
        margin-bottom: 20px;
    }
    }

  /** Contenido Inicio */

    .c-1{
    margin: 25px 0;
}

.c-i-1{
    width: 300px;
    height: 200px;
    border-radius: 10px;
}

.c-img{
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease;
}

/* Estado visible */
.c-img.visible {
    opacity: 1;
    transform: translateX(0);
}

.custom-title {
    font-weight: bold; /* negrita para darle énfasis */
    color: #333; /* color oscuro para un contraste claro */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* sombra sutil para dar profundidad */
    margin-bottom: 20px; /* espaciado abajo */
    letter-spacing: 1px; /* espacio entre letras */
    text-transform: uppercase; /* convertir el texto a mayúsculas */
    padding-left: 10px; /* padding a la izquierda */
    border-left: 4px solid #007BFF; /* barra a la izquierda del título */
}

@media (min-width: 390px) {
    .c-i-1{
        width: 280px;
        height: 200px;
        border-radius: 10px;
    }

    .C-1 .row{
        padding: 0 20px;
    }

    .custom-title {
        font-size: 1.5rem;
    }

}

@media (min-width: 768px) {
    .c-i-1{
        width: 550px;
        height: 300px;
        border-radius: 10px;
    }

    .c-img{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .custom-title {
        font-size: 2rem;
    }
}

/* * Inicio Servicios */

.d-tit{
    font-weight: bold; /* negrita para darle énfasis */
    color: #333; /* color oscuro para un contraste claro */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* sombra sutil para dar profundidad */
}

.f-servicos{
    background: #000980de;
    border-radius: 10px;
}

.servicios{
    margin-top: 20px;
    text-align: center;
}

.linea-vertical {
    width: 200px;
    height: 3px;
    background-color: #ffffff; /* ajusta el color si lo deseas */
}

@media (min-width: 769px) {
    .servicios {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px; /* Espacio entre elementos */
        height: 300px; /* o el alto que desees */
        justify-content: center;
    }

    .T-S, .subtitulo {
        writing-mode: vertical-rl;
        transform: rotate(180deg); /* para que se lean de abajo hacia arriba */
        text-align: center;
    }

    .linea-vertical {
        width: 3px;
        height: 200px;
        background-color: #ffffff; /* ajusta el color si lo deseas */
    }
}

.T-S {
    font-size: 45px;
    font-weight: bold;
}

.subtitulo {
    font-size: 18px;
    font-weight: 500;
}


.c-w {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin: 20px 0;
    }

.c-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    }

.slider-serv {
    flex: 0 0 100%;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */
    color: white;
    padding: 20px;
    border-radius: 15px;
    height: 100%; /* asegura altura completa del carrusel si se necesita */
    min-height: 300px; /* opcional: altura mínima */
    text-align: left;
    }

.slider-serv div {
    flex: 1;
    padding: 10px;
    }

.img-slider-serv {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    }

.c-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s;
    }

.c-btn:hover {
    background: rgba(255,255,255,0.5);
    }

.c-prev { left: 5px; }
.c-next { right: 10px; }

.btn-ser {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff3c3c; /* rojo fuego */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

.btn-ser:hover {
    background-color: #e32e2e;
    transform: translateY(-2px);
}

@media (max-width: 410px) {
    .slider-serv {
        flex-direction: column;
        text-align: center;
    }

    .slider-serv .text-center, 
    .slider-serv .d-flex {
        width: 100%;
    }
}

.clientes-i img{
    width: 150px;
    height: 150px;
    border-radius: 20px;
}

/*? Nosotros */
    /* ===== Fondo general ===== */
    .nosotros-section {
    background: linear-gradient(160deg, #0a192f 0%, #112e52 60%, #0a192f 100%);
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
    }

    .nosotros-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0,180,216,0.15), transparent 60%);
    pointer-events: none;
    }

    /* ===== Contenedor de imagen ===== */
    .img-nosotros-container {
    width: 80%;
    position: relative;
    display: inline-block;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    background: linear-gradient(135deg, #00b4d8, #0a192f);
    padding: 5px;
    animation: borderPulse 6s infinite alternate ease-in-out;
    }

    @keyframes borderPulse {
    0% {
        box-shadow: 0 0 15px #00b4d8, 0 0 30px rgba(0, 180, 216, 0.4);
    }
    100% {
        box-shadow: 0 0 25px #00b4d8, 0 0 50px rgba(0, 180, 216, 0.7);
    }
    }

    .img-nosotros {
    border-radius: 20px;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.95) contrast(1.05) saturate(1.1);
    }

    .img-nosotros-container:hover .img-nosotros {
    transform: scale(1.06);
    filter: brightness(1.1) contrast(1.2);
    }

    /* ===== Brillo dinámico ===== */
    .img-brillo {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%, /* antes 0.5 */
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    filter: blur(2px); /* difumina el brillo para hacerlo más suave */
    }

    .img-nosotros-container:hover .img-brillo {
    left: 125%;
    transition: all 0.7s ease;
    }

    /* ===== Efecto flotante ===== */
    .img-nosotros-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    }

    /* ===== Título con animación ===== */
    .titulo-nosotros {
    color: #00b4d8;
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-shadow: 0 0 12px rgba(0,180,216,0.6);
    }

    .titulo-nosotros::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #00b4d8;
    transition: width 0.8s ease;
    border-radius: 3px;
    }

    .titulo-nosotros:hover::after {
    width: 100%;
    }

    /* ===== Texto general ===== */
    .descripcion-nosotros {
    font-size: 1.05rem;
    color: #e8eef4;
    line-height: 1.8;
    }

    .subtitulo-nosotros {
    color: #00b4d8;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    position: relative;
    font-weight: 600;
    }

    .subtitulo-nosotros::before {
    content: "⸻";
    color: #00b4d8;
    margin-right: 8px;
    }

    .valores-list li {
    margin-bottom: 0.5rem;
    color: #e8eef4;
    }

    /* ===== Botón estilizado mejorado ===== */
    .btn-nosotros {
    background: linear-gradient(135deg, #00b4d8, #48cae4);
    color: #0a192f !important;
    border: none;
    border-radius: 40px;
    padding: 12px 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 0 4px 18px rgba(0, 180, 216, 0.35);
    position: relative;
    overflow: hidden;
    z-index: 1;
    }

    /* Efecto de luz animado al pasar el cursor */
    .btn-nosotros::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 0;
    }

    .btn-nosotros:hover::before {
    left: 125%;
    }

    .btn-nosotros:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 180, 216, 0.55);
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    color: #fff !important;
    }

    /* ===== Animación de entrada ===== */
    .content-nosotros {
    animation: fadeInUp 1s ease;
    }

    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
/*? Servicios */
    /* * SERVICIO A BASE DE AGUA */
    .servicio-incendio {
    background: linear-gradient(160deg, #0a192f 0%, #0e2f55 60%, #0a192f 100%);
    color: #f1f5f9;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
    }

    .servicio-incendio::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0,180,216,0.15), transparent 60%);
    pointer-events: none;
    }

    /* ===== Imagen principal ===== */
    .img-servicio-container {
    width: 95%;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a192f, #00b4d8);
    padding: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    }

    .img-servicio {
    border-radius: 20px;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.95) contrast(1.05);
    }

    .img-servicio-container:hover .img-servicio {
    transform: scale(1.05);
    filter: brightness(1.08);
    }

    /* ===== Galería lateral ===== */
    .galeria-servicio .img-mini {
    width: 28%;
    border-radius: 15px;
    border: 2px solid rgba(0,180,216,0.5);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .galeria-servicio .img-mini:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(0,180,216,0.5);
    border-color: #00b4d8;
    }

    /* ===== Brillo sutil ===== */
    .img-brillo {
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.8s ease;
    }
    .img-servicio-container:hover .img-brillo {
    left: 130%;
    }

    /* ===== Títulos y texto ===== */
    .titulo-servicio {
    font-size: 2.5rem;
    color: #00b4d8;
    margin-bottom: 1rem;
    }
    .descripcion-servicio {
    color: #e2e8f0;
    line-height: 1.8;
    font-size: 1.05rem;
    }

    /* ===== Íconos y características ===== */
    .servicio-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    }
    .servicio-item:hover {
    background: rgba(0, 180, 216, 0.08);
    transform: translateY(-5px);
    }
    .icono-servicio {
    font-size: 1.6rem;
    color: #00b4d8;
    min-width: 35px;
    }

    /* ===== Botón ===== */
    .btn-servicio {
    display: inline-block;
    background: transparent;
    border: 2px solid #00b4d8;
    color: #00b4d8 !important;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
    }
    .btn-servicio:hover {
    background: #00b4d8;
    color: #0a192f !important;
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.6);
    }

    /** SERVI ALARMA */
    /* ===== SERVICIO DE DETECCIÓN Y ALARMA ===== */
    .servicio-alarma {
    background: linear-gradient(160deg, #0a192f 0%, #0e2f55 60%, #0a192f 100%);
    color: #f1f5f9;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
    }

    .servicio-alarma::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0,180,216,0.15), transparent 60%);
    pointer-events: none;
    }

    /* ===== Imagen principal ===== */
    .img-alarma-container {
    width: 95%;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a192f, #00b4d8);
    padding: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    }

    .img-alarma {
    border-radius: 20px;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.95) contrast(1.05);
    }

    .img-alarma-container:hover .img-alarma {
    transform: scale(1.05);
    filter: brightness(1.08);
    }

    /* ===== Galería lateral ===== */
    .galeria-alarma .img-alarma-mini {
    width: 28%;
    border-radius: 15px;
    border: 2px solid rgba(0,180,216,0.5);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .galeria-alarma .img-alarma-mini:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(0,180,216,0.5);
    border-color: #00b4d8;
    }

    /* ===== Brillo sutil ===== */
    .img-alarma-brillo {
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.8s ease;
    }

    .img-alarma-container:hover .img-alarma-brillo {
    left: 130%;
    }

    /* ===== Títulos y texto ===== */
    .titulo-alarma {
    font-size: 2.5rem;
    color: #00b4d8;
    margin-bottom: 1rem;
    }

    .descripcion-alarma {
    color: #e2e8f0;
    line-height: 1.8;
    font-size: 1.05rem;
    }

    /* ===== Íconos y características ===== */
    .alarma-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    }

    .alarma-item:hover {
    background: rgba(0, 180, 216, 0.08);
    transform: translateY(-5px);
    }

    .icono-alarma {
    font-size: 1.6rem;
    color: #00b4d8;
    min-width: 35px;
    }

    /* ===== Botón ===== */
    .btn-alarma {
    display: inline-block;
    background: transparent;
    border: 2px solid #00b4d8;
    color: #00b4d8 !important;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
    }

    .btn-alarma:hover {
    background: #00b4d8;
    color: #0a192f !important;
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.6);
    }

    /** === SEGURIDAD ELECTRÓNICA === */
    .servicio-seguridad {
    background: linear-gradient(160deg, #001220 0%, #002c47 60%, #001220 100%);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
    }

    .servicio-seguridad::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0,180,216,0.1), transparent 70%);
    pointer-events: none;
    }

    /* Título y descripción */
    .titulo-seguridad {
    font-size: 2.8rem;
    color: #00b4d8;
    text-transform: uppercase;
    letter-spacing: 1px;
    }
    .descripcion-seguridad {
    max-width: 750px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    }

    /* Imagen y efectos */
    .img-seguridad-container {
    position: relative;
    width: 95%;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a192f, #00b4d8);
    padding: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.6s ease;
    }

    .img-seguridad {
    border-radius: 20px;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.95) contrast(1.05);
    }

    .img-seguridad-container:hover .img-seguridad {
    transform: scale(1.05);
    filter: brightness(1.1);
    }

    /* Brillo animado */
    .img-brillo-seguridad {
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.8s ease;
    }
    .img-seguridad-container:hover .img-brillo-seguridad {
    left: 130%;
    }

    /* Subtítulos y texto */
    .subtitulo-seguridad {
    color: #00b4d8;
    font-size: 2rem;
    margin-bottom: 1rem;
    }
    .content-seguridad p {
    color: #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.8;
    }

    /* Lista con íconos */
    .lista-seguridad {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    }
    .lista-seguridad li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    }
    .lista-seguridad li:hover {
    background: rgba(0, 180, 216, 0.08);
    transform: translateY(-3px);
    }
    .lista-seguridad i {
    color: #00b4d8;
    font-size: 1.3rem;
    }

    /* Botón */
    .btn-seguridad {
    display: inline-block;
    background: transparent;
    border: 2px solid #00b4d8;
    color: #00b4d8 !important;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
    }
    .btn-seguridad:hover {
    background: #00b4d8;
    color: #001220 !important;
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.6);
    }

    /**Clientes*/
    .clientes {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: #f8f9fa; /* Fondo claro tipo sección corporativa */
    padding: 40px 0;
    }

    .carrusel-clientes {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    }

    .carrusel-track {
    display: flex;
    gap: 50px;
    animation: scroll 25s linear infinite;
    }

    .carrusel-track img {
    height: 120px; /* Tamaño más grande */
    width: auto;
    object-fit: contain;
    border: 2px solid #ddd;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);

    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    filter: grayscale(80%);
    }

    .carrusel-track img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    border-color: #0d6efd; /* Azul Bootstrap */
    }

    /* Animación del movimiento */
    @keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
    }

    /* Responsividad */
    @media (max-width: 768px) {
    .carrusel-track img {
        height: 80px;
        padding: 8px;
    }
    }

    @media (max-width: 480px) {
    .carrusel-track {
        gap: 30px;
    }
    .carrusel-track img {
        height: 70px;
    }
    }

/*? Contacto */

    /* ===== Fondo general ===== */
    .contacto-section {
    background: linear-gradient(160deg, #0a192f 0%, #112e52 60%, #0a192f 100%);
    color: #f1f5f9;
    position: relative;
    overflow: hidden;
    }

    .contacto-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0,180,216,0.15), transparent 70%);
    pointer-events: none;
    }

    /* ===== Título ===== */
    .titulo-contacto {
    color: #00b4d8;
    font-size: 2.2rem;
    position: relative;
    margin-bottom: 1rem;
    }

    /* ===== Texto general ===== */
    .descripcion-contacto {
    color: #d9e4f0;
    font-size: 1.05rem;
    line-height: 1.7;
    }

    /* ===== Lista de contacto ===== */
    .contacto-info ul li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #e0f7fa;
    }

    /* ===== Íconos sociales ===== */
    .social-icons {
    margin-top: 1.2rem;
    }

    .social-link {
    display: inline-block;
    color: #00b4d8;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: all 0.3s ease;
    }

    .social-link:hover {
    color: #48cae4;
    transform: translateY(-3px);
    }

    /* ===== Formulario ===== */
    .contacto-form {
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    }

    .contacto-form .form-label {
    color: #a8c0d6;
    font-weight: 500;
    }

    .contacto-form .form-control {
    background-color: rgba(255, 255, 255, 0.08);
    color: #e9f1f7;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    }

    .contacto-form .form-control:focus {
    border-color: #00b4d8;
    box-shadow: 0 0 12px rgba(0, 180, 216, 0.4);
    background-color: rgba(255, 255, 255, 0.12);
    }

    /* ===== Botón ===== */
    .btn-contacto {
    background: linear-gradient(135deg, #00b4d8, #48cae4);
    color: #0a192f !important;
    border: none;
    border-radius: 40px;
    padding: 12px 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 0 4px 18px rgba(0, 180, 216, 0.35);
    position: relative;
    overflow: hidden;
    z-index: 1;
    }

    .btn-contacto:hover {
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    color: #fff !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 180, 216, 0.55);
    }

    /* ===== Mapas ===== */
    .mapas-container {
    margin-top: 2rem;
    }

    .mapa-item iframe {
    border-radius: 20px;
    filter: brightness(0.95) contrast(1.1);
    transition: all 0.5s ease;
    }

    .mapa-item:hover iframe {
    filter: brightness(1.05) contrast(1.2);
    transform: scale(1.02);
    }

/*? Footer */
.footer-vtec{
    background: #0a192f;
}

.titulo-subrayado {
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.titulo-subrayado::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 3px;
    background-color: #072cff; /* color de subrayado */
}

.footer-vtec h4{
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

.logo-empresa{
    display: block;
    width: 250px;
    border-radius: 15px;
}

.t-b{
    height: 60px;
}

/* ? Error */
