@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
nav{
    background: rgb(60,84,92);
    background: linear-gradient(151deg, rgba(60,84,92,0.9136029411764706) 2%, rgba(52,75,92,0.9780287114845938) 82%);
    padding: 5px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .logo a{
    text-decoration: none;
    color: #070808;
    font-size: 35px;
    font-weight: 600;
}
nav ul{
    display: flex;
    align-items: center;
    list-style: none;
    padding: 10px;
}
nav li{
    margin-left: 7px;
}
nav li a{
    text-decoration: none;
    color: #ffff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 3px;
    transition: 0.3s;
}
nav li a:hover{
    background-color: rgb(255, 255, 255);
    color: rgb(7, 8, 8);
}
.banner{
    height: 100vh;
    background: linear-gradient( rgba(0,0,0,0.281), rgba(0,0,0,0.308)),url('Fundo1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.texto .titulo{
    color: #f7f8fa;
    font-size: 60px;
    font-weight: 600;
}
.texto .sub_titulo{
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
}
.texto .link_titulo{
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
}
.texto .botoes{
    margin-top: 30px;
}
.texto .botoes button{
    height: 55px;
    width: 170px;
    border-radius: 5px;
    border: 0;
    margin: 0 10px;
    font-size: 20px;
    font-weight: 500;
    padding: 0 10px;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}
.texto .botoes button.n-overlay{
    color: white;
    background: none;
    border: 2px solid white;
}
.texto .botoes button.n-overlay:hover{
    color: rgb(255, 255, 255);
    background-color: white;
}
.texto .botoes button.overlay{
    background: white;
    color: rgb(255, 255, 255);
    animation: vibrar 0.5s ease-in-out infinite both;
}
@keyframes vibrar {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}