﻿#noindex-page .header-content {
    margin-right: 15px;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 84px;
    background-color: #ffffff;
}


.resp {
    
}


section {
    position: relative;
    height: 560px;
    background: rgba(0,0,0,0);
    margin-bottom: 23px;
    scroll-margin-top: 84px;
}


.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}


.point {
    position: absolute;
    border-radius: 50%;
    background-color: #2fa9f5;
    opacity: 0.8;
    z-index: 1;
}


@keyframes float {
    0% {
        transform: translate(0px, 0px);
    }

    25% {
        transform: translate(40px, -50px);
    }

    50% {
        transform: translate(-30px, 60px);
    }

    75% {
        transform: translate(50px, 20px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

/* noticia-avisos*/
.notice {
    position: fixed;
    top: 80px; /* justo debajo del menú superior */
    left: 50%;
    transform: translateX(-50%);
    background-color: #85b044; /* verde corporativo */
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.5s ease;
}

    .notice.hide {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

/* boton fijo en pantalla*/

.fixed-button {
    position: fixed; 
    /*bottom: 20px; */
	bottom: -6px; 
    right: 20px;
    background-color: #85b044; /* mismo verde que el menú */
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000; /* para que quede por encima de todo */
}

    .fixed-button:hover {
        background-color: #6b9130; /* un verde un poco más oscuro al pasar el hover */
    }


/*seccion donde van los puntos*/
.section-bg {
    position: relative;
    height: 570px;
    width: 100%;
}

/*seccion donde va el contenido*/
.mini-bg {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 440px;
    background: rgba(0,0,0,0); 
    z-index: 10;
}


.punto1 {
     width:20px;
     height:20px;
     animation-duration:8s;
}


.punto2 {
    width: 30px;
    height: 30px;
    animation-duration: 8s;
}


.punto3 {
    width: 60px;
    height: 60px;
    animation-duration: 9s;
}


.content {
    display: flex;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Texto */

.text-box {
    width:44%;
    background: rgba(255, 255, 255, 0.2); /* blanco con 60% de opacidad */
    padding: 15px 15px;
    border-radius: 6px;
    display: inline-block;
    margin-left: 0px;
    max-width: fit-content;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 0 10px rgba(47, 169, 245, 0.8);

    /* Efecto difuminado del fondo */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* compatibilidad Safari */
}


.text-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    margin-top: 0;
    font-weight: 500;
    color: #2fa9f5;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

#productos .text-content h1 {
    font-family: 'Rounded Sans Serif 7', Rounded Sans Serif 7;
    font-size: 44px;
    margin-top: 0;
    font-weight: 500;
    color: #2fa9f5;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    /*  -webkit-text-stroke: 0.5px#98C455;  borde verde */
}
#home .text-content h1 {
    font-size: 36px;
    color:#2fa9f5;
}
#home .text-content p {
    font-size: 14px;
    color: #555;
}


.text-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #2d7ed2;
    line-height: 1.3;
    margin-bottom: 16px;
}


.text-content b {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #59AC1A;
    line-height: 1.6;
    margin-bottom: 0px;
}


.text-content d {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #004777;
    line-height: 1.6;
    margin-bottom: 30px;
}


.text-content button {
    font-family: 'Montserrat', sans-serif;
    background: #98c455;
    color: white;
    font-size: 18px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

    .text-content button:hover {
        opacity: 0.85;
    }
.text-content h1 span,
.text-content p span {
    display: block; /* Hace que cada línea sea su propio bloque */
}

.text-content h1 {
    max-width: 500px; /* Controla dónde se corta el texto */
    word-wrap: break-word;
}

.text-content p {
    max-width: 550px;
    word-wrap: break-word;
}

/* -------------------------------- */

.video-container {
    width: 50%; 
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    object-fit: cover;
}


.video-box {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    background: transparent;
}

/*-------------------------------------------- */

body {
    font-family: Arial, sans-serif;
}


#interactive-section {
    display: flex;
    flex-direction: row;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0); 
}


.content-productos {
    display: flex;
    gap: 2rem;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}


.icon-container {
    position: relative;
    width: 30%; /* ancho total del semicírculo */
    height: 70%; /* altura del semicírculo */
    margin: 50px auto;
    margin-right: 20px;
}


