@font-face {
    font-family: 'rubik';
    src: url('../fonts/Rubik-VariableFont_wght.ttf');
}

span{
    font-family: 'rubik';
}

html{
    margin: 0;
    font-family: 'rubik';
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100% - 400px);
    position: sticky;
    top: 0;
    height: 100px;
    padding: 30px 200px 30px 200px;
    z-index: 99999999999;
    background-color: white;

}

ul{
    list-style-type: none;
}

#logo__header {
    height: 40px;
    position: relative;
    top: 3px;
}

#logo__text{
    font-size: 3em;
    margin:auto 10px auto 10px;
    color: #2934ff;
}

.item__header{
    height: min-content;
}

nav ul{
    display: flex;
    flex-direction: row;
    font-size: 1.4em;
    gap:50px;
    font-weight: 500;
    color:#3a3a3a;
}

nav ul div{
    padding: 10px 0px;
}

.selected_item{
    border-bottom-style:solid;
    border-style: none none solid none;
    border-color:#2934ff;
    border-bottom: 4px solid #2934ff;
}



/*----------SECCION 1------------*/
#lanzamiento__container{
    width: calc(100% - 200px);
    padding: 0 0px 0 200px;
    display: flex;
    gap:10%;
}

#info__item{
    width: 50%;
}

#info__img__container{
    width:40%;
}

#info__img{
    width: calc(100% - 50px);
    padding-right: 50px;
}

#lanzamiento__container{
    margin-top: 50px;
}

#lanzamiento__container h1{
    font-size: 3em;
    font-weight: 500;
    color:#2b2e68;
}

#lanzamiento__container p{
    font-size: 1.3em;
    color: #2b2e68;
}


#cronometro{
    display:flex;
    flex-direction: row;
    gap:20px;
    margin-top: 25px;
}

.cron__item{
    padding: 10px;
    width: 70px;
    font-size: 2em;
    color: #2b2e68;
    background-color: white;
    display:flex;
    flex-direction: column;
    border-radius: 10px;
}

#banner-lanzamiento{
    background-color: rgba(29, 30, 84, 0.73);
    color:white;
    padding: 30px;
    border-radius: 25px;
    width:min-content;
    position:fixed;
    bottom:20px;
    right: 20px;
    -webkit-box-shadow: -1px 5px 22px 0px rgba(0,0,0,0.43);
-moz-box-shadow: -1px 5px 22px 0px rgba(0,0,0,0.43);
box-shadow: -1px 5px 22px 0px rgba(0,0,0,0.43);
}

#lanza__title{
    font-size: 1.2em;
    padding-bottom: 20px;
}

.cron__title{
    font-size: 0.3em;
}

.button__action{
    padding:10px 20px 10px 20px;
    color:white;
    background-color: #2934ff;
    border-radius: 10px;
    width: fit-content;
}

.button__action p{
    color:white !important;
    font-size: 0.7em;
}

#home{
    padding-bottom: 100px;
}


/*-------Ebook section------------*/
#ebook{
    background-color: #f2f2f2;
    padding: 70px 200px 70px 200px;
    display: flex;
    flex-direction: row;
    gap:200px;
}

#ebook img{
    width:30%;
    padding-left: 10px;
}


.ebook__intro h1{
    font-size: 3em;
    font-weight: 500;
    color:#2b2e68;
}

.ebook__intro p{
    font-size: 1.3em;
    color: #2b2e68;
}

.ebook__intro .button__action{
    margin-top: 60px;
}



@media (max-width: 600px){
    .escritorio{
        display: none;
    }
    #lanzamiento__container {
        width: calc(100% - 40px);
        padding: unset;
        display: flex;
        flex-direction: column;
        gap: 60px;
        padding: 20px;
        margin-top: 0;
    }

    #lanzamiento__container h1 {
        font-size: 1.8em;
        font-weight: 500;
        color: #2b2e68;
    }

    #info__item {
        width: 100%;
    }

    #lanzamiento__container p {
        font-size: 1.2em;
        color: #2b2e68;
    }

    #info__img__container {
        width: 100%;
    }

    #info__img {
        width: 100%;
        padding: unset;
    }

    #ebook {
        background-color: #f2f2f2;
        padding:20px;
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
        width: calc(100% - 40px);
    }

    #ebook img {
        width: 100%;
        padding-left: unset;
    }

    .ebook__intro h1 {
        font-size: 1.8em;
        font-weight: 500;
        color: #2b2e68;
    }

    .ebook__intro p {
        font-size: 1.2em;
        color: #2b2e68;
    }

    header {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: calc(100% - 400px);
        position: sticky;
        top: 0;
        z-index: 99999999999;
        background-color: white;
        width: 100%;
        padding: 20px 0px 20px 0px;
        height: auto;
    }
}