* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kumbh Sans", sans-serif;
}

.header3 {
    .contenedornav {
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        z-index: 1000;
        background-color: #1A173F;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        padding: 0px;

        .navbar-toggler {
            box-shadow: none;
            border: none;
        }

        .logo1 {
            width: 150px;
            padding: 10px;
        }

        .nav-item {
            font-size: 10px;
            font-family: "Kumbh Sans", sans-serif;
            font-weight: 200;
            .nav-link {
                color: white;
            }
        }

        .link {
            text-decoration: none;
            position: relative;
            font-size: 18px;
        }

        .link::after {
            content: '';
            width: 100%;
            height: 2px;
            background-color: rgb(38, 94, 226);
            border-radius: 4px;
            position: absolute;
            left: 0;
            bottom: 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .25s ease;
        }

        .link:hover::after {
            transform: scaleX(1);
        }
    }

}

.portada {
    height: 100vh;
    background-image: url(../sources/12066215_4845617.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 40px;
    .contenedor-portada {
        padding-left: 100px;   
        .titulo {
            font-size: 120px;
            font-weight: 700;
            position: relative;
            padding-bottom: 80px;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(15, 15, 15, 0.5);
            .titulo-2 {
                position: absolute;
                top: 120px;
                font-weight: 700;
                font-size: 80px;
                color: #ffffff;
            }
        }
        .parrafo-1 {
            width: 500px;
            font-size: 20px;
            color: white;
            font-weight: 300;
        }
        .boton-1 {
            text-decoration: none;
            margin-top: 30px;
            border: none;
            background-color: white;
            color: #496dbc;
            font-size: 18px;
            padding: 10px 30px;
            border-radius: 30px;
            transition: 0.3s ease;
            .circulo {
                margin-left: 10px;
            }
        }
        .boton-1:hover {
            background-color: #496dbc;
            color: white;
        }
    }
}

.primera { 
    width: 100%; 
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 180px 370px 150px 500px;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-areas: 
        "columna-1 columna-2"
        "columna-1 columna-2"
        "columna-1 columna-4"
        "columna-3 columna-4";
}

.columna-1, .columna-2, .columna-3, .columna-4 {
    width: 100%;
    height: 100%;
}

.columna-1 {
    grid-area: columna-1;
    position: relative;
    .subtitulo {
        background-color: #08297b;
        color: white;
        padding: 5px 0px;
        padding-left: 30px;
        width: 300px;
        font-size: 25px;
        margin-top: 80px;
        border-radius: 60px;
        position: absolute;
        left: -20px;
        font-weight: 400;
    }
    .card-1 {
        margin: 180px auto;
        width: 70%;
        background-color: #F8F8F8;
        border-radius: 30px;
        padding: 20px 40px;
        .titulo-card {
            color: #496dbc;
            font-size: 30px;
            padding-bottom: 15px;
        }
        .parrafo-card {
            color: #636363;
            font-size: 20px;
        }
    }
}

.columna-2 {
    grid-area: columna-2;
    display: flex;
    justify-content: center;
    align-items: start;
    .img-1 {
        margin-top: 20px;
        object-fit: cover;
        height: 500px;
        width: 80%;
        border-radius: 30px;
    }
}

.columna-3 {
    grid-area: columna-3;
    display: flex;
    justify-content: center;
    .img-2 {
        margin-left: 100px;
        object-fit: cover;
        width: 60%;
        border-radius: 30px;
        height: 90%;
    }
}

.columna-4 {
    grid-area: columna-4;
    display: flex;
    align-items: center;
    flex-direction: column;
    .card-1 {
        width: 70%;
        height: 400px;
        background-color: #F8F8F8;
        border-radius: 30px;
        padding: 20px 40px;
        .titulo-card {
            color: #496dbc;
            font-size: 30px;
            padding-bottom: 15px;
        }
        .parrafo-card {
            color: #636363;
            font-size: 20px;
        }
    }
    .btn-2 {
        margin-top: 40px;
        padding: 20px 40px;
        font-size: 20px;
        border: 1px solid #496dbc;
        background-color: transparent;
        color: #496dbc;
        border-radius: 50px;
        transition: 0.3s ease;
        text-decoration: none;
        .circulo {
            padding-left: 10px;
        }
    }
    .btn-2:hover {
        background-color: #496dbc;
        color: white;
    }
}

.frase{
    margin-top: 80px;
    width: 100%;
    text-align: center;
    position: relative;
    .titulo-frase{
        font-family: "Libre Baskerville", serif;
        font-size: 90px;
        text-shadow: 2px 2px 4px rgba(87, 87, 87, 0.5);
        font-weight: 500;
    }
    .parrafo-frase {
        font-size: 20px;
        font-weight: 300;
    }
    .separador {
        position: absolute;
        width: 100%;
        height: 80px;
        background-color: #ffffff;
        border-radius: 40px;
        z-index: 2;
    }
}

.segunda {
    margin-top: 55px;
    position: relative;
    background-color: #040835;
    height: auto;
    padding-bottom: 40px;
    .contenedor-subtitulo {
        width: 100%;
        position: relative;
        .subtitulo-2 {
            background-color: #ffffff;
            color: #040835;
            padding: 5px 0px;
            padding-left: 30px;
            width: 200px;
            font-size: 25px;
            margin-top: 80px;
            border-radius: 60px;
            position: absolute;
            left: -20px;
            font-weight: 400;
        }
    }
    .contenedor-tarjetas {
        padding-top: 150px;
        padding-bottom: 20px;
        height: auto;
        width: 100%;
        display: flex;
        align-items: end;
        justify-content: center;
        flex-wrap: wrap;
        color: white;
        row-gap: 15px;
        column-gap: 15px;
        .tarjeta {
            background-color: #ffffff;
            width: 370px;
            height: 200px;
            padding: 15px;
            border-radius: 30px;
            .titulo-tarjeta {
                color: #0f3e95;
                .fas {
                    padding: 0 5px;
                }
            }
            .parrafo-tarjeta {
                color: #282828;
                font-weight: 300;
                font-size: 18px;
            }
        }
    }
    .separador-2 {
        position: absolute;
        width: 100%;
        height: 80px;
        background-color: #040835;
        border-radius: 40px;
    }
}
.tercera {
     background-color: #ffffff;
    height: auto;
    padding-bottom: 80px;
    .contenedor-frase {
        padding-top: 100px;
        display: flex;
        .contenedor-subtitulo-2 {
            width: 50%;
            display: flex;
            justify-content: center;
            position: relative;
            .elipse-1 {
                position: absolute;
                z-index: -3;
                height: 300px;
                width: 300px;
                border-radius: 50%;
                top: 50px;
                left: -50px;
                background-color: #637DA3;
            }
            .elipse-2 {
                position: absolute;
                z-index: -3;
                height: 80px;
                width: 80px;
                border-radius: 50%;
                background-color: #637DA3;
                top: 0px;
                left: 230px;
            }
            .frase-2 {
                font-family: "Libre Baskerville", serif;
                text-shadow: 2px 2px 4px rgba(87, 87, 87, 0.5);
                font-size: 65px;
                text-align: center;
                padding: 40px;
                width: 60%;
                font-weight: 600;
            }
        }
        .contenedor-parrafo {
            width: 50%;
            padding: 60px;
            font-size: 20px;
            .parrafo-2 {
                font-weight: 300;
            }
            .boton-2 {
                text-decoration: none;
                border: none;
                background-color: #637DA3;
                border-radius: 30px;
                font-size: 17px;
                color: white;
                padding: 10px 30px;
                margin-top: 30px;
                transition: 0.3s ease;
            }
            .boton-2:hover {
                background-color: #1b2f4f;
            }
        }
    }

    .contenedor-subtitulo-3 {
        width: 100%;
        position: relative;
        .subtitulo-3 {
            background-color: #08297b;
            color: #ffffff;
            padding: 5px 0px;
            padding-left: 30px;
            width: 270px;
            font-size: 25px;
            margin-top: 80px;
            border-radius: 60px;
            position: absolute;
            left: -20px;
            font-weight: 400;
        }
    }

.contenedor-tarjetas-2 {
margin-top: 180px;
width: 70%;
margin: 180px auto 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
row-gap: 15px;
column-gap: 15px;
.tarjeta-2 {
width: 400px;
background-color: #ececec;
text-align: center;
padding: 30px 35px;
border-radius: 30px;
font-size: 18px;
.fas {
color: #0f3e95;
font-size: 30px;
padding-bottom: 10px;
}
.parrafo-tarjeta-2 {
color: #3E3E3E;
}
.titulo-tarjeta-2 {
color: #0f3e95;
}
}
.color {
background-color: #d3e5ff;
}
}

.contenedor-subtitulo-4 {
        width: 100%;
        position: relative;
        .subtitulo-4 {
            background-color: #1A173F;
            color: #ffffff;
            padding: 5px 0px;
            padding-left: 30px;
            width: 350px;
            font-size: 25px;
            margin-top: 80px;
            border-radius: 60px;
            position: absolute;
            left: -20px;
            font-weight: 400;
        }
}
}
.slider {
    width: 100%;
    height: 150px;
    margin: 100px auto 30px auto;
    overflow: hidden;
    background-color: #1A173F;
    display: flex;
    align-items: center;
}

.slide-track {
    display: flex;
    align-items: center;
    animation: scroll 10s linear infinite;
    -webkit-animation: scroll 10s linear infinite;
     width: calc(250px * 16);
}

.slide {
    min-width: 250px;
}

.slide img {
    height: 70px;           /* altura igual para todos */
    width: auto;            /* el ancho se adapta solo */
    max-width: 240px;       /* que no se pasen de ancho */
    object-fit: contain;
}
.slide-omixom img {
    max-height: 45px;   /* OMIXOM más chico porque su canvas es muy ancho */
    max-width: 160px;
    padding: 0;         /* sacamos el padding anterior */
}
.contenedor-valor {
    .slider-wrapper {
        overflow: hidden;
        max-width: 1200px;
        margin: 20px 70px 55px;
        .card-list {
            .card-item {
                background-color: #1A173F;
                width: 40%;
                padding: 35px;
                border-radius: 8px;
                color: white;
                height: 300px;
                .bloque1 {
                    display: flex;
                    align-items: center;
                    .persona1 {
                        width: 100px;
                        height: 100px;
                        object-fit: cover;
                        border-radius: 50%;
                        border: 2px solid white;
                    }
                    .nombre-persona {
                        font-size: 30px;
                        padding-left: 30px;
                    }
                }
                .bloque2 {
                    font-size: 20px;
                    color: #ffda34;
                    padding: 15px 0px;
                }
                .bloque3 {
                    font-size: 18px;
                    font-weight: 300;
                }
            }
        }
    }
    .slider-wrapper .swiper-pagination-bullet {
        background: #282828;
        height: 10px;
        width: 10px;
    }

    .slider-wrapper .swiper-slide-button {
        color: #636363;
        margin-top: -50px;
    }
}

.contenedor-separador {
    position: relative;
    height: 40px;
    .separador-3 {
        position: absolute;
        width: 100%;
        height: 80px;
        background-color: #ffffff;
        border-radius: 40px;
        z-index: 3;
    }
}

.faqs {
    background-color:#040835;
    height: auto;
    position: relative;
    padding-bottom: 40px;
    .contenedor-subtitulo-5 {
        width: 100%;
        position: relative;
        .subtitulo-5 {
            background-color: #ffffff;
            color: #040835;
            padding: 5px 0px;
            padding-left: 30px;
            width: 300px;
            font-size: 25px;
            margin-top: 80px;
            border-radius: 60px;
            position: absolute;
            left: -20px;
            font-weight: 400;
        }
    }
    .contenedor-acordeon {
        padding-top: 200px;
        padding-bottom: 40px;
        .contenedoracordeon {
            max-width: 800px;
            margin: 0 auto;
            font-family: "Kumbh Sans", sans-serif;
            background-color: #0d3ca2;
            .numerito {
                color: #0f3e95;
                font-size: 20px;
                padding-right: 5px;
                font-family: "Libre Baskerville", serif;
            }
            .accordion-item {
                background: none;
            }
    
            .accordion-body {
                background: #e0eaf8;
                font-size: 18px;
                color: rgb(94, 93, 93);
            }
    
            .accordion-button {
                background-color: rgb(255, 255, 255);
                border: none;
                color:#0f3e95;
                font-size: 20px;
            }
    
            .accordion-button::after {
                background-image: none;
                content: "\f0d7";
                font-family: fontawesome;
                width: auto;
                height: auto;
            }
    
            .accordion-button:focus {
                box-shadow: none;
            }
    
            .accordion-button:not(.collapsed) {
                color:#221183;
            }
        }
    }
    .separador-4 {
        position: absolute;
        width: 100%;
        height: 80px;
        background-color: #040835;
        border-radius: 40px;
    }
}

.contenedor-contacto {
    background-color: #ffffff;
    display: flex;
    .col-1 {
        height: 100%;
        width: 50%;
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        .logo-2 {
            height: 100px;
        }
        .texto-contacto {
            font-size: 20px;
        }
        .texto-contacto-1 {
            font-family: "Libre Baskerville", serif;
            font-size: 40px;
            width: 85%;
            text-align: center;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(95, 95, 95, 0.5);
        }
        .imagen-1 {
            height: 400px;
            object-fit: cover;
        }
    }
    .col-2 {
        width: 50%;
        padding-top: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        .contenedor-form {
            background-color: #F2F2F2;
            padding: 40px;
            border-radius: 20px;
            .field {
                margin-bottom: 10px;
              }
              
              .field label {
                display: block;
                font-size: 20px;
                color: #0a3ee8;
              }
              
              .field input {
                display: block;
                width: 500px;
                height: 40px;
                line-height: 0;
                font-size: 20px;
                border: 2px solid #0a3ee8;
                background: none;
              }
              
              .field .messi {
                width: 500px;
                height: 200px;
                border: 2px solid #0a3ee8;
                background: none;
              }
    
              input[type="submit"] {
                display: block;
                padding: 5px 60px;
                border-radius: 30px;
                font-size: 20px;
                background-color: #0a3ee8;
                color: #ffffff;
                transition: 0.3s ease;
                border: none
              }

              input[type="submit"]:hover {
                background-color: #120947;
              }
    
              input[type="text"]:focus {
                border: 2px solid #1F02C3;
              }
              input:focus, textarea:focus {
                outline: none;
              }
        }
    }
}

.contenedor-separador-2 {
    position: relative;
    height: 40px;
    .separador-5 {
        position: absolute;
        width: 100%;
        height: 80px;
        background-color: #ffffff;
        border-radius: 40px;
        z-index: 3;
    }
}

.contenedor-footer {
    padding: 120px 0;
    background: #2D2D2D;
    display: flex;
    align-items: center;
    justify-content: space-around;
    .logo-3 {
        .logo-4 {
            height: 100px;
        }
        .iconos {
            font-size: 30px;
            font-weight: 500;
            text-align: center;
            margin-top: 30px;
            transition: 0.3s ease;
            .fab {
                margin: 15px;
                background-color: #D9D9D9;
                color: #2D2F4A;
                padding: 10px;
                border-radius: 50%;
                transition: 0.3s ease;
            }
        }   
        .fab:hover {
            background-color: #2D2F4A;
            color: #d9d9d9;
        }
        
    }
    .menu {
        height: 170px;
        width: 200px;
        display: inline-block;
        .menu-2 {
            color: white;
            font-size: 25px;
            padding-bottom: 15px;
        }
        .contenedor-links {
            display: flex;
            font-size: 20px;
            font-weight: 300;
            .estilo-listas {
                list-style: none;
                .links {
                    color: white;
                    text-decoration: none;
                    transition: 0.3s ease;
                }
                .links:hover {
                    color: #adadad;
                    text-decoration: underline;
                }
            }
        }
    }
    .ayuda {
        width: 300px;
        position: relative;
        padding-bottom: 120px;
        .menu-2 {
            color: white;
            font-size: 25px;
            padding-bottom: 15px;
        }
        .contenedor-links {
            position: absolute;
            font-size: 20px;
            font-weight: 300;
            left: -28px;
            .estilo-listas {
                list-style: none;
                .links {
                    color: white;
                    text-decoration: none;
                    transition: 0.3s ease;
                }
                .links:hover {
                    color: #adadad;
                    text-decoration: underline;
                }
            }
        }
    }
}

.copy {
    padding: 20px 0;
    border-top: 2px solid white;
    background-color: #2D2D2D;
    width: 100%;
    text-align: center;
    .right {
        font-size: 15px;
        font-weight: 200;
        color: white;
    }
}

.terminosycondicione {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #98a8ca;
    padding-top: 120px;
    padding-bottom: 80px;
    .cartelt {
        padding: 60px;
        background-color: white;
        width: 80%;
        border-radius: 20px;
        .titulot {
            font-family: "Libre Baskerville", serif;
            font-size: 65x;
            text-decoration: none;
            color: #4834b9;
            text-align: center;
            padding-bottom: 60px;
        }

        .divt {
            .subtitulot {
                font-size: 20px;
                color: #3d2ba3;
            }
            .explicacion {
                font-size: 20px;
                color: #000000;
            }
            .parrafot {
                color: #3f3f3f;
                font-size: 18px;
            }
            .parrafote {
                color: #3f3f3f;
                font-size: 18px;
                margin-left: 20px;
            }
        }
    }
}
.wsp {
    text-decoration: none;

    .wasp {
        z-index: 3;
        width: 80px;
        height: 80px;
        background-color: rgb(52, 168, 52);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        position: fixed;
        bottom: 30px;
        right: 30px;
    }

    .iconito {
        color: white;
        font-size: 55px;
    }
}

.back-1 {
    background-color: #496dbc;
    display: flex;
    align-items: center;
    justify-content: center;
.back {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 80px;
    padding: 40px;
    border-radius: 30px;
    .cartel-1 {
        text-align: center;
        padding: 30px 10px;
        color: white;
        .titulo-confirm {
            color: #000000;
            font-family: "Libre Baskerville", serif;
        }
        .parrafo-confirm {
            color: #272727;
            font-size: 18px;
            font-weight: 300;
        }
    }
    .boton-inicio {
        text-decoration: none;
        color: #496dbc;
        background-color: white;
        padding: 10px 25px;
        font-size: 20px;
        border-radius: 50px;
        transition: 0.3s ease;
        border: 1px solid #496dbc;
    }
    .boton-inicio:hover {
        background-color: #496dbc;
        color: white;
    }
}
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% { transform: translateX(calc(-250px * 8)); }
}

@media screen and (max-width: 768px) {
    .portada {
        text-align: center;
        .contenedor-portada {
            padding-left: 0px;
            .div-titulo {
                display: flex;
                justify-content: center;
                .titulo {
                    text-align: start;
                }   
            }
            .parrafo-1 {
                width: 90%;
                margin: 40px auto;
                font-size: 18px;
            }
            .boton-1 {
                font-size: 22px;
                border-radius: 40px;
            }
        }
    }

    .primera { 
        grid-template-columns: 100%;
        grid-template-rows: 600px 350px 400px 560px;
        grid-template-areas: 
            "columna-1"
            "columna-2"
            "columna-3"
            "columna-4";
    }
    
    .columna-1 {
        .subtitulo {
            width: 240px;
            font-size: 22px;
            margin-top: 40px;
        }
        .card-1 {
            margin: 100px auto auto auto;
            width: 90%;
            .titulo-card {
                font-size: 20px;
            }
            .parrafo-card {
                font-size: 18px;
            }
        }
    }
    
    .columna-2 {
        .img-1 {
            height: 300px;
            width: 80%;
        }
    }
    
    .columna-3 {
        .img-2 {
            margin-left: 0px;
            width: 70%;
            height: 90%;
        }
    }
    
    .columna-4 {
        .card-1 {
            width: 90%;
            height: auto;
            .titulo-card {
                font-size: 20px;
            }
            .parrafo-card {
                font-size: 18px;
            }
        }
        .btn-2 {
            margin-top: 10px;
        }
    }
    .frase{
        margin-top: 100px;
        .titulo-frase{
            font-size: 30px;
            width: 90%;
            margin: 0 auto;
        }
        .parrafo-frase {
            font-size: 15px;
            width: 90%;
            margin: 0 auto;
            padding-top: 20px;
        }
        .separador {
            margin-top: 15px;
        }
    }

    
    .segunda {
        .contenedor-tarjetas {
            width: 90%;
            margin: 0 auto;
            .tarjeta {
                height: 180px;
                .titulo-tarjeta {
                    font-size: 20px;
                }
                .parrafo-tarjeta {
                    font-size: 18px;
                }
            }
        }
    }

    .tercera {
        height: auto;
        padding-bottom: 0px;
        .contenedor-frase {
            padding-top: 100px;
            display: flex;
            flex-direction: column;
            .contenedor-subtitulo-2 {
                width: 100%;
                text-align: center;
                .elipse-1 {
                    height: 200px;
                    width: 200px;
                    top: -30px;
                    left: -50px;
                }
                .elipse-2 {
                    height: 50px;
                    width: 50px;
                    top: -40px;
                    left: 150px;
                }
                .frase-2 {
                    font-size: 50px;
                    text-align: center;
                    padding: 0px;
                    width: 80%;
                }
            }
            .contenedor-parrafo {
                width: 100%;
                padding: 20px;
                font-size: 18px;
                text-align: center;
                .parrafo-2 {
                    font-weight: 300;
                }
                .boton-2 {
                    font-size: 18px;
                }
            }
        }
        .contenedor-tarjetas-2 {
            .res1 {
                background-color: #ececec;
            }
            .res2 {
                background-color: #d3e5ff;
            }
        }
    }
    .slider {
        margin: 150px auto 30px auto;
    }
    
    .slide-track {
        width: calc(150px * 10);
    }
    
    .slide {
        width: 150px;
    }

    .contenedor-valor {
        .slider-wrapper {
            margin: 20px 40px 55px;
            .card-list {
                .card-item {
                    .bloque1 {
                        .persona1 {
                            width: 80px;
                            height: 80px;
                        }
                        .nombre-persona {
                            font-size: 22px;
                        }
                    }
                    .bloque2 {
                        font-size: 15px;
                    }
                    .bloque3 {
                        font-size: 15px;
                    }
                }
            }
        }
    }

    .faqs {
        .contenedor-acordeon {
            padding-top: 150px;
            .contenedoracordeon {
                margin-left: 15px;
                margin-right: 15px;
    
                .accordion-body {
                    font-size: 15px;
                }
    
                .accordion-button {
                    font-size: 15px;
                }
            }
        }
        
    }

    .contenedor-contacto {
        display: flex;
        flex-direction: column;
        .col-1 {
            width: 100%;
            .logo-2 {
                height: 80px;
            }
            .texto-contacto {
                font-size: 15px;
            }
            .texto-contacto-1 {
                font-size: 30px;
            }
            .imagen-1 {
                width: 90%;
                height: auto;
            }
        }
        .col-2 {
            width: 100%;
            .contenedor-form {
                background-color: #F2F2F2;
                padding: 20px;
                border-radius: 20px;
                  .field label {
                    font-size: 15px;
                  }
                  
                  .field input {
                    width: 100%;
                  }
                  
                  .field .messi {
                    width: 100%;
                  }
        
                  input[type="submit"] {
                    margin: 0 auto;
                  }
            }
        }
    }
    
    .contenedor-footer {
        display: flex;
        flex-direction: column;
        gap: 30px;
        .logo-3 {
            .logo-4 {
                height: 80px;
            }
            .iconos {
                font-size: 20px;
            }   
        }
        .menu {
            height: 170px;
            width: 150px;
            .menu-2 {
                font-size: 20px;
            }
            .contenedor-links {
                font-size: 15px;
            }
        }
        .ayuda {
            width: 150px;
            padding-bottom: 20px;
            .menu-2 {
                font-size: 20px;
            }
            .contenedor-links {
                width: 200px;
                font-size: 15px;
            }
        }
    }

    .terminosycondicione {
        .cartelt {
            width: 90%;
            .titulot {
                font-size: 25x;
            }
            .divt {
                .subtitulot {
                    font-size: 15px;
                }
                .explicacion {
                    font-size: 15px;
                }
                .parrafot {
                    font-size: 12px;
                }
                .parrafote {
                    font-size: 12px;
                }
            }
        }
    }

    @keyframes scroll {
        100% {
            -webkit-transform: translateX(calc(-150px * 5));
            transform: translateX(calc(-150px * 5));
        }
    }
}

@media screen and (max-width: 400px) {
    .portada {
        .contenedor-portada {
            .div-titulo {
                .titulo {
                    padding-bottom: 20px;
                    margin-top: 50px;
                    font-size: 100px;
                    .titulo-2 {
                        top:90px;
                        font-size: 80px;
                    }
                }   
            }
            .parrafo-1 {
                font-size: 15px;
            }
            .boton-1 {
                font-size: 15px;
            }
        }
    }


    .primera { 
        grid-template-rows: 470px 350px 400px 460px;
    }
    
    .columna-1 {
        .subtitulo {
            font-size: 20px;
        }
        .card-1 {
            padding: 15px;
            .titulo-card {
                font-size: 18px;
            }
            .parrafo-card {
                font-size: 15px;
            }
        }
    }
    
    .columna-4 {
        .card-1 {
            padding: 15px;
            .titulo-card {
                font-size: 18px;
            }
            .parrafo-card {
                font-size: 15px;
            }
        }
    }
    .frase{
        margin-top: 50px;
    }

    .segunda {
        .contenedor-subtitulo {
            .subtitulo-2 {
                width: 140px;
                font-size: 20px;
            }
        }
        .contenedor-tarjetas {
            width: 90%;
            margin: 0 auto;
            z-index: 4;
            .tarjeta {
                width: 370px;
                height: 150px;
                .titulo-tarjeta {
                    font-size: 18px;
                }
                .parrafo-tarjeta {
                    font-size: 15px;
                }
            }
        }
    }

    .tercera {

        .contenedor-frase {
            .contenedor-parrafo {
                width: 90%;
                font-size: 15px;
                margin: 0 auto;
            }
        }

        .contenedor-subtitulo-3 {
            .subtitulo-3 {
                width: 230px;
                font-size: 20px;
            }
        }

        .contenedor-tarjetas-2 {
            width: 90%;
            .tarjeta-2 {
                font-size: 15px;
                .fas {
                    font-size: 25px;
                }
            }
        }

        .contenedor-subtitulo-4 {
            .subtitulo-4 {
                width: 300px;
                font-size: 20px;
            }
        }
    }

    .contenedor-valor {
        
        .slider-wrapper {
            margin: 20px 35px 35px;
            .card-list {
                .card-item {
                    .bloque1 {
                        .persona1 {
                            width: 60px;
                            height: 60px;
                        }
                        .nombre-persona {
                            font-size: 18px;
                        }
                    }
                    .bloque2 {
                        font-size: 15px;
                    }
                    .bloque3 {
                        font-size: 13px;
                    }
                }
            }
        }
    }

    .contenedor-contacto {
        .col-2 {
            width: 90%;
            margin: 0 auto;
        }
        
    }
}


@media screen and (min-width: 1400px) {

    .portada {
        .contenedor-portada {
            .div-titulo {
                .titulo {
                    font-size: 150px;
                    .titulo-2 {
                        position: absolute;
                        top: 150px;
                        font-weight: 700;
                        font-size: 100px;
                        color: #ffffff;
                    }
                }   
            }
            .parrafo-1 {
                font-size: 25px;
            }
            .boton-1 {
                font-size: 27px;
            }
        }
    }
}
/* ======== SECCIÓN IA DIFERENCIAL ======== */

.ia-diferencial {
  background-color: #f5f8ff;
  padding: 80px 30px;
  font-family: "Kumbh Sans", sans-serif;
}

.ia-diferencial__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.ia-diferencial__text {
  flex: 1 1 500px;
}

.ia-diferencial__text h2 {
  font-size: 50px;
  color: #8e24aa;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.ia-diferencial__text h2 span {
  font-weight: 600;
  display: block;
}

.ia-diferencial__text p {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #333;
}

.ia-diferencial__text p strong {
  font-weight: 600;
}

.ia-diferencial__boton {
  background-color: #8e24aa;
  color: white;
  text-decoration: none;
  font-size: 20px;
  padding: 15px 30px;
  border-radius: 40px;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.ia-diferencial__boton:hover {
  background-color: #ff4081;
  color:white;
  transform: scale(1.05);
  text-decoration: none;
}

.ia-diferencial__video {
  flex: 1 1 350px;
  text-align: center;
}

.ia-diferencial__video iframe {
  width: 100%;
  max-width: 360px;
  height: 220px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ia-diferencial__caption {
  margin-top: 10px;
  font-style: italic;
  color: #1a173f;
  font-size: 16px;
}

/* ======== RESPONSIVE ======== */

/* Tablets */
@media screen and (max-width: 1024px) {
  .ia-diferencial__text h2 {
    font-size: 40px;
  }

  .ia-diferencial__text p {
    font-size: 20px;
  }

  .ia-diferencial__boton {
    font-size: 18px;
    padding: 12px 25px;
  }

  .ia-diferencial__video iframe {
    max-width: 100%;
    height: 200px;
  }
}

/* Celulares */
@media screen and (max-width: 768px) {
  .ia-diferencial__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ia-diferencial__text {
    flex: 1 1 100%;
  }

  .ia-diferencial__text h2 {
    font-size: 32px;
  }

  .ia-diferencial__text p {
    font-size: 18px;
  }

  .ia-diferencial__boton {
    font-size: 16px;
    padding: 12px 25px;
  }

  .ia-diferencial__video iframe {
    height: 200px;
  }
}
.ia-diferencial__text h2 {
  font-size: 46px;
  color: #8e24aa;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ia-diferencial__text h2 span {
  display: block;
  font-size: 54px; /* Más grande para destacar */
  font-weight: 800;
  margin-bottom: 5px; /* Reduce el espacio entre líneas */
}
.video-background {
  background: radial-gradient(circle at center, #f3e5f5 0%, #ede7f6 100%);
  padding: 25px;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
}
.video-background iframe {
  transition: transform 0.3s ease;
}

.video-background:hover iframe {
  transform: scale(1.02);
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Proporción 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (min-width: 769px) {
    .slide img {
        width: 200px;
        height: 100px;
        object-fit: contain;
    }

    .slide-omixom img {
        width: 160px;
        height: 70px;
    }

    .slider {
        height: 180px;
    }
}