.icon {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 30;
    box-shadow: 0 0 10px rgba(47, 169, 245, 0.8);
    display: flex; 
    align-items: center;
    justify-content: center; 
}

    .icon-container img {
        width: 70%;
        height: 70%;
        object-fit: contain;
        border-radius: 0%;
    }

.icon:hover {
    /* fondo verde al pasar el mouse */
    box-shadow: 0 0 15px 4px #98C455; 
    background-color: #98C455;
}

    .icon:hover img {
        filter: brightness(0) invert(1); /* icono en blanco cuando el fondo es verde */
    }


.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    height: 100%;
}


.content-arriba{

}


.content-texto {
    width: 100%;
    height: 70%;
    margin-top: 20px;
}

/* seccion modulos */

.content-beneficios {
    margin-bottom: 20px;
    display: flex; 
    align-items: center;
    justify-content: space-between;
    align-items: center; 
    width: 100%;
    height: 100%;
}

    .content-texto .text-content{
        margin-top: 8px;
        margin-left:8px;

    }


.content-beneficios .text-content {
    box-shadow: 2px 2px 14px rgba(47, 169, 245, 0.6);
    border-radius: 8px;
    margin-right: 8px;
    background: #ffffff;
}


.content-container .content-texto {
    box-shadow: 2px 2px 14px rgba(47, 169, 245, 0.6);
    border-radius: 8px;
    margin-right: 8px;
    margin-bottom: 8px;
    background: #ffffff;
}


.vertical b {
    display: block; /* Para que el <b> se comporte como un título */
    margin: 5px 0; /* Espacio arriba y abajo */
    font-size: 22px;
    font-weight: bold;
    color: #699e18;
    text-transform: uppercase; /* todo en mayúsculas */
    font-size: 500px;
}


.vertical {
    display: flex;
    flex-direction: column; 
    gap: 4px;
    margin: 8px;
}


#main-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}


#main-text {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}


#main-video {
    width: 56%;
    height: 220px;
    border-radius: 12px;
}


.beneficios {
    list-style: none;
    padding-left: 0;
    margin: 8px 0; /* reducimos margen vertical */
    max-width: 100%; /* que nunca se salga del div */
}

    .beneficios li {
        position: relative;
        padding-left: 16px; /* espacio para el puntico */
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        color: #004777;
        line-height: 1.3    ;
        word-wrap: break-word; /* por si el texto es largo */
    }

        .beneficios li::before {
            content: "●";
            color: #699e18;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 12px;
            line-height: 1.3;
        }


/*-------------------------------------------- */
/*-------------------------------------------- */

/*------slider clientes--------*/

#clientes {
    height: auto !important; 
    background: #fff; 
    margin: 0; 
    padding: 0;
    margin-bottom: 60px;
}


.slider-section {
    width: 70%;
    overflow: hidden; 
    padding: 20px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}


.slider {
    width: 100%;
    position: relative;
}


.slide-track {
    display: flex;
    width: calc(276px * 20); /* full 40 aumentar el * dependiendo el numero de logos clientes */
    animation: scroll 44s linear infinite;
}


/* 🔹 Pausar animación al pasar el mouse */
.slider-section:hover .slide-track {
    animation-play-state: paused;
}


.slide {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

    .slide img {
        max-width: 180px;
        max-height: 80px;
        object-fit: contain;
        transition: transform 0.3s ease; 
    }

        .slide img:hover {
            transform: scale(1.2); 
        }


/* 🔹 Animación del scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.ver-mas-container {
    text-align: center;
    margin-top: 15px;
}


.btn-ver-mas {
    background-color: #2fa9f5; 
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    background: #98c455;
}

    .btn-ver-mas:hover {
        background-color: #6b9130; /* tono más oscuro al pasar el mouse */
    }
    

/* Animación */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*-------------------------------------------- */
/*-------------------------------------------- */

/*------footer--------*/
/*------footer--------*/

/*icono help-desk  footer*/
.help-desk {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

    .help-desk .help-icon {
        width: 18px; /* ajusta tamaño del icono */
        height: 18px; /* asegura proporción */
        margin-right: 8px;
    }

    .help-desk:hover {
        color: #6b9130;
    }


#contacto {
    height: auto !important; 
    background: #fff; 
    margin: 0; 
    padding: 0; 
}


.footer {
    background-color: #2453A3; /* Azul como en la imagen */
    color: #fff;
    padding: 20px 15px;
    font-family: Arial, sans-serif;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    max-width: 76%;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}


