/*Propiedades*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(0deg, rgba(207,224,255,1) 0%, rgba(130, 127, 209) 100%);
}

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 50px 80px 50px 50px;
    display: flex;
    object-fit: cover;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
}

header .logo{
    width: 6vmax;
    cursor: pointer;
}

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

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

nav ul li a{
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 20px;
    color: #110011;
}

nav ul li a:hover,
nav ul li a.active{
    background: #ddccdd;
    color: #110011;
}

section{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-height: 100vh;
}


/*Desvaneciomiento seccion*/

section::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #1c0522, transparent);
    z-index: 10;
}

section img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    pointer-events: none;
}

section #slogan{
    position: absolute;
    color: #110011;
    font-size: 6vmax;
    text-align: center;
    font-family: 'Rancho', sans-serif;
    line-height: 0.8em;
    white-space: nowrap;
    transform: translateY(-200px);
    margin-top: 12vw;
    margin-left: 10vw;
}

section #btn{
    text-decoration: none;
    display: inline-block;
    background: #827fd1;
    color: #110011;
    padding: 8px 30px;
    border-radius: 20px;
    letter-spacing: 2px;
    font-size: 1.2em;
    font-weight: 500;
    transform: translateY(20px);
    transform: translateX(60px);
}

section #btn:hover{
    background: #3d003d;
    color: white;
}


/*Seccion Scroll*/

.sec{
    background: #1c0522;
    position: relative;
    padding: 80px;
}

.sec h2{
    font-size: 3.5vw;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Rancho', sans-serif;
}

.sec h3{
    font-size: 2vw;
    color: #fff;
    margin-bottom: 10px;
    
}

.sec p{
    font-size: 1.2wv;
    color: #fff;
}


/*RESPONSIVE*/

@media(max-width:991px){
    .sec{
        padding: 60px;
    }

    .sec p{
        font-size: 1em;
    }

    header .menulist{
        opacity: 0;
    } 

    header .menu{
        position: absolute;
        right: 40px;
        height: 40px;
        width: 40px;
        cursor: pointer;
        background-image: url(/images/lista.svg);
        background-size: 25px;
        background-repeat: no-repeat;
        background-position: center;
    }
}