@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&family=Onest:wght@100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background: #EDEDF4;
    height: 100%;
}

/*----------------------SPINNERS(loading...)-----------------------------*/
#contenedor-loader {
    position: fixed;
    z-index: 9999;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1) url(../img/spinner.gif) center no-repeat;
}


/**************************/
/********  LOADER  ********/
/**************************/
.loader {
    z-index: 99999 !important;
    position: absolute;
    top: 0;
    left: 0;
    background: #68bcc798;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;

}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;

}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FBBC05;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contenedor-acerca {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/*--FONDO DINAMICO EN EL BACKHROUND: PARTICULAS----*/
#particles-js {
    position: absolute;
    width: 100%;
    height: 100% !important;
    top: 0;
    left: 0;
    z-index: 0;
}

section {
    position: relative;
    z-index: 1;
}

/*--SPINNER DE CARGAR----*/
/* Spinner Minimalista */
#spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.minimal-rocket {
    position: relative;
    width: 100px;
    height: 100px;
}

.minimal-rocket .rocket {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 35px;
    background: var(--amarillo);
    border-radius: 50% 50% 0 0;
    animation: orbit 1.5s linear infinite;
}

.minimal-rocket .flame {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid var(--amarillo);
}

@keyframes orbit {
    0% {
        transform: translateX(-50%) rotate(0deg) translateY(0) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg) translateY(0) rotate(-360deg);
    }
}

.elemento-sticky {
    width: 100%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    font-size: 14px;
}

.wrapper {
    width: 100%;
}

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-image: linear-gradient(to right, var(--azul), var(--azul-claro));
    color: #fff !important;
    opacity: 1;
    padding: 5px 0;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.fixed a {
    color: #fff !important;
}

/*------------------- SCROLL GENERAL --------------------*/
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to top, var(--azul-claro) 15%, var(--azul) 85%);
}

::-webkit-scrollbar-horizontal {
    height: 8px;
}