.footer-column {
    flex: 1 1 200px;
    margin: 4px;
    max-width: 152px;
    margin-left: 8px;
}


.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}


.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}


.footer-column ul {
    list-style: none;
    padding: 0;
}


.footer-column ul li {
    margin: 8px 0;
    font-size: 14px;
}


.footer-column ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}


.footer-column .firma {
    text-decoration: none;
    color: #2453A3 !important; /* fuerza tu color inicial */
    transition: color 0.3s;
    font-size:10px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

    .footer-column .firma:hover {
        color: #6b9130 !important;
    }



.footer-column ul li a:hover {
    color: #6b9130; /* Amarillo suave al hover */
}

/* Contact icons */

.logo-contact ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}


.logo-contact i {
    font-size: 18px;
}


/* Footer bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 8px; /* Espacio entre texto e ícono */
    font-size: 12px;
    color: #fff;
    padding: 4px 0;
}


.footer-column.logo-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

    .footer-column.logo-contact img {
        max-width: 120px;
        margin-bottom: 4px;
    }

    .footer-column.logo-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-column.logo-contact ul li {
            display: flex;
            align-items: center;
            gap: 10px; /* espacio entre ícono y texto */
            font-size: 14px;
            margin-bottom: 12px;
            color: #fff;
            white-space: nowrap; /* evita que el número baje de línea */
        }

            .footer-column.logo-contact ul li i {
                font-size: 20px;
                color: #fff;
                min-width: 24px; /* alinea todos los íconos */
                text-align: center;
            }


.footer-column b {
    font-weight: 700; /* hace el texto más grueso */
    font-size: 16px;
}


.ico {
    max-height: 32px;
    max-width: 32px;
}


/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/




.icon-container {
    position: relative;
    display: inline-block;
}

/*-------------------------decoración-------------------------*/
/*-------------------------decoración-------------------------*/
/*-------------------------decoración-------------------------*/

/* contenedor del círculo */
#circle-dots {
    position: absolute;
    top: 48%;
    left: 36%;
    transform: translate(-50%, -50%);
    width: 305px; /* diámetro */
    height: 305px;
    z-index:10;
}

/* cada puntico */

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #3aa7ff;
    border-radius: 50%;
}


/*.circle {
    position: absolute;
    width: 75px;
    height: 75px;
    border: 2px solid #3aa7ff;
    border-radius: 50%;
    background: transparent;
    top: 48.8%;
    left: 93%;
    transform: translate(-50%, -50%);
    z-index: 13;
}
*/


.icon.active-circle {
    border-radius: 50%;
    border: 3px solid #4da6ff;
    box-shadow: 0 0 15px rgba(77,166,255,0.6);
    padding: 5px; /* ajusta según tu icono */
}

/*--------------------------------------------------*/
/*--------------------------------------------------*/


/* ------------------- MODULOS--------------------- */
/* Wrapper general */

.modulos-wrapper {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: visible;
}

/* Video centrado */

.modulos-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45%;
    background: transparent; /* o blanco, según tu diseño */
}


.modulos-video {
    width: 37%;
    max-width: 700px;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    object-fit: cover;
}

/* Contenedor del carrusel */

.modulos-carousel-container {
    position: relative;
    height: 60%;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 900px; /* ancho reducido para que entren los botones */
    margin: 0 auto;
    overflow: visible; /* permite que las tarjetas crezcan fuera del contenedor */
    z-index: 1;
}

/* Slider */

.modulos-carousel-slider {
    display: flex;
    height: 100%;
    gap: 20px;
    overflow: hidden; 
    width: 100%;
    scroll-behavior: smooth;
}

/*--------------- Tarjetas clientes carrusel-------------------------*/
/*--------------- Tarjetas clientes carrusel-------------------------*/

