* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Evita el desplazamiento horizontal */
}



/*---------------------------------------INICIO---------------------------------------*/
/*seccion videos inicio*/
.content {
    display: flex;
    width: 100%;
    height: 600px;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0305069a;
    z-index: 1;
}
.video-container {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
    margin: 2px;
    
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*TEXTO VIDEOS*/
.text-video {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}


/*Seccion 2*/
.tittle-section{
    background-color: #f4f4f4;
    text-align: center;
    padding: 80px;
    font-size: 25px;
    color: #000000;
}
.info-section {
    padding: 10px;
    font-size: 20px;
    color: black;
}

/*Seccion 3 pasos*/
.info-section3 {
    display:flex;
    align-items: center;
    background-color: #ffffff;
    padding: 40px;
    text-align: center;
    justify-content: space-between;
}

.tittle-section3 {
    font-size: 10px;
    color: #0c35a5;
    padding-left: 100px;
    padding-right: 100px;
    padding: 50px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    flex: 1;
}

@keyframes colorAnimation {
    0% { color: #0441e9; }
    50% { color: #00a2ff; }
    100% { color: #08236f; }
}

.tittle-section3 i {
    animation: colorAnimation 4s infinite alternate; /* Cambia de color cada 2s */
}


.tittle1{
    text-align: left;
    padding-left: 10px;
    font-size: 15px;
    color: #000000;
}



.tittle-section3 i{
    font-size: 120px;
    
}

.contact-form label {
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    margin-top: 15px;
    background-color: #446dd4;
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: #0d006e;
}





/* TESTIMONIOS */

.tittle-section-testimonios{
    text-align: center;
    color: #08236f;
}

.testimonios {
    display: flex;
    justify-content: center; /* Centra los testimonios y evita espacios grandes */
    align-items: stretch;
    flex-wrap: wrap;
    gap: 25px; /* Reduce el espacio entre testimonios */
    padding: 30px; /* Reduce el padding general */
    text-align: center;
}

.tittle-test {
    flex: 1; /* Hace que todos los testimonios ocupen el mismo espacio */
    max-width: 300px; /* Limita el ancho de cada testimonio */
    background: #f9f9f9; /* Fondo sutil */
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el contenido */
    justify-content: space-between;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Agrega sombra para destacar */
}

/* Imagen del cliente */
.tittle-test img {
    width: 100px; /* Tamaño fijo para todas las imágenes */
    height: 100px; /* Para asegurar la uniformidad */
    border-radius: 50%; /* Circular */
    object-fit: cover; /* Ajuste de imagen */
    margin-bottom: 10px;
}

/* Nombre del cliente */
.tittletest {
    font-size: 18px;
    font-weight: bold;
    color: #14348a;
    background: none;
    text-align: center;
    margin-bottom: 10px;
}

/* Testimonio */
.tittletest2 {
    font-size: 14px;
    color: #333;
    background: none;
    text-align: center;
    padding: 10px;
}

/* Estrellas */
.stars {
    color: #FFD700;
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
}




/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxINICIOxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/




@media (max-width: 940px) {

    
    .content {
        flex-direction: column; /* Apilar los videos en una sola columna */
        height: auto;
    }

    .video-container {
        width: 100%;
        height: 250px; /* Altura reducida para móviles */
    }

    .tittle-section {
        padding: 40px; /* Reducir el padding en móviles */
        font-size: 20px;
    }

    .info-section3 {
        flex-direction: column; /* Apilar los pasos */
        align-items: center;
    }

    .tittle-section3 {
        padding: 20px;
        text-align: center;
        flex-direction: column; /* Apilar iconos y textos */
        align-items: center;
    }

    .tittle-section3 i {
        font-size: 80px; /* Reducir el tamaño de los iconos */
    }

    .tittle1 {
        font-size: 14px;
        padding: 10px 0;
        text-align: center;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }



}