
/* ========================= */
/*       SECCIÓN BANNER      */
/* ========================= */

#banner {
    /* Mantenemos la posibilidad de usar una imagen de fondo si lo deseas */
    background-size: cover;
    background-position: center;
    background-color: #000; /* Asegura fondo negro si no hay imagen */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
}

/* Título grande dentro del banner */
.banner-content h1 {
    font-size: 60px;
    margin: 0px 25px;
    letter-spacing: 1px;
    font-family: "inter-thin", sans-serif; 
    color: #fff; /* Texto blanco */
    text-align: center;
}

/* Párrafo dentro del banner */
.banner-content p {
    margin: 15px 25px;
    letter-spacing: 1px;
    font-size: 18px;
    font-family: "inter-thin", sans-serif;
    color: #e2e2e2; /* Un tono gris claro para destacar un poco */
}

/* Confian (asumo que es algún bloque o texto de confianza) */
.confian {
    text-align: center;
    margin: 20px;
}

/* ========================= */
/*     CARROUSEL IMÁGENES    */
/* ========================= */

.carrusel-container {
    width: 100%;
    overflow: hidden;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Si quieres un borde adicional en la sección, habilita esta línea
       border: 1px solid #fff; */
}

.carrusel {
    display: flex;
    /* Ajusta "numero_de_imagenes" a la cantidad total de imágenes 
       (por ejemplo, width: calc(100% * 5); si son 5 imágenes) */
    width: calc(100% * numero_de_imagenes);
    animation: desplazar 35s linear infinite;
}

.carrusel img {
    /* Para que cada imagen ocupe una porción igual del ancho total */
    width: calc(100% / numero_de_imagenes);
    height: 150px;
    object-fit: cover;
    margin: 0px 50px;
    /* Si quieres un borde en las imágenes, 
       por el rule global se aplicaría 1px solid #fff, 
       puedes ajustarlo aquí si deseas cambiarlo. */
}

@keyframes desplazar {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ========================= */
/*      SECCIONES GENÉRICAS  */
/* ========================= */

/* Imágenes en secciones */
.section-img {
    width: 100%;
    height: auto;
    min-height: 300px;
    border-radius: 12px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: width 0.5s, height 0.5s, transform 0.3s ease;
}

.section-img:hover {
    transform: scale(1.05); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contenedor principal: dos columnas (imagen + texto) */
.container {
    width: 80%;
    margin: 15px auto; /* Ajuste de márgenes */
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    text-align: start;
    padding: 50px 0;
    /* Si quieres un borde global en el contenedor:
       border: 1px solid #fff; */
}

/* Titulares y descripción en columna */
.container .titulos-descripcion,
.titulos-descripcion ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: start;
    margin: 20px auto;
}

/* Titulares (h2) */
.titulos-descripcion h2 {
    font-size: 35px;
    font-family: "inter-black", sans-serif;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 15px;
}

/* Párrafos */
.titulos-descripcion p {
    font-size: 18px;
    line-height: 1.6;
    margin: 5px 0;
    color: #fff;
}

/* ========================= */
/*        ICONOS Y LISTAS    */
/* ========================= */

.features p {
    margin-bottom: 0px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
}

.features p i {
    width: 30px;
    min-width: 30px;
    display: block;
    margin-left: 5px;
    color: #fff; /* Color de icono */
}

/* Ícono de verificación verde */
.icon {
    color: rgb(90, 90, 90);
    visibility: hidden;
}

/* Mostrar ícono de éxito */
.success .icon {
    visibility: visible;
}

/* Ícono de error */
.fail .fail-icon {
    visibility: visible;
}

/* ========================= */
/*          BOTONES          */
/* ========================= */

a.btn-banner {
    padding: 20px 45px;
    border: 2px solid #fff;        /* Borde blanco */
    margin: 10px;
    text-decoration: none;
    color: #fff;
    background-color: transparent; /* Fondo negro transparente */
    border-radius: 0px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

a.btn-banner:hover {
    background-color: #ccc; /* Gris claro al hover */
    color: #000;           /* Texto se pone oscuro para contraste */
    transform: scale(1.05);
}

/* ========================= */
/*     MEDIA QUERIES         */
/* ========================= */

/* Para pantallas medianas (tablets) */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .container .titulos-descripcion {
        max-width: 100%;
    }

    .reverse { 
        flex-direction: column-reverse;
    }

    .titulos-descripcion h2 {
        font-size: 28px; 
        font-family: "inter-normal", sans-serif;
    }

    .titulos-descripcion p {
        font-size: 16px; 
    }
}

/* Para pantallas pequeñas (móviles) */
@media (max-width: 480px) {
    .reverse {
        flex-direction: column-reverse;
    }

    .container .titulos-descripcion {
        max-width: 100%;
    }

    .banner-content h1 {
        font-size: 40px;
       
    }


    .titulos-descripcion h2 {
        font-size: 22px;
        font-family: "inter-normal", sans-serif;
    }

    .titulos-descripcion p {
        font-size: 14px;
    }
}

/* Para pantallas extra pequeñas */
@media (max-width: 380px) {
    .reverse {
        flex-direction: column-reverse;
    }

    .container .titulos-descripcion {
        max-width: 100%;
    }

    .titulos-descripcion h2 {
        font-size: 20px;
    }

    .titulos-descripcion p {
        font-size: 12px;
    }

    .banner-content h1 {
        font-size: 35px;
       
    }
}

/* ========================= */
/*       SECCIONES FINALES   */
/* ========================= */

/* Secciones específicas con ID */
#api-integracion, 
#integraciones, 
#Personalizacion-menu {
    background-color: #000;
    color: #fff;
    padding: 60px 0;
}