.modulos-card {
    margin-top: 16px; 
    flex: 0 0 clamp(120px, 18vw, 220px); /* ancho responsivo */
    height: auto; 
    max-width: 140px;
    min-height: 110px;
    max-height: 170px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    text-align: center; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    cursor: pointer;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); 
    position: relative; 
    overflow: hidden;
}

    /* Franja naranja arriba */
    .modulos-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background-color: var(--franja-color, #FF8C42); /* usamos variable CSS */
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .modulos-card:hover {
        transform: scale(1.15);
        z-index: 5;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); 
        transform-origin: center center;
    }

    /* Ícono */
    .modulos-card img {
        width: 92px; 
        height: 92px;
        margin: 8px 0 0px 0;
        object-fit: contain;
        margin-top: 20px;
    }

    /* Título */
    .modulos-card h3 {
        margin: 5px 0;
        font-size: 18px;
        font-weight: bold;
        color: #2150A7; /* azul */
    }

    /* Texto */
    .modulos-card p {
        font-size: 9px;
        color: #6c757d; /* gris suave */
        line-height: 1.2;
        margin: 0 0 14px 0; /* arriba 0, derecha 0, abajo 10px, izquierda 0 */
    }

/* Botones de navegación */

.modulos-carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: #98C455;
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

    .modulos-carousel-btn:hover {
        background-color: #6b9130;
    }

.modulos-carousel-left {
    left: -20px;
    text-indent: -4px;
    line-height: 28px;
    transform: rotate(360deg);
}

.modulos-carousel-right {
    right: -20px;
    text-indent: -4px;
    line-height: 28px;
    transform: rotate(180deg);
}

/* Scrollbars ocultos para navegadores que los muestran por defecto */

.modulos-carousel-slider::-webkit-scrollbar {
    display: none;
}


.modulos-carousel-slider {
    -ms-overflow-style: none; /* IE y Edge */
    scrollbar-width: none; /* Firefox */
}





.centrar {
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 100%;
    height: 100%;
    overflow: hidden; 
}

/* ---------------- mapa clientes ------------------ */
/* ---------------- mapa clientes ------------------ */

.mapa-container {
    display: flex;
    gap: 40px;
    padding: 20px;
    align-items: center;
}


.seccion5 {
    display: flex;
    width: 75%;
    height: 100%;
    justify-content: space-between;
}

/* MAPA */

.mapa-izquierda {
    position: relative;
    display: inline-block; 
    max-width: none; 
}


.mapa-img {
    width: auto; 
    height: 100%;
    display: block;
}


.ubicacion {
    position: absolute;
    width: 20px;
    height: 40px;
    background-image: url('../Imagenes/ubicacion-icono.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: transform 0.2s;
    /* Nuevo: el punto de escala es la base del icono */
    transform-origin: bottom center;
    /* Solo centramos horizontalmente */
    transform: translateX(-50%);
}

    .ubicacion:hover {
        /* escala hacia arriba dejando la punta fija */
        transform: translateX(-50%) scale(1.3);
    }

/* CARD CLIENTE */

.centrar-vertical {
    display: flex;
    align-items: center; 
    justify-content: center; 
    height: 100%;
    flex: 1;
}


.card-cliente {
    flex: 1;
    background: rgba(255, 255, 255, 0.2); 
    border-radius: 6px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: hidden;
    max-width: 280px;
    /* Efecto difuminado de fondo */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari */
    /* Opcional: borde sutil para más efecto glass */
    border: 1px solid rgba(255, 255, 255, 0.3);
}


    /* Barra superior azul */
    .card-cliente .card-header {
        background: #3498db; /* azul barra */
        height: 20px;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    /* Logo */
    .card-cliente img {
        width: 120px;
        height: auto;
        margin: 15px auto 10px auto;
        display: block;
        object-fit: contain;
    }

/* Nombre cliente */

#cliente-nombre {
    color: #3498db;
    font-size: 16px;
    margin: 10px 0;
}

/* Descripción */

#cliente-desc {
    color: #000;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}


.section-bg.modulos-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}


@keyframes fast-wrap {
  0%   { transform: scale(1) rotate(0deg);   opacity: 1; }
  25%  { transform: scale(0.5) rotate(-90deg); opacity: 0; } /* desaparece */
  90%  { transform: scale(0.5) rotate(90deg);  opacity: 0; } /* invisible hasta casi el final */
  100% { transform: scale(1) rotate(0deg);   opacity: 1; }   /* aparece justo al final */
}


.icon.fast-wrap {
    animation: fast-wrap 0.3s ease-in-out;
}


.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #3aa7ff;
    border-radius: 50%;
    left: var(--left, 0);
    top: var(--top, 0);
}


/* ------------ slider con ST ------------ */
/* ------------ slider con ST ------------ */




.carouselSt {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 40px;
}

/* Contenedor de slides */

.slidesSt {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
    margin-bottom: 36px;
}

/* Cada slide cuadrado */