::-webkit-scrollbar-thumb:horizontal {
    background-color: var(--azul);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*------------------- COLORES --------------------*/
:root {
    --amarillo: #d39540;
    --amarillo-claro: #cdb164;
    --azul: rgb(8, 89, 137);
    --rojo: #e2301e;
    --marino: #08475c;
    --gris: #bdbbbc;
    --azul-claro: rgb(55, 157, 162);
    --azul-medio: rgb(55, 144, 162);
    --blanco: #EDEDF4;
    --naranja: #f4a967;
    --fondo-blanco: #fff;
    --blanco-gris: #bdc5cdb3;
}



.bg-azul {
    background-color: var(--azul);
}

.bg-amarillo {
    background-color: var(--amarillo) !important;
}

.bg-amarillo-degradado {
    background: linear-gradient(to right, var(--naranja), var(--amarillo-claro)) !important;
}

.bg-amarillo-servicios {
    background: #ffe9ce !important;
}

.btn-amarillo {
    color: #fff !important;
    background-color: var(--amarillo) !important;
}

.btn-azul {
    color: #fff !important;
    background-color: var(--azul) !important;
}

.text-banner {
    background-image: linear-gradient(to right, var(--naranja), #f6d5ac);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-azul-degradado {
    background-image: linear-gradient(to right, var(--azul), var(--azul-claro));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.text-azul {
    color: var(--azul) !important;
}

.text-amarillo {
    color: var(--amarillo) !important;
}

.text-azul-medio {
    color: var(--azul-medio) !important;
}

.fondo-azul {
    background: linear-gradient(to left, var(--azul), var(--azul-claro)) !important;
}

/*------------------- INICIO --------------------*/
/*------------------- BANNER INICIO --------------------*/
.banner-main {
    background: linear-gradient(to left, var(--azul), var(--azul-claro));
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.nodos-tecnologicos {
    position: absolute;
    top: 0;
    right: 0;
    left: -10;
    width: 50vw;
    height: 85vh;
    pointer-events: none;
}

.nodo {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.linea {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.15);
    transform-origin: 0 0;
}

.olas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 3 !important;
}

.ola {
    position: absolute;
    z-index: 3 !important;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.ola2 {
    z-index: 4 !important;
}

.ola3 {
    z-index: 2 !important;
}

/* Laptops medianas (entre 1025px y 1330px) */
@media (max-width: 1330px) {
    .banner-main {
        padding: 0 5%;
    }
}

/* Laptops pequeñas y tablets horizontales */
@media (max-width: 1024px) {
    .banner-main{
        padding: 0 4%;
    }
}

/* Tablets verticales y móviles grandes */
@media (max-width: 768px) {
    .banner-main{
        padding: 0 3%;
    }

    .display-2,
    #text-main,
    #button-main {
        text-align: center !important;
    }

    .display-2 {
        font-size: 2.2rem !important;
    }

    #text-main {
        font-size: 1.1rem !important;
    }

    .carousel-container {
        height: 260px !important;
    }
}

/* Móviles medianos */
@media (max-width: 588px) {
    .banner-main{
        padding: 0 3%;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .banner-main{
        padding: 0 4%;
    }
}


/*------------------- MENU ------------------*/
.navbar-nav .nav-link {
    position: relative;
    font-size: 18px;
    text-decoration: none;
    padding-bottom: 5px;
    color: var(--blanco);
    font-weight: 300;
    margin: auto 15px;
    cursor: pointer;
}

.navbar-nav:hover .nav-link:hover {
    position: relative;
    font-size: 18px;
    text-decoration: none;
    padding-bottom: 5px;
    color: var(--blanco);
    font-weight: 300;
    margin: auto 15px;
    cursor: pointer;
}

.active {
    color: var(--amarillo-claro) !important;
    text-decoration: underline !important;
    text-decoration-color: var(--amarillo) !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 10px !important;
    font-weight: bolder !important;
    cursor: pointer;
}

.submenu {
    display: none;
    position: absolute;
    width: 50vw !important;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-radius: 5px;
    border-top: 8px solid var(--amarillo);
    transition: opacity 0.2s ease;
}

.submenu a {
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    color: #333;
    font-weight: normal;
    cursor: pointer;
}

.submenu a:hover {
    background-image: linear-gradient(to right, rgb(211, 149, 64, 0.8), rgba(255, 235, 59, 0.8));
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    color: #333;
    font-weight: normal;
    cursor: pointer;
    transform: scale(1.00);
    transition: all 0.2s ease-in-out;
}

.icono-menu {
    width: 70px;
    height: 64px;
}

.nav-item {
    position: relative;
}

.nav-item:hover .submenu {
    display: block;
}

/*-----------------FOOTER ----------------------*/

footer div.avisos a {
    color: var(--amarillo);
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
}

footer div.avisos a:hover,
footer div.avisos a:focus {
    background-size: 100% 2px;
}

footer .mail-to,
footer .bi-facebook,
footer .bi-instagram,
footer .bi-youtube {
    text-decoration: none;
    color: var(--blanco);
}

footer .mail-to:hover,
footer .bi-facebook:hover,
footer .bi-instagram:hover,
footer .bi-youtube:hover {
    color: var(--amarillo);
}

footer .submit {
    background: var(--amarillo);
    color: var(--azul-oscuro);
    border: 1px solid var(--azul-oscuro);
}

footer .submit:hover {
    background: var(--azul-oscuro);
    color: var(--blanco);
    border: 1px solid var(--azul-oscuro);

}


/*--------------- CARUSEL-----------------*/
.carousel-container {
    width: 100%;
    margin: 0px auto;
    overflow: hidden;
    perspective: 1000px;
    position: relative;
    z-index: 1000 !important;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    transform-style: preserve-3d;
}

.carousel-card {
    min-width: 370px;
    height: 410px;
    margin: 0px 0px;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    transform-style: preserve-3d;
    transform: scale(0.8) translateZ(-100px);
    transition: transform 0.5s ease-in-out;
    opacity: 0.7;
}

.carousel-card.active {
    transform: scale(1) translateZ(0);
    /* Tarjeta central */
    background-color: #ddd;
    opacity: 1;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    z-index: 9999 !important;
}

.carousel-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    z-index: 5;
}

.dot.active {
    background-color: var(--amarillo);
    z-index: 5;
}

.carousel-button {
    background-color: transparent;
    overflow: hidden;
    border: none;
}

.arrow {
    color: var(--gris);
    font-weight: bold;
    font-size: 25px;
    z-index: 6;
}

@media (max-width: 992px) {
    .carousel-card {
        min-width: 300px;
        height: 350px;
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        width: 90%;
    }

    .carousel-card {
        min-width: 280px;
        height: 220px;
        font-size: 1.3em;
    }

    .carousel-controls {
        margin-top: 15px;
    }

    .arrow {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .carousel-card {
        min-width: 100%;
        height: 300px;
        font-size: 1.2em;
        transform: scale(0.9);
    }

    .carousel-container {
        width: 95%;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

/*---------------------- BANNER DE BENEFICIOS---------------*/
.banner-beneficios {
    background: transparent;
    height: auto;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.cartas-beneficios:hover {
    transform: scale(1.05);
    /* Aumento más suave (5%) */
    z-index: 10;
    /* Asegura que la card hover quede encima de las demás */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    /* Sombra más suave */
}

.bg-azul {
    background: linear-gradient(to left, var(--azul-medio), var(--azul-claro));
}

.border-azul {
    border: 2px solid var(--azul-medio) !important;
}

.border-amarillo {
    border: 2px solid var(--naranja) !important;
}

/*------------------ BANNER DE CARACTERISTICAS------------------*/
.rayo-luz-derecha {
    width: 400px;
    height: 210px;
    background: linear-gradient(90deg,
            var(--naranja) 0%,
            rgba(255, 165, 0, 0.8) 50%,
            rgba(255, 165, 0, 0) 100%);
    transform: rotate(40deg);
    position: absolute;
    top: 0;
    left: -115px;
    z-index: -1;
}

.rayo-luz-izquierda {
    width: 420px;
    height: 220px;
    background: linear-gradient(90deg, rgba(109, 190, 190, 0.7) 50%, rgba(255, 165, 0, 0) 100%);
    transform: rotate(225deg);
    position: absolute;
    bottom: -10px;
    right: -130px;
    z-index: -1;
}

.rayo-luz-amarillo-top {
    width: 420px;
    height: 220px;
    background: linear-gradient(90deg, var(--naranja) 0%, rgba(255, 165, 0, 0.8) 50%, rgba(255, 165, 0, 0) 100%);
    transform: rotate(222deg);
    position: absolute;
    bottom: -60px;
    left: -308px;
    z-index: -1;
}

.rayo-luz-izquierda-top {
    width: 420px;
    height: 220px;
    background: linear-gradient(90deg, rgba(109, 190, 190, 0.7) 50%, rgba(255, 165, 0, 0) 100%);
    transform: rotate(45deg);
    position: absolute;
    top: -80px;
    right: -260px;
    z-index: -1;
}

.rayo-luz-derecha-bottom {
    width: 400px;
    height: 210px;
    background: linear-gradient(90deg,
            var(--naranja) 0%,
            rgba(255, 165, 0, 0.8) 50%,
            rgba(255, 165, 0, 0) 100%);
    transform: rotate(320deg);
    position: absolute;
    bottom: 0;
    left: -115px;
    z-index: -1;
}

.rayo-luz-derecha-top {
    width: 400px;
    height: 210px;
    background: linear-gradient(90deg, var(--naranja) 0%, rgba(255, 165, 0, 0.8) 50%, rgba(255, 165, 0, 0) 100%);
    transform: rotate(140deg);
    position: absolute;
    top: -70px;
    left: -282px;
    z-index: -1
}

.cart-caracteristicas {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.lista ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.lista ul li {
    position: relative !important;
    padding-left: 30px !important;
}

.lista ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 10px !important;
    height: 10px !important;
    background-color: var(--azul) !important;
    border-radius: 50% !important;
    border: 2px solid var(--azul-medio) !important;
    transition: all 0.3s ease !important;
}

.lista ul li:hover::before {
    transform: translateY(-50%) scale(1.2) !important;
    background-color: var(--azul) !important;
    border-color: var(--azul-medio) !important;
}

/* Animación suave para la imagen y el texto */
@keyframes smoothMoveEffect {
    0% {
        transform: translateX(0);
        /* Comienza en su posición original */
        opacity: 1;
    }

    50% {
        transform: translateX(10px);
        /* Desplazamiento suave hacia la derecha */
        opacity: 0.9;
        /* Suaviza la opacidad */
    }

    100% {
        transform: translateX(0);
        /* Vuelve a la posición original */
        opacity: 1;
        /* Regresa la opacidad a su valor normal */
    }
}

/* Estilo para la imagen */
.img-caracteristicas {
    object-fit: cover;
    /* Mantiene la proporción de la imagen */
    border-radius: 15px;
    /* Bordes redondeados */
    width: 100% !important;
    height: 100% !important;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    /* Sombra más fuerte */
    animation: smoothMoveEffect 8s ease-in-out infinite;
    /* Animación suave y continua */
}

/* Estilo para el texto */
.text-caracteristicas {
    animation: smoothMoveEffect 8s ease-in-out infinite;
    /* Animación compartida */
    opacity: 1;
}

/* La animación será aplicada al pasar el ratón */
.img-caracteristicas:hover,
.text-caracteristicas:hover {
    transform: scale(1.05);
    /* Aumenta ligeramente el tamaño */
    opacity: 1;
    /* Mantiene la opacidad al máximo */
}

/* Adicionalmente, puedes aplicar un estilo para el texto mientras el ratón está sobre él */
.text-caracteristicas:hover {
    transform: translateX(15px);
    /* Desplazamiento adicional hacia la derecha */
}

/*------------------ PREGUNTAS Y RESPUESTAS--------------------*/
details {
    border: none;
    transition: all 0.3s ease-in-out;
}

details[open] {
    background-color: #f8fafc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

details summary {
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s;
}

details summary:hover {
    color: #007bff;
}

details p {
    padding: 10px;
    margin: 0;
    border-top: 1px solid #e2e8f0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
}

details[open] p {
    opacity: 1;
    max-height: 100px;
}

/*--------------------- LINEA DE TIEMPO EN ACERCA DE -------------------*/
.carousel-inner img {
    height: 300px;
    /* Ajusta la altura según tu preferencia */
    object-fit: cover;
    /* Esto asegura que la imagen se ajuste sin perder la proporción */
}

.timeline {
    position: relative;
    padding: 0 0;
    width: 110% !important;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--azul-medio);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 0px 20px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    color: var(--azul-claro);
    font-weight: bold;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

/*--------------------- BOTONES FLOTANTES DE WHATSAPP E IR ARRIBA*/
.boton-flotante {
    position: fixed;
    z-index: 15;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    border: none;
}

#btn-ir-arriba {
    background-color: var(--azul-medio);
    bottom: 80px;
    outline: none !important;
}

#btn-ir-arriba:hover {
    background-color: var(--azul);
}

#btn-whatsapp {
    background-color: #25D366;
    bottom: 20px;
    outline: none !important;
}

.mostrar {
    opacity: 1;
    visibility: visible;
}

/*--------------------------- ESTILOS DE SERVICIOS*/
.banner-caracteristicas {
    position: relative;
    overflow: hidden;
}

.nav a {
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/*------------------------ VIDEOVIGILANCIA------------------ */


.banner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.brands {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 1.5rem;
}

.brand {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.brand-logo {
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-logo:hover {
    filter: none;
}


.brand:hover {
    background-color: var(--amarillo);
    color: var(--azul);
    transform: translateY(-3px);
}

.col-5col {
    flex: 0 0 20%;
    /* Cada columna ocupa el 20% del ancho */
    max-width: 20%;
    padding: 0 12px;
    /* Ajusta el padding según tu "gutter" (g-4) */
}

/* Ajuste responsivo para pantallas pequeñas */
@media (max-width: 992px) {
    .col-5col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .col-5col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-5col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Contenedor Principal */
.container-blog {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

/* Secciones */
.section-blog {
    background-color: var(--blanco-gris);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.bg-blog {
    background-color: var(--blanco-gris);
}

.section-blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-h2 {
    color: var(--azul);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--amarillo);
    display: inline-block;
}

.blog-h3 {
    color: var(--azul-medio);
    margin: 1.0rem 0 1rem;
}

.camera-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--azul-secundario);
}

.camera-card:hover .camera-icon {
    color: var(--azul);
}

/* Tipos de Cámaras */
.cameras {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 380px;
    perspective: 1000px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.9s;
    transform-style: preserve-3d;
    border-radius: 8px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.flip-card-front {
    background-color: var(--blanco);
    color: var(--azul-medio);
    border-left: 4px solid var(--azul-medio);
    text-align: left !important;
    border: 1px solid var(--azul-medio);
    /* Borde general de 1px */
    border-left: 4px solid var(--azul-medio);
    /* Sobreescribe solo el izquierdo */
    transition: all 0.3s ease;
}

.flip-card-back {
    background-color: var(--azul-medio);
    color: var(--blanco);
    transform: rotateY(180deg);
    text-align: left !important;
}

.flip-card-amarillo {
    background-color: transparent;
    width: 100%;
    height: 380px;
    perspective: 1000px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.flip-card-amarillo-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.9s;
    transform-style: preserve-3d;
    border-radius: 8px;
}

.flip-card-amarillo:hover .flip-card-amarillo-inner {
    transform: rotateY(180deg);
}

.flip-card-amarillo-front,
.flip-card-amarillo-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.flip-card-amarillo-front {
    background-color: var(--blanco);
    color: var(--azul-medio);
    border-left: 4px solid var(--amarillo);
    text-align: left !important;
    border: 1px solid var(--amarillo);
    /* Borde general de 1px */
    border-left: 4px solid var(--amarillo);
    /* Sobreescribe solo el izquierdo */
    transition: all 0.3s ease;
}

.flip-card-amarillo-back {
    background-color: var(--amarillo);
    color: var(--blanco);
    transform: rotateY(180deg);
    text-align: left !important;
}

/* Aplicaciones */
.apps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.app-card {
    flex: 1 1 200px;
    background-color: var(--gris-claro);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--amarillo);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--naranja);
}

.app-icon {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
    color: var(--azul-medio);
}

.storage-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.method {
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    background-color: var(--blanco-gris);
}

.method:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--amarillo-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--amarillo);
}

.brand-comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.brand-comparison th {
    background: var(--azul-medio);
    color: white;
    padding: 12px 15px;
    text-align: left;
}

.brand-comparison td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.brand-comparison tr:nth-child(even) {
    background-color: #f9f9f9;
}

.brand-comparison tr:hover {
    background-color: rgba(249, 200, 14, 0.1);
}

.storage-tips {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.storage-tips ol {
    padding-left: 1.5rem;
}

.storage-tips li {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .storage-methods {
        grid-template-columns: 1fr;
    }

    .brand-comparison {
        font-size: 0.9rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 2rem;
    }

    .cameras {
        grid-template-columns: 1fr;
    }
}

/* CSS para el diseño alternativo de cámaras vehiculares */
.section-intro {
    text-align: start;
    margin-bottom: 2.5rem;
}

.section-intro h2 {
    color: var(--azul) !important;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    border-bottom: none;
    display: block;
}

.section-intro .subtitle {
    color: var(--azul-medio);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Contenedor Principal */
.vehicle-features {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Items de Características */
.feature-item {
    margin-bottom: 15px;
    padding: 0px 0px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: white;
}

.feature-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

/* Encabezado */
.feature-header {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background-color: var(--azul-medio);
    color: white;
}

.feature-header:hover {
    background-color: var(--azul-claro);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--azul-medio);
    font-size: 1.2rem;
}

.feature-header h3 {
    margin: 0;
    flex-grow: 1;
    font-size: 1.1rem;
}

.toggle-icon {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

/* Contenido */
.feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.feature-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-content li {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: var(--azul-medio);
    font-weight: bold;
}

.feature-content li:hover {
    background-color: rgba(249, 200, 14, 0.1);
}

.feature-content li i {
    margin-right: 12px;
    color: var(--amarillo);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Estado Activo */
.feature-item.active-cam .feature-content {
    max-height: 500px;
    /* Ajusta según necesidad */
}

.feature-item.active-cam .toggle-icon {
    transform: rotate(180deg);
}

.vehicle-card {
    border-radius: 10px;
    padding: 5px 0px;
    border: 2px solid var(--amarillo);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    border-radius: 10px;
    border: 2px solid var(--azul-medio);
    color: var(--blanco) !important;
    padding: 5px 0px;
    transition: all 0.3s ease;
    scale: 1.02;
    box-shadow: 0 3px 10px rgba(121, 131, 195, 0.387);
}

.vehicle-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.vehicle-image {
    max-width: 60%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-header {
        padding: 15px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }

    .feature-header h3 {
        font-size: 1rem;
    }

    .feature-content li {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

.benefits-box {
    border-radius: 8px;
    padding: 0.3rem;
    margin-top: 0.5rem;
    text-align: center;
}

.benefits-box h3 {
    color: var(--azul);
    margin-bottom: 1.5rem;
    border-bottom: none;
    display: block;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.benefit {
    background-color: var(--blanco-gris);
    border-radius: 8px;
    padding: 1.1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.benefit-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--azul);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.benefit-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--azul);
}

/* Responsive */
@media (max-width: 768px) {
    .section-intro h2 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-header {
        padding: 1rem;
    }

    .feature-header h3 {
        font-size: 1.1rem;
    }
}

/* Estilos para cámaras vehiculares */
#camaras-vehiculares {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.feature-card {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

.feature-card .card-header {
    cursor: pointer;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-list {
    margin-bottom: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.benefits-card {
    border-radius: 0.5rem;
}

.benefits-card .card-header {
    border-radius: 0.5rem 0.5rem 0 0 !important;
}

.benefit-item {
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

/* Responsive */
@media (max-width: 992px) {
    #camaras-vehiculares .col-lg-4 {
        margin-top: 1.5rem;
    }
}

/*--------------------------RASTREO SATELITAL*/
/* Hero Section */
/*VIDEOVIGILANCIA*/
.header-blog {
    background-image: linear-gradient(to left, rgba(8, 89, 137, 0.8), rgba(55, 157, 162, 0.8)), url('https://sinemx.com/web/com.sine.img/camaras_caracteristicas.png');
    color: var(--blanco);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--azul-claro);
    background-size: cover;
    background-position: center center;
}

.header-domotica {
    background-image: linear-gradient(to left, rgba(8, 89, 137, 0.8), rgba(55, 157, 162, 0.8)), url('https://sinemx.com/web/com.sine.img/domotica_caracteristicas_2.png ');
    color: var(--blanco);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--azul-claro);
    background-size: cover;
    background-position: center center;
}

.hero-rastreo {
    color: white;
    padding: 2.5rem 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
    margin-bottom: 50px;
    background-image: linear-gradient(to left, rgba(8, 89, 137, 0.8), rgba(55, 157, 162, 0.8)), url('https://sinemx.com/web/com.sine.img/rastreo_caracteristicas.png');
    background-size: cover;
    background-position: center center;
}

.hero-control {
    color: white;
    padding: 2.5rem 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
    margin-bottom: 50px;
    background-image: linear-gradient(to left, rgba(8, 89, 137, 0.8), rgba(55, 157, 162, 0.8)), url('https://sinemx.com/web/com.sine.img/control_caracteristicas.png');
    background-position: center center; /* Adjust to focus on a specific point */
    background-size: cover;
}

.hero-energia {
    color: white;
    padding: 2.5rem 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    background-image: linear-gradient(to left, rgba(8, 89, 137, 0.8), rgba(55, 157, 162, 0.8)), url('https://sinemx.com/web/com.sine.img/energias_caracteristicas.jpeg');
    margin-bottom: 50px;
    background-size: cover;
    background-position: center center;
}

.hero-desarrollo {
    color: white;
    padding: 2.5rem 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    background-image: linear-gradient(to left, rgba(8, 89, 137, 0.8), rgba(55, 157, 162, 0.8)), url('https://sinemx.com/web/com.sine.img/soluciones_digitales.png');
    margin-bottom: 50px;
    background-size: cover;
    background-position: center center;
}

/* Estilos para la sección de cámaras vehiculares */
#camaras-vehiculos {
    background-color: var(--blanco);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

#camaras-vehiculos:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#camaras-vehiculos h2 {
    color: var(--azul-primario);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--amarillo-primario);
    display: inline-block;
}

#camaras-vehiculos .camera-card {
    background-color: var(--gris-claro);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--amarillo-primario);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#camaras-vehiculos .camera-card:hover {
    background-color: var(--amarillo-primario);
    color: var(--azul-primario);
    transform: translateY(-5px);
}

#camaras-vehiculos .camera-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--azul-secundario);
}

#camaras-vehiculos .camera-card:hover .camera-icon {
    color: var(--azul-primario);
}

#camaras-vehiculos .process-steps {
    counter-reset: step-counter;
    margin-top: 1.5rem;
}

#camaras-vehiculos .step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 1.5rem;
}

#camaras-vehiculos .step:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--amarillo-primario);
    color: var(--azul-primario);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Estilos para la lista de beneficios */
#camaras-vehiculos .benefits-list {
    margin-top: 1.5rem;
    columns: 2;
    list-style-position: inside;
}

