@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


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

/*
    Transición del logo de la aplicación
*/
.circle{
    margin-top: 15px;
    margin-left: 7px;
    /* width: 20%;
    height: 20%; */
    /*width: 100%;  Contenedor ocupa todo el ancho disponible */
    max-width: 250px; /* Ancho máximo del contenedor */
    background: white;

    /* animation */
    animation-name: mover;
    animation-duration: 4s;
    animation-iteration-count: 10;
    animation-direction: alternate;
}

@keyframes cambiarColor{
    from{
        background-color: #42A8BF;
    }

    to{
        background-color: #C20E1A;
    }
}

@keyframes cambiarTamanio{
    0%{
        transform: scale(1);
    }
    25%{
        transform: scale(1.2);
    }
    50%{
        transform: scale(1.4);
    }
    75%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes mover{
    0%{
        transform: translateX(0);
    }
    100%{   
        transform : translateX(100%);
    }
}

/* Consulta de medios para dispositivos móviles */
/*Si el dispositivo es de 760px, el logo de la App (LunchApp) se moverá hasta un 50% del tamaño del div*/
@media (max-width: 760px) { /* Ajusta el valor según tus necesidades */
    @keyframes mover {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(50%); /* Cambia a 60% para dispositivos móviles */
        }
    }
}

.mi-imagen {
    width: 100%; /* La imagen ocupará el 100% del ancho del contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    display: block; /* Elimina espacios en blanco debajo de la imagen */
}

.mi-imagen-cover{
    max-width: 20%; /* Asegura que la imagen no exceda el tamaño del contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    /* Para reducir el tamaño puedes especificar un ancho fijo 
    width: 10%;  Cambia este valor según tus necesidades */
}

/****************************************/

.container__all{
    position: relative;
    right: 0;
    transition: all 300ms;
}

header{
    width: 100%;
    height: 100px;
    font-family: 'Poppins', sans-serif;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transition: all 300ms;
}


.move_content{
    right: 180px;
}

.container__header{
    max-width: 1200px;
    height: 100%;  
    display: flex;
    justify-content: space-between; 
    margin: auto;
    padding: 0px 20px;
}