.slideSt {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px; 
    height: 350px; 
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 0;
    box-sizing: border-box;
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.45s ease;
    border-radius: 20px; 
}

    .slideSt img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        display: block;
        user-select: none;
        -webkit-user-drag: none;
        border-radius: inherit;
    }

/* Posiciones */

.centerSt {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    z-index: 3;
}


.leftSt {
    transform: translate(-100%, -50%) scale(0.9);
    opacity: 0.9;
    z-index: 2;
}


.rightSt {
    transform: translate(0%, -50%) scale(0.9);
    opacity: 0.9;
    z-index: 2;
}


.far-leftSt {
    transform: translate(-150%, -50%) scale(0.7);
    opacity: 0.6;
    z-index: 1;
}


.far-rightSt {
    transform: translate(50%, -50%) scale(0.7);
    opacity: 0.6;
    z-index: 1;
}


/* Botones */
.navSt {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #2fa9f5; /* color sólido */
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: background 0.25s ease, transform 0.15s ease;
    opacity: 1;
    font-family: 'Montserrat', sans-serif; /* o la que uses localmente */
}

    /* Hover y clic */
    .navSt:hover {
        background: #1d7ec2;
        transform: translateY(-50%) scale(1.08);
    }

    .navSt:active {
        transform: translateY(-50%) scale(0.96);
    }

/* Posiciones */

.prevSt {
    left: 10%;
    text-indent: -4px;
    line-height: 24px;
    transform: translateY(-50%); /* centrado sin rotar */
}


.nextSt {
    right: 10%;
    text-indent: 0px;
    line-height: 24px;
    transform: translateY(-50%); /* centrado sin rotar */
}


.navSt:hover {
    background: #1d7ec2;
    transform: translateY(-50%) scale(1.24); /* solo agranda, no gira */
}

/* Hover */

.slideSt.centerSt:hover {
    transform: translate(-50%, -50%) scale(1.15);
    z-index: 12;
    box-shadow: 0 12px 32px rgba(0,0,0,0.22);
    border-radius: 20px; /* mantiene cuadrado */
}

/* 🔹-------------------------------------------------------- SOLO RESPONSIVE------------------------------------------------------------------------------------- */
/* 🔹-------------------------------------------------------- SOLO RESPONSIVE------------------------------------------------------------------------------------- */
/* 🔹-------------------------------------------------------- SOLO RESPONSIVE------------------------------------------------------------------------------------- */
/* 🔹 Ajuste contenedor principal */

.resp {
    width: 100%;
    max-width: 1700px; /* puedes ampliar el tope si quieres */
    margin: 0 auto;
    box-sizing: border-box;
}

/* 🔹 Ajuste del header */

.header-content {
    grid-template-columns: 150px 1fr auto;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- BREAKPOINTS ---------- */

/* Pantallas grandes (>= 1600px) 80 a menos zoom*/
@media (min-width: 1600px) {
    .header-content {
        max-width: 1400px;
    }


    .content, .content-productos, .modulos-wrapper, .seccion5 {
        max-width: 1400px;
        margin: 0 auto;
    }


    section, .home {
        height: 694px;
    }


    .circle {
        left: 53%;
        top: 35%;
        width: 94px;
        height: 94px;
    }


    .section-bg {
        width: 100%;
        height: 100%;
        position: relative; /* importante */
    }


    .mini-bg {
        position: absolute;
        top: 50%; 
        left: 50%; 
        transform: translate(-50%, -50%); 
        width: 70%;
        height: 536px;
        background: rgba(0,0,0,0);
        z-index: 10;
    }


    .video-container {
        width: 50%;
        height: auto;
    }


    .text-content h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 48px;
        margin-top: 0;
        font-weight: 500;
        color: #2d7ed2;
        line-height: 1.2;
        margin-bottom: 15px;
    }


    .text-content p {
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
        color: #004777;
        line-height: 1.3;
        margin-bottom: 10px;
    }


    .modulos-video-container {
        width:auto;
    }


    .icon {
    width: 80px;
    height: 80px;
    }


    .icon-container {
        position: relative;
        width: 50%; 
        height: 80%; 
        margin: 40px auto;
        margin-right: 20px;
        left: 6%;
        top:10%;
    }


    .fixed-button {
        font-size: 24px;
        position: fixed; /* lo mantiene siempre visible en pantalla */
        bottom: 20px; 
        right: 20px;
        height: auto;
        width: auto;
        padding: 12px 20px;
    }


    .modulos-carousel-container {
        max-width: 1100px; /* ancho reducido para que entren los botones */
    }


    @media (min-width: 1600px) {
        #circle-dots {
            width: 98%; /* antes 305px */
            height:92%;
        }
    }

}