#camaras-vehiculos .benefits-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

#camaras-vehiculos .benefits-list li:before {
    content: "•";
    color: var(--amarillo-primario);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    #camaras-vehiculos .cameras {
        grid-template-columns: 1fr;
    }

    #camaras-vehiculos .benefits-list {
        columns: 1;
    }
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #c53030;
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary);
}

.feature-item h3 {
    color: var(--primary);
    margin-top: 0;
    display: flex;
    align-items: center;
}

.feature-item h3:before {
    content: '✓';
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    background: var(--light);
    padding: 80px 0;
    margin: 60px 0;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-box {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.benefit-box h3 {
    color: var(--primary);
}

/* How It Works */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.step {
    flex: 0 0 calc(16% - 30px);
    min-width: 150px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--amarillo);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step:not(:last-child):after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 20px;
    color: var(--azul-medio);
    font-size: 1.5rem;
}

/* Industries */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.tag {
    background: rgba(182, 208, 236, 0.498);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .step {
        flex: 0 0 calc(50% - 30px);
        margin-bottom: 30px;
    }

    .step:not(:last-child):after {
        display: none;
    }
}

.selected-row td {
    background: var(--azul-claro) !important;
    color: var(--blanco) !important;
    font-weight: 400 !important;
    /* Cambia el peso de la fuente si lo deseas */
    transition: all 0.5s ease;
    /* Añade una transición suave */
}

.hover-top {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.hover-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*---------------------------CONTROL DE ACCESO*/
.solution-card {
    transition: transform 0.3s;
    border: none;
    border-radius: 10px;
    text-align: center;
    padding: 20px 10px;
    height: 100%;
}
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.solution-icon {
    width: 150px; /* Ajusta según el tamaño de tus imágenes */
    height: 150px;
    margin: 0 auto 15px;
    display: block;
    mix-blend-mode: multiply;
}

/*--------------------------ENERGIA*/.domotica-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.domotica-img-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.domotica-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.domotica-title {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.domotica-text {
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.domotica-icon mt-2 {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon {
    transition: transform 0.3s ease;
}
.tech-icon:hover {
    transform: scale(1.1);
}
.tech-icon i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/*-------------------CONTACTO---------------------*/
/* Estilo del panel de opciones */
.whatsapp-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 250px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px;
    display: none;
    flex-direction: column;
    z-index: 999 !important;
}

.whatsapp-panel.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.whatsapp-option:hover {
    background-color: #f5f5f5;
}

.whatsapp-option i {
    margin-right: 10px;
    font-size: 20px;
    color: #25D366;
}

.whatsapp-option span {
    font-size: 14px;
}

.qr-code {
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid #eee;
}

.qr-code img {
    max-width: 100%;
    height: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo para el fondo oscuro (opcional) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
}

.overlay.show {
    display: block;
}

/* Estilo del panel de contacto */
.contact-panel {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: none;
    flex-direction: column;
    z-index: 1001;
    animation: fadeIn 0.3s ease;
}

.contact-panel.show {
    display: flex;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.contact-header h5 {
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: var(--amarillo);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    background-color: var(--amarillo);
    color: #000;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--amarillo);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overlay-contact {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
}

.overlay-contact.show {
    display: block;
}

.hover-shadow-lg:hover { box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important; }
    .zoom-on-hover { transition: transform 0.5s; }
    .zoom-on-hover:hover { transform: scale(1.05); }
    .icon-box {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }
    .transition-all { transition: all 0.3s ease; }
    .hover-opacity-0:hover { opacity: 0 !important; }

    .h-sm-300 { height: 250px; }
    .h-lg-500 { height: 250px; } /* Default para móviles */
    
    @media (min-width: 992px) { /* Breakpoint lg de Bootstrap */
        .h-lg-500 { height: 500px !important; }
    }