@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inria+Sans&family=Lilita+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jockey+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600&display=swap'); 
@font-face {
    font-family: "Dilo";
    src: url(../fuentes/DiloWorld.ttf);
}

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

body{
    margin: 0;
    margin-top: 80px;
    padding: 0;
    width: 100%;
    background-color: #6b579e;
}

.voltear {
    display: inline-block;
    transform: scaleX(-1);
}



@media  screen and (max-width: 768px) {
    body{
        margin-top: 40px;
    }
}
/* ------------------NAVBAR--------------------*/
.navbar {
    background-color: #ffffff !important;
    margin-bottom: 0px;
    width: 100%;
    padding: 0%;
    position: fixed;
    top: 0;
    z-index: 1000; 
}

.navbar-collapse{
    display: flex;
    justify-content: space-around;
}

.navbar-collapse .fa-circle-user{
    color: #332065;
    font-size: 1.5rem;
}

.navbar-nav{
    display: flex;
    justify-content: space-between;
    color: #332065;
}


.nav-item .nav-link{
    font-weight: 600;
    color: #8A69D4 !important;
    font-family: 'Inria Sans', sans-serif;
    font-size: 18px;
}

.nav-item .active{
    color: #E7BD4F !important;
}

.navbar-brand img{
    height: 50px;
    width: 100%;
    margin: 10px 0;
}

@media screen and (max-width: 768px){
    .container-fluid{
        width: 100%;
        height: 100%;
        min-height: 45px;
        background-color: #ffffff;
    }
    .navbar-brand{
        display: none;
    }
    .navbar-toggler{
        background-color: #688CF8 !important;
        margin: 5px;
        margin-bottom: 0px;
        padding: 0;
        position: fixed !important;
        top: 0 !important;
        z-index: 1000 !important;
        font-style: none;
    }
    .navbar-collapse .fa-circle-user{
        display: none;
    }

    .navbar-collapse{
        justify-content: center;
    }
}

/* ------------------Título page--------------------*/

.titulo-page{
    position: relative;
    text-align: center;
    color: white; 
    padding: 100px; 
    background-image: url('/recursos/image1.png'); 
    background-size: cover;
    background-position: center;
    font-family: "Dilo" !important;
}

.titulo-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.titulo-page h1 {
    position: absolute;
    font-size: 64px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .titulo-page{
        padding: 5px;
        font-size: 2rem;
        height: 100px;
    }
    .titulo-page h1 {
        position: absolute;
        font-size: 24px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
/* --------------Descripcion page-------------*/
.descripcion-page {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    height: auto;
    width: 800px;
    display: flex;
    align-items: center;
    text-align: justify;
    justify-content: center;
    font-weight: 800 ;
}

.descripcion-page p {
    color: #332065;
    font-size: 24px;
    margin: 0;
    padding: 0;
    font-family: 'Manrope';
    font-weight: 600;
}



.footer-company{
    height: 120px;
    color: #332065;
}

@media screen and (max-width: 768px) {
    .descripcion-page{
        position: relative;
        width: 100% !important;
        margin: 50px;
        max-width: 600px; 
        margin: 0 auto; 
        padding: 20px; 
        font-size: 0.2  rem !important;
    }

    .descripcion-page p{
        font-size: 15px;
    }

    .footer-company{
        height: 120px;
        color: #332065;
    }
}

/* movimiento de imagenes */
.img-us{
    animation: movimiento 2.6s linear infinite;
}


@keyframes movimiento{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0);
    }
}


@keyframes moverR{
    0%{
        transform: translate(100%);
    }
}