header .logo{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container__nav{
    position: relative;
    height: 100%;
}

nav{
    height: 100%;
}

nav ul{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li{
    margin: 0px 20px;
    list-style: none;
}

nav ul li a{
    font-family: Arial;
    color: #373737;
    font-size: 15px;
}

.select{
    background: #42A8BF;
    padding: 10px 30px;
    color: white;
    border-radius: 20px;
}

.select:hover{
    background: #DC911B;
    color: black;
    box-shadow: 1px 1px 30px -5px #20202085;
}

.nav_mod{
    height: 70px;
    box-shadow: 1px 1px 10px 0px #00000010;
    background: white;
}

/*
Esta clase muestra el botón cuando los dispositivos son móviles.
*/

.btn__menu{
    background-color: #42A8BF;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 500ms;
    display: none;
}

.btn__menu:hover{
    background: #DC911B;
    box-shadow: 1px 1px 30px -5px #20202085;
}

/*Para el menu hamburguesa*/
.menu-icon {
    font-size: 30px; /* Size of the icon */
    cursor: pointer; /* Change cursor to pointer */
    transition: transform 0.3s ease; /* Smooth transition for transformation */
}
.active {
    transform: rotate(90deg); /* Rotate the icon when active */
}

/*COVER*/

.cover{
    width: 100%;
    padding-bottom: 60px;
    font-family: 'Poppins', sans-serif;
    margin-top: 100px;
}

.container__cover{
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: row; /* Alinea los elementos en columna en pantallas pequeñas */
    align-items: center; /* Centra elementos */
    justify-content: space-between;
    position: relative;
    background-image: url(/static/images/background-cover.svg);
    background-size: cover;
    background-position: bottom;

}

.cover .container__info{
    max-width: 400px;
    margin-top: 40px;
    z-index: 2;
}

.cover h1{
    max-width: 400px;
    font-family: Arial;
    font-size: 50px;
    font-weight: 900;
    color: #373737;
}

.cover h2{
    font-family: Arial;
    font-size: 50px;
    font-weight: 900;
    color: rgb(194, 14, 26);
    margin-top: -10px;
}

.cover p{
    font-family: Arial;
    font-size: 15px;
    margin-top: 10px;
    color: #373737;
}

.cover a{
    font-family: Arial;
    font-size: 15px;
}

.cover input[type="button"]{
    padding: 10px 40px;
    margin-top: 40px;
    font-family: Arial;
    font-size: 15px;
    font-weight: 600;
    border: none;
    color: white;
    background: #42A8BF;
    border-radius: 20px;
    box-shadow: 1px 1px 30px -5px #20202049;
    cursor: pointer;
    transition: box-shadow 500ms;
}

.cover input[type="button"]:hover{
    background: #DC911B;
    color: black;
    box-shadow: 1px 1px 30px -5px #20202085;
}


.container__vector{
    /*position: absolute;*/
    margin-top: 20px; /* Espacio entre el texto y la imagen */
}

.container__vector img{
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 10px;
    right: 120px;
    animation: move_vector 6s ease-in-out infinite;
    transition: all 300ms;
}

@keyframes move_vector {
    0%{
        transform: translateY(30px);
    }
    25%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(30px);
    }
}

@media screen and (max-width: 760px){

    .container__header{
        max-width: 600px;
    }

    .mi-imagen{
        width: 70%;
    }

    .container__cover {
        flex-direction: column; /* Asegura que se apilen en columnas en pantallas pequeñas */
        align-items: center; /* Centra elementos */
        justify-content: space-between; /* Espaciado entre los elementos */
    }
    .container__info {
        flex: 1; /* Toma el espacio disponible */
        margin-right: 20px; /* Espacio entre texto e imagen */
    }

    .cover h1 {
        font-size: 40px; /* Reduce el tamaño del encabezado */
    }

    .cover h2 {
        font-size: 36px; /* Reduce el tamaño del subtítulo */
    }

    .cover input[type="button"] {
        padding: 10px 20px; /* Reduce el tamaño del botón */
        font-size: 16px; /* Ajusta el tamaño de la fuente */
    }

    .container__vector {
        width: 200px;
        height: 150px;
        
    }
    .container__vector img{
        width: auto;
    }
    
}
    
@media screen and (max-width: 760px){

    .container__nav{
        max-width: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn__menu{
        display: flex;
        background-color: #42A8BF;
    }

    nav{
        height: 100%;
        background: #F1FAFF;
        position: fixed;
        top: 0;
        right: -180px;
        padding: 0 40px;
        transition: all 300ms;
    }

    .move_nav{
        right: 0px;
    }

    nav ul{
        flex-direction: column;
    }

    nav ul li{
        margin: 20px 0px;
    }
}






/****************************/

/*¡NO TOCAR CODIGO DE AQUÍ DEBAJO!*/


/*MUESTRA*/


@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

:root{
    --color-esqueleto:#EFF3F5;
}


/*AQUI COMIENZA EL FOOTER*/

footer{
    width: 100%;
    padding: 50px 0px;
    font-family: 'Nunito', sans-serif;
    /* background-color: var(--color-esqueleto); */
    background-image: url("/static/images/background-footer.svg");
    background-size: cover;
}

.img-container {
    text-align: center;
}

.img-container h5{
    font-family: Arial;
    font-size: 15px;
}

.img-container p{
    font-family: Arial;
    font-size: 15px;
}

.mi-imagen-footer {
    width: auto; /* La imagen ocupará el 100% del ancho del contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    display: block; /* Elimina espacios en blanco debajo de la imagen */
    margin: auto;
}