/* Laptops medianos (1024px - 1366px)   110 a 125  zoom*/   
@media (max-width: 1311px) {
    nav {
        gap: 20px;
    }

    .text-content h1 {
        font-size: 32px;
    }

    .video-container {
        width: 50%;
        height: auto;
    }

}


/* Laptops pequeños (768px - 1023px)  150 zoom */
@media (max-width: 1023px) {
    .header-content {
        grid-template-columns: 120px 1fr 40px;
        width: 90%;
    }

    nav {
        gap: 15px;
    }
    
    header {
        height: 68px;
    }
    section, .header-content {
        height: 68px;
    }
    .content {
        flex-direction: column;
        text-align: center;
    }
    section, .home {
        height: 480px;
    }
    .video-container {
        width: 50%;
        height:100%;
        margin-top: 20px;
    }
    #home .mini-bg{
        height: 500px;
        margin-top: 56px;
    }
    .secton .home{
        height: 600px;
    }
    /* Solo afecta al contenedor del video */
    #productos .video-container {
        width: auto; /* ancho */
        max-height: 200px;
        max-width: 200px; /* ancho máximo */
        margin: 20px auto; /* centrar horizontalmente */
        border-radius: 12px; /* bordes redondeados */
        overflow: hidden; /* oculta desbordes */
        box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* sombra */
    }

        /* Opcional: estilo directo al video */
        #productos .video-container .video-box {
            width: 100%;
            height: auto;
            display: block;
        }


    #productos .video-box {
        width: 1%;
        margin-top: 0px;
    }

    .clientes {
        height: 160px;
    }

    .content-texto {
        width: 352px;
        height:150px;
    }

    .content-beneficios {
        
    }
    
    .beneficios li {
        font-size: 8px; /* tamaño de letra */
        color: #333; /* color del texto */
        margin-bottom: 8px; /* espacio entre ítems */
    }

    .content-container {
        width: 50%;
    }

    .text-content b {
        font-size: 12px;
    }

    #startBtn {
        height: 1px;
        font-size: 12px;
        display: inline-flex; /* flex para centrar contenido */
        align-items: center; /* centra verticalmente */
        justify-content: center; /* centra horizontalmente */
    }

    .modulos-card {
        margin-top: 16px; 
        flex: 0 0 clamp(120px, 18vw, 220px); /* ancho responsivo */
        height: auto; /* que se ajuste */
        max-width: 140px;
        min-height: 30px;
        max-height: 120px;
        background-color: #ffffff;
        border-radius: 8px;
        padding: 15px; 
        display: flex; 
        flex-direction: column;
        align-items: center; 
        text-align: center; 
        transition: transform 0.3s ease, box-shadow 0.3s ease; 
        cursor: pointer;
        box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2); /* sombra más sutil */
        position: relative; /* para el borde superior */
        overflow: hidden;
    }

    /* Contenedor del carrusel */
    .modulos-carousel-container {
        position: relative;
        min-height: 300px;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 900px; /* ancho reducido para que entren los botones */
        margin: 0 auto;
        overflow: visible; /* permite que las tarjetas crezcan fuera del contenedor */
        z-index: 1;
    }

    /* Slider */
    .modulos-carousel-slider {
        display: flex;
        height: 100%;
        gap: 20px;
        overflow: hidden; /* oculta scroll */
        width: 100%;
        scroll-behavior: smooth;
    }

    #modulos h3 {
        font-size: 16px;
    }

    #modulos p {
        font-size: 6px;
    }

    #modulos2 h3 {
        font-size: 16px;
    }

    #modulos2 p {
        font-size: 6px;
    }
    
    .circle {
        left: 81%;
        top: 49%;
        width: 60px;
        height: 60px;
    }

    .section-bg {
        width: 100%;
        height: 100%;
        position: relative; /* importante */
    }

    .mini-bg {
        position: absolute;
        top: 35%; /* centrado vertical */
        left: 50%; /* centrado horizontal */
        transform: translate(-50%, -50%); /* ajusta para centrar en ambos ejes */
        width: 80%;
        height: 340px;
        background: rgba(0,0,0,0);
        z-index: 10;
    }

    .icon {
        width:60px;
        height: 60px;
    }

    .icon-container {
        position: relative;
        width: 90%; /* ancho total del semicírculo */
        height: 90%; /* altura del semicírculo */
        margin: 40px auto;
        margin-right: 20px;
        left: 5%;
        top: 1%;

    }

    @media (min-width: 800px) {
        #circle-dots {
            width: 100%; /* antes 305px */
            height: 100%;
        }
    }
    
    .slider-section {
        width: 70%;
        height: 160px;
        overflow: hidden;
        padding: 20px 0;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    #circle-dots {
        position: absolute;
        top: 48%;
        left: 30%;
        transform: translate(-50%, -50%);
        width: 305px; /* diámetro */
        height: 305px;
        z-index: 10;
    }

    /* cada puntico */
    .dot {
        position: absolute;
        width: 12px;
        height: 12px;
        background: #3aa7ff;
        border-radius: 50%;
    }

    .modulos-carousel-container {
        position: relative;
        height: 100%;
        display: flex;
        align-items: flex-start;
        width: 100%;
        max-width: 900px; /* ancho reducido para que entren los botones */
        margin: 0 auto;
        overflow: visible; /* permite que las tarjetas crezcan fuera del contenedor */
        z-index: 1;
    }

    /* Slider */
    .modulos-carousel-slider {
        display: flex;
        height: 60%;
        gap: 20px;
        overflow: hidden;
        width: 100%;
        scroll-behavior: smooth;
    }

    .modulos-wrapper {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 0px;
        overflow: visible;
    }

    .modulos-carousel-btn {
        top: 28%;
    }

    .fixed-button {
        font-size: 12px;
        position: fixed; /* lo mantiene siempre visible en pantalla */
        bottom: 20px; 
        right: 20px;
        height: auto;
        width: auto;
        padding: 8px 16px;
    }

    .footer-bottom {
        display: flex; 
        align-items: center; /* Alineamos verticalmente texto e ícono */
        justify-content: center; /* Centra todo horizontalmente */
        gap: 4px; /* Espacio entre texto e ícono */
        font-size: 8px;
        color: #fff;
        padding: 2px 0;
    }

    .footer-column {
        flex: 1 1 200px;
        margin: 4px;
        max-width: 100px;
        margin-left: 0px;
    }

        .footer-column.logo-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

            .footer-column.logo-contact img {
                max-width: 120px;
                margin-bottom: 4px;
            }

            .footer-column.logo-contact ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .footer-column.logo-contact ul li {
                    display: flex;
                    align-items: center;
                    gap: 6px; /* espacio entre ícono y texto */
                    font-size: 8px;
                    margin-bottom: 12px;
                    color: #fff;
                    white-space: nowrap; 
                }

                    .footer-column.logo-contact ul li i {
                        font-size: 1px;
                        color: #fff;
                        min-width: 24px; /* alinea todos los íconos */
                        text-align: center;
                    }
        .footer-column b {
            font-weight: 900; /* hace el texto más grueso */
            font-size: 8px;
        }
        
    .slideSt {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 280px;
        height: 420px;
        transform: translate(-50%, -50%);
        opacity: 0;
        z-index: 0;
        box-sizing: border-box;
        pointer-events: auto;
        transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.45s ease;
    }

        .slideSt img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            display: block;
            user-select: none;
            -webkit-user-drag: none;
        }

    #homeSt {
        max-height: 400px;
    }

    .slidesSt{
        max-height: 300px;
    }

    .carouselSt {
        max-height: 300px;
    }

    /* Posiciones */

    .centerSt {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
        z-index: 3;
        max-height: 240px;
    }

    .leftSt {
        transform: translate(-100%, -50%) scale(0.9);
        opacity: 0.9;
        z-index: 2;
        max-height: 240px;
    }

    .rightSt {
        transform: translate(0%, -50%) scale(0.9);
        opacity: 0.9;
        max-height: 240px;
        z-index: 2;
    }

    .far-leftSt {
        transform: translate(-150%, -50%) scale(0.7);
        opacity: 0.6;
        z-index: 1;
        max-height: 240px;
    }

    .far-rightSt {
        transform: translate(50%, -50%) scale(0.7);
        opacity: 0.6;
        z-index: 1;
        max-height: 240px;
    }

}

