@charset "UTF-8";

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

body{
    background-color: black;

    background-image: url(/assests/home/background-home-desktop.jpg);
    background-repeat: no-repeat;
    background-size: cover;

    height: 100vh;
   
}


li{
    list-style: none;
    
}

a{
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    text-transform: uppercase;
}

span{
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 0.2rem;
}


#header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-top: 2rem;
}

.logo{
    padding-left: 3rem;
    height: 70px;
}



.navegation {
   
    background: linear-gradient(45deg, #0b0d19dc,#556179da, #0b19349d);
    height: 100px;
    width: 1000px;
    padding-inline: 2rem;

    display: flex;
    justify-content: center;
    align-items: center;
   
    transition: width 350ms ease-in;
}

.navegation ul{
    display: flex;
    gap: 5rem;
    
}

.clicado{
    border-bottom: 1px solid white !important;
    color: white !important;
}


.moblie-nav{
    display: none;
}


#contents{
    display: flex;
    align-items: center;
    color: white;
    flex: content;
}

.content-one{
   padding-left: 10rem;
   width: 70%;
}

.content-one h4 {
  
    text-transform: uppercase;
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    padding-top: 15rem;

    line-height: 34px;
    letter-spacing: 4.725px;

    color: #D0D6F9;

}

.content-one h1{
    font-family: 'Bellefair';
    font-style: normal;
    font-weight: 400;
    font-size: 10rem;

    text-transform: uppercase;
    line-height: 172px;
}

.content-one p{
    width: 35%;
    text-align: justify;
    font-family: 'Barlow';
    font-size: 1.2rem;
    line-height: 178%;

    color: #D0D6F9;
}

.content-two {
    margin-top: 25rem;
    background-color: white;
    padding-inline: 80px;
    padding-block: 100px;
    border-radius: 50%;

}


.content-two h3{
    font-family: 'Bellefair';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 37px;
    /* identical to box height */

    letter-spacing: 2px;

    color: #0B0D17;
}

@media (max-width: 700px){
    body{
        overflow-x: hidden;
        background-image: url(/assests/home/background-home-mobile.jpg);
    }

   
    .navegation{
        background: none;
    }

    .navegation ul{
        position: fixed;
        inset: 0 0 0 30%;
      

        background-color: rgba(221, 221, 221, 0.082);
        backdrop-filter: blur(2rem);

        flex-direction: column;
        
        text-align: left;
        padding: min(30vh, 10rem) 2em;
        transform: translateX(100%);
        transition: transform 350ms ease-out;
       
    }

    .navegation ul[data-visible="true"]{
        transform: translateX(0%);
    }
    .navegation ul li{
        margin-bottom: 1rem;
    }

    .moblie-nav{
        display: flex;
        align-items: center;
        position: fixed;

        background: url("/assests/shared/icon-hamburger.svg");
        background-repeat: no-repeat;
        background-size: cover;
        height: 100vh;
        z-index: 9999;
        
        height: 2rem;
        aspect-ratio: 1;
        top: 3rem;
        right: 1rem;

        border: none;
        cursor: pointer;

    }

    .moblie-nav[aria-expanded="true"]{
        background: url("/assests/shared/icon-close.svg");
        background-repeat: no-repeat;

        background-size: cover;
    }

    .moblie-nav[aria-expanded="false"]{
        position: absolute;
    }

    .moblie-nav span{
        display: none;
    }

    #contents{
        display: flex;
        flex-direction: column;
    }

    .content-one{
        padding: 0;
    }

    .content-one h4{
        padding-top: 3rem;
        font-size: 1.4rem;
    }

    .content-one h1{
        font-size: 7rem;
    }

    .content-one p{
        width: 20rem;
        font-size: 1rem;
    }

    .content-two {
        margin-top: 1rem;
        padding-inline: 50px;
        padding-block: 70px;
    }
    
}

@media (min-width: 700px) and (max-width: 1000px){
    body{
        background-image: url(/assests/home/background-home-tablet.jpg);
     
    }
    .navegation{
        width: 590px;
    }

    .navegation ul{
        gap: 3rem;
    }

    .navegation ul a{
        font-size: 1rem;
    }

   
    .content-one{

        padding-left: 2rem;
    }

    .content-one h4{
        padding-top: 10rem;
        font-size: 1.4rem;
    }

    .content-one h1{
        font-size: 7rem;
    }

    .content-one p{
        
        width: 20rem;
        font-size: 1rem;
    }

    .content-two {
        margin-top: 15rem;
        padding-inline: 50px;
        padding-block: 70px;
    }
}

@media (min-height: 500px ) and (max-height: 1050px) {
    body{
        height: 100%;
    }
}