@import url('https://fonts.googleapis.com/css2?family=Lexend&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Poppins:wght@700&display=swap');


:root{

    --font-vanilla: "Lexend", serif;
    --font-main: "Lexend Deca", serif;

    --cor1: #2D4356;
    --cor2: #E50000;
    --cor3: #868686;
    --cor4: #505050;

}

body{
    font-family: var(--font-vanilla);
}
header{
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
}
section{
    margin: 0 0 40px 0;
}

h1, h2, h3{
    font-family: var(--font-main);
    text-align: center;
    color: var(--cor1);
    margin: 10px 0;
    letter-spacing: -0.05em;
}
button:hover{
    transform: scale(1.05);
}

.menu_icon{
    width: 25px;
    height: 25px;
}
header .logo{
    width: 150px;
}

nav{
    display: flex;
    align-items: center;
    gap: 50px;
}
nav a{
    color: var(--cor1);
    text-decoration: none;
}
nav a:hover{
    text-decoration: underline;
}
nav button{
    width: 211px;
    height: 40px;
    border-radius: 100px;
    padding: 20px;
    background-color: var(--cor1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav button p{
    margin: 0;
}
/**/
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.39);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.menu-sidebar {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.menu-sidebar button, .nav-links button{
    display: flex;
    gap: 5px;
}
.menu-sidebar button img, .nav-links button img{
    width: 20px;
}
/**/

main .image_side{
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    color: white;
}
main .image_side h1, main .image_side h2{
    color: white;
}
main .image_side.first{
    background: url(../img/imagem\ destaque\ 1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
main .image_side.first h1{
    font-size: 72px;
    font-weight: bold;
}
main .image_side.first p{
    max-width: 800px;
    text-align: center;

}
main .image_side .button_app_side{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
main .image_side .button_app_side a:hover{
    transform: scale(1.05);
    transition: 0.2s;
}

main .app_side{
    text-align: center;
}
main .app_side h2, main .advantages_side h2, main .form_side h2{
    font-size: 40px;
}
main .app_side p{
    color: #505050;
}
main .app_preview{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;  
    gap: 5px;
}
main .app_preview p{
    color: var(--cor3);
}
main .app_image{
    width: 31%;
}

main .image_side.second{
    background: url(../img/imagem\ destaque\ 2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;

    justify-content: center;
    
}
main .image_side.second h2{
    text-align: left;
    font-size: 100px;
    font-weight: bold;
}
main .image_side.second div{
    padding: 20px;
}
main .image_side.second p{
    max-width: 820px;
}
main .advantages{
    margin-top: 90px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 15px;
}
main .advantages_side h2{
    padding: 0 65px;
}
main .advantage{
    width: 23%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    text-align: center;
}
main .advantage h3{
    font-size: 20px;
    margin: 0;
}
main .advantage p{
    font-size: 14px;
}

.img{
    background: url(../img/fundo\ branco.webp);
    background-size: cover;
    height: 100%;
}
.form_side{
    text-align: center;
    margin-top: 100px;
}
.form_side p{
    color: var(--cor4);
}
.form_side form{
    margin-top: 30px;
    text-align: center;
}
.form_side button{
    border-radius: 100px;
    color: white;
    padding: 20px;
}
.form_side .btn_side button, button#enviar{
    width: 130px;
    background-color: var(--cor1);
}
.form_side #step_dados_barco button{
    width: auto;
}

footer{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}
footer .midia_side{
    display: flex;
    gap: 20px;
}
footer a{
    transition: 0.2s all;
}
footer .politic{
    color: white;
    margin-bottom: 16px;
}
footer p{
    color: white;
}
footer a:hover{
    transform: scale(1.05);
}