/* Tablets y móviles (<= 767px) */

@media (max-width: 768px) {


    section, .home {
        height: 600px;
    }
    .mini-bg no-points container .home{
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 300px;
        background: rgba(0,0,0,0);
        z-index: 10;
    }

    .text-content h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        margin-top: 0;
        font-weight: 500;
        color: #2d7ed2;
        line-height: 1.2;
        margin-bottom: 15px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    }

    .text-content p {
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        color: #004777;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .video-container {
        width: 80%;
        height:40%;
        background: #000;
        border-radius: 12px;
        overflow: hidden;
        background: transparent;
        object-fit: cover;
    }


    .video-box {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        background: transparent;
    }

    .modulos-carousel-container {
        flex-direction: column;
    }

    .modulos-video {
        width: 100%;
    }

    .seccion5 {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }














    .carouselSt {
        position: relative;
        width: 100%;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-sizing: border-box;
        padding: 0 40px;
    }

    /* Contenedor de slides */

    .slidesSt {
        position: relative;
        width: 100%;
        height: 100%;
        pointer-events: none;
        margin-bottom: 36px;
    }

    /* Cada slide cuadrado */

    .slideSt {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80px;
        height: 80px;
        transform: translate(-50%, -50%);
        opacity: 0;
        z-index: 0;
        box-sizing: border-box;
        pointer-events: auto;
        transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.45s ease;
        border-radius: 20px;
    }

        .slideSt img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            display: block;
            user-select: none;
            -webkit-user-drag: none;
            border-radius: inherit;
        }

    /* Posiciones */

    .centerSt {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
        z-index: 3;
    }


    .leftSt {
        transform: translate(-100%, -50%) scale(0.9);
        opacity: 0.9;
        z-index: 2;
    }


    .rightSt {
        transform: translate(0%, -50%) scale(0.9);
        opacity: 0.9;
        z-index: 2;
    }


    .far-leftSt {
        transform: translate(-150%, -50%) scale(0.7);
        opacity: 0.6;
        z-index: 1;
    }


    .far-rightSt {
        transform: translate(50%, -50%) scale(0.7);
        opacity: 0.6;
        z-index: 1;
    }


    /* Botones */
    .navSt {
        position: absolute;
        top: 48%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background: #2fa9f5; /* color sólido */
        color: white;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        cursor: pointer;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        transition: background 0.25s ease, transform 0.15s ease;
        opacity: 1;
        font-family: 'Montserrat', sans-serif; /* o la que uses localmente */
    }

        /* Hover y clic */
        .navSt:hover {
            background: #1d7ec2;
            transform: translateY(-50%) scale(1.08);
        }

        .navSt:active {
            transform: translateY(-50%) scale(0.96);
        }

    /* Posiciones */

    .prevSt {
        left: 10%;
        text-indent: -4px;
        line-height: 4px;
        transform: translateY(-50%); /* centrado sin rotar */
    }


    .nextSt {
        right: 10%;
        text-indent: 0px;
        line-height: 4px;
        transform: translateY(-50%); /* centrado sin rotar */
    }


    .navSt:hover {
        background: #1d7ec2;
        transform: translateY(-50%) scale(1.24); /* solo agranda, no gira */
    }

    /* Hover */

    .slideSt.centerSt:hover {
        transform: translate(-50%, -50%) scale(1.15);
        z-index: 12;
        box-shadow: 0 12px 32px rgba(0,0,0,0.22);
        border-radius: 20px; /* mantiene cuadrado */
    }







    .slider-section {
    width: 70%;
    height: 50%;
    overflow: hidden; 
    padding: 20px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    }




    .modulos-card img {
        width: 60px;
        height: 60px;
        margin: 8px 0 0px 0;
        object-fit: contain;
        margin-top: 12px;
    }

    /* Título */
    .modulos-card h3 {
        margin: 5px 0;
        font-size: 8px;
        font-weight: bold;
        color: #2150A7; /* azul */
    }


    





    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin: 15px 0;
    }

    .modulos-carousel-container {
        max-width: 100%;
    }

    .modulos-card {
        flex: 0 0 120px;
        padding: 10px;
    }

    .modulos-video {
        max-width: 100%;
    }

    .modulos-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }


}

#beneficio-title-1,
#beneficio-title-2 {
    font-size: 32px;
}



