@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.container-mae{
    background-image: url('../img/fundo.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu{
    width: 80%;
    min-height: 20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.texto{
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 65vh;
}

.texto-conteudo{
    width: 50%;
    color: white;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.texto-conteudo h1{
    font-size: 50px;
}

.texto-conteudo-img{
    width: 40%;
    display: flex;
    justify-content: flex-end;
}

.botoes{
    width: 55%;
    display: flex;
    justify-content: space-between;
}

.botoes a{
    width: 130px;
    height: 40px;
    border-radius: 4px;
    background-color: #FFFFFF;
    border: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
    color: black;
    text-decoration: none;
}

.logo{
    cursor: pointer;
}

@media (max-width: 1200px) {
    .texto{
        flex-direction: column;
    }

    .texto-conteudo{
        width: 70%;
        padding: 30px 0;
    }
    .texto-conteudo-img{
        width: 70%;
        justify-content: flex-start;
    }

    .texto-conteudo span{
        margin: 30px 0;
    }

    
  }


  @media (max-width: 980px) {
   
    .texto-conteudo{
        width: 75%;
    }

    .texto-conteudo-img{
        width: 75%;
    }
    
  }

  @media (max-width: 845px) {
   
    .texto-conteudo{
        width: 80%;
    }

    .texto-conteudo-img{
        width: 80%;
    }
    
  }

  @media (max-width: 767px) {
   
    .texto-conteudo{
        width: 85%;
    }

    .texto-conteudo-img{
        width: 85%;
    }
    
  }

  @media (max-width: 724px) {
   
    .texto-conteudo{
        width: 90%;
    }

    .texto-conteudo-img{
        width: 90%;
    }
    
  }

  @media (max-width: 690px) {
   
    .texto-conteudo{
        width: 95%;
    }

    .texto-conteudo-img{
        width: 95%;
    }
    
  }

  @media (max-width: 650px) {
   
    .texto-conteudo{
        width: 100%;
    }

    .texto-conteudo-img{
        width: 100%;
    }
    
  }

  @media (max-width: 620px) {
   
    .botoes{
        width: 95%;
    }
    
    .texto-conteudo-img img{
        width: 60%;
    }
  }