/* Importar fonte */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Variáveis de cores*/
:root 
{ 
    --texto: #f9f9f9;
}

body{
    font-family: 'Poppins', sans-serif;
    color: var(--texto);
    background-image: linear-gradient(to bottom right, #628e75, #1a4855);
    max-height: 100vh;
    max-width: 100%;
    overflow-y: hidden;
}

header{
    height: 25vh;
}

header nav .topo{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

header nav .topo .logo{
    width: 60%;
    height:12vh;
    
}

header nav .topo .logo img{
    width: 8rem;
  
}


header nav .topo div ul{
    height: 20vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

header nav .topo div ul li{
    font-size: 1.6rem;
    cursor: pointer;
    
}

header nav .topo div ul li .fab{
    color: var(--texto);

}

/* Conteúdo  Principal */


main .container{
    height: 75vh;
    display: flex;
    justify-content: space-evenly;
    gap: 4rem;
}

main .container .texto-botoes{
    height: 70vh;
    width: 30rem;

}


main .container .texto-botoes .texto p{
    font-weight: 600;
    font-size: 1.4rem;
}

main .container .texto-botoes .texto h2{
    font-weight: 800;
    font-size: 4rem;
    margin: 0;

}

main .container .texto-botoes .texto span{
    font-weight: 300;
   
}

main .container .texto-botoes .botoes{
    display: flex;
    gap: 2rem;
    margin-top: 1.6rem;

}

main .container .texto-botoes .botoes button {
    padding: .8rem 1.6rem;
    background-color: transparent;
    border: 2px solid #628e75;
    cursor: pointer; 
    text-align: center;
    transform:skew(-30deg);
    transition: .7s ease-in-out;
}

main .container .texto-botoes .botoes button:hover {
    background-color: #628e75;
}

main .container .texto-botoes .botoes button i {
    color: var(--texto);
    margin-right: .4rem;
}

main .container .texto-botoes .botoes button a p{
    display: inline;
    margin-left: .2rem;
    color: var(--texto);
    transform:skew(30deg);

}

main .container .ilustracao img{
    max-width:70vw;
    max-height:60vh;   
}

@media only screen and (min-width:600px) and (max-width:768px){
   
    header nav .topo {
    width: 98%;
}
    main .container .texto-botoes .texto h2 {
    font-weight: 800;
    font-size: 3rem;
}  

    main .container .texto-botoes .botoes button {
     padding: 0;
     width: 25vw;
     height: 5vh;

} 
    main .container .ilustracao{
    width:100%;
}
    main .container .ilustracao img{
    width:100%;
    height:50%;   
    }
    
}

@media only screen and (min-width:250px) and (max-width:599px){
    
    body {
        height: 100vh;
    }
    
    header nav .topo {
        height: 14vh;
    }
    header nav .topo .logo img {
        width: 6rem;
    }
    
    header nav .topo div ul {
        height: 12vh;
    }
    header nav .topo div ul{
        height: 20vh;
        gap: 2rem;
       
    }
    
    header nav .topo div ul li{
        font-size: 1.4rem;
        
    }
   
    main .container{
        height: 56vh;
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }
    main .container .texto-botoes{
        width: 80vw;
        margin-left: 1.2rem;

    }

    main .container .texto-botoes .texto p {
        margin: .4rem 0;
        font-size: 1.2rem;
    }
    main .container .texto-botoes .texto h2 {
        font-size: 3rem;
        line-height: 3.6rem;
    }
    main .container .texto-botoes .texto span {
        font-size: .9rem;
        
    }
    main .container .ilustracao{
        height: auto;
        text-align: center;
    }
    main .container .texto-botoes .botoes button {
        background-color: #628e75;
    }
 
    main .container .texto-botoes .botoes  .trailer  {
        display: none;
    }

    main .container .ilustracao img{
        width:74vw;
        height:25vh;   
    }
    
}
