/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 👆 --------- CSS RESET --------- 👆 */

/* 👇 --------- PAGE CSS ---------- 👇 */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
*{
    font-family: 'Lato', Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior: smooth;
}

.alignment{
    margin: 0 auto;
    padding: 0 140px;
    box-sizing: border-box;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 176px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 35px;
    background: rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(3px);
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    z-index: 200;
}

.menu-mobile{
    display: none;
}

header nav{
    max-width: 1111px;
    width: 100%;
}

header nav ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav a{
    font-weight: 900;
    font-size: 35px;
    color: #fff;
    text-decoration: none;
}

header nav a::after{
    content: '';
    width: 0px;
    height: 2px;
    display: block;
    background-color: #fff;
    transition: all .5s ease-in-out;
}

header nav a:hover::after{
    width: 100%;
}

header img.menu-button{
    position: absolute;
    width: 50px;
    top: 58.5px;
    right: 48.5px;
    z-index: 300;
    filter: grayscale(100%) brightness(100);
    z-index: 300;
}

header img.menu-button.active{
    filter: initial;
}

header img.menu-button:hover{
    filter: brightness(130%);
    cursor: pointer;
}

header .lang-menu{
    position: absolute;
    right: -300px;
    top: 0;
    z-index: 250;
    height: 450px;
    width: 300px;
    background-color: #fff;
    border-radius: 0 0 0 50px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 0 0 53px 36px;
    box-sizing: border-box;
    box-shadow: -4px -4px 10px rgba(0, 0, 0, .2);
    transition: all .7s cubic-bezier(0.3, 0.73, 0.29, 0.99);
}

header .lang-menu.active{
    right: 0px;
}

header .lang-menu ul{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 50px;
}

header .lang-menu ul li a{
    color: #303030;
    font-size: 32px;
    font-weight: 900;
    text-decoration: none;
}

header .lang-menu ul li a.active{
    color: #336ec6;
}

header .lang-menu ul li a.active:hover{
    cursor: default;
}

header .lang-menu ul li a.active::after{
    width: 100%;
    background-color: #336ec6;
}

header .lang-menu ul li a::after{
    content: '';
    width: 0px;
    height: 2px;
    display: block;
    background-color: #303030;
    transition: all .5s ease-in-out;
}

header .lang-menu ul li a:hover::after{
    width: 100%;
}

section.main{
    background: url(../images/barco.png) no-repeat center;
    background-size: cover;
    height: 947px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 100px;
}

section.main .textbox{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

section.main .textbox h1{
    font-size: 150px;
    font-weight: 900;
    color: #fff;
}

section.main .textbox h4{
    font-size: 25px;
    font-weight: 900;
    color: #fff;
}

section.contact{
    background: url(../images/SP.png) no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    column-gap: 350px;
    min-height: 1202px;
    margin-top: -25px;
    border-radius: 30px 30px 0 0;
    position: relative;
}

section.contact .setinha-baixo{
    position: absolute;
    top: 30px;
    left: calc(50% - 26px);
    cursor: pointer;
    z-index: 10;
}

section.contact .box{
    border-radius: 30px 30px 0 0;
    background: rgba(51, 110, 198, 0.80);
    backdrop-filter: blur(2.5px);
    min-height: 1202px;
    max-width: 960px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 15px;
}

section.contact .box > img{
    margin-top: 211px;
    margin-bottom: 42px;
}

section.contact .box form{
    display: flex;
    flex-direction: column;
    row-gap: 42px;
    max-width: 666px;
    width: 100%;
}

section.contact .box form label{
    font-size: 24px;
    color: #fff;
    font-weight: 900;
    margin-left: 20px;
}

section.contact .box form input{
    height: 70px;
    padding: 0 25px;
}

section.contact .box form textarea{
    height: 250px;
    padding: 20px 25px;
    box-sizing: border-box;
    resize: none;
}

section.contact .box form input, section.contact .box form textarea{
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.70);
    border-radius: 30px;
    border: 0;
    margin-top: 5px;
    font-size: 24px;
}

section.contact .box form div:nth-last-child(1){
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
}

section.contact .box form div:nth-last-child(1) input{
    height: 100px;
    background-color: #FFF;
    color: #303030;
    font-size: 48px;
    font-weight: 900;
    border-radius: 100px;
    transition: all .4s ease-in-out;
    cursor: pointer;
}

section.contact .box form div:nth-last-child(1) input:hover{
    background-color: #336EC6;
    color: #fff;
}

section.contact .box form div:nth-last-child(1) img{
    cursor: pointer;
}

section.contact .box form div:nth-last-child(1) img:hover{
    filter: brightness(150%);
}


footer{
    width: 100%;
    height: 200px;
    position: relative;
    background-color: #fff;
    display: flex;
    align-items: center;
}

footer img{
    position: absolute;
    left: calc(50% - 130.5px);
    top: 67px;
}

footer p{
    font-size: 20px;
    font-weight: 600;
    color: #303030;
}

@media(max-width: 1660px){
    header.alignment{
        padding: 0 135px;
    }

    .alignment{
        padding: 0 40px;
    }
}

@media(max-width: 1439px){
    header{
        column-gap: 30px;
    }
    
    header .header-logo img{
        width: 150px;
    }

    footer p{
        font-size: 16px;
    }
}

@media(max-width: 1270px){
    footer{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        row-gap: 40px;
        height: auto;
    }

    footer.alignment{
        padding: 60px 40px;
    }

    footer img{
        position: initial;
        top: initial;
        left: initial;
    }

    footer p{
        text-align: center;
    }
}

@media(max-width: 1245px){
    header .lang-menu{
        width: 200px;
        height: 300px;
        right: -200px;
    }

    header .lang-menu.active{
        right: 0px;
    }

    header .lang-menu ul{
        row-gap: 30px;
    }

    header .lang-menu ul li a{
        font-size: 24px;
    }

    section.contact .box form div:nth-last-child(1) input{
        background-color: #336EC6;
        color: #fff;
    }
    
    section.contact .box form div:nth-last-child(1) input:hover{
        background-color: #FFF;
        color: #303030;
    }

    section.contact .box{
        border-radius: 30px 30px 0px 0px;
        background: rgba(0, 0, 0, 0.10);
        backdrop-filter: blur(4px);
    }

    section.main .textbox h1{
        font-size: 64px;
    }

    section.main .textbox h4{
        font-size: 15px;
    }

    section.main{
        justify-content: center;
    }

    header{
        height: 111px;
        justify-content: center;
    }

    header nav{
        display: none;
    }

    header .header-logo img{
        width: 100%;
        max-width: 190px;
    }

    header img.menu-button{
        width: 30px;
        top: 48.5px;
        right: 38.5px;
    }

    .hamburguer-button{
        display: block;
        position: fixed;
        width: 30px;
        height: 20px;
        z-index: 1001;
        left: 45px;
        top: 45px;
        cursor: pointer;
    }

    .hamburguer-button.active .line, .hamburguer-button.active .line::after, .hamburguer-button.active .line::before{
        background-color: #336EC6;
    }

    .hamburguer-button .line, .hamburguer-button .line::before, .hamburguer-button .line::after{
        position: absolute;
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 5px;
        background-color: #fff;
        transition: all .3s ease-in-out;
    }

    .hamburguer-button .line::before{
        top: -20px;
    }

    .hamburguer-button .line{
        top: 20px;
    }

    .hamburguer-button .line::after{
        top: -10px;
    }

    .menu-mobile{
        position: fixed;
        display: block;
        left: -100%;
        top: 0;
        backdrop-filter: blur(4px);
        background-color: rgba(255, 255, 255, 0.8);
        height: 100vh;
        width: 100%;
        max-width: initial;
        z-index: 1000;
        transition: all .7s cubic-bezier(0.3, 0.73, 0.29, 0.99);
    }

    .menu-mobile.active{
        left: 0%;
    }

    .menu-mobile ul{
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        row-gap: 30px;
        padding-left: 45px;
        padding-top: 126px;
    }
    
    .menu-mobile a{
        font-weight: 500;
        font-size: 24px;
        color: #336EC6;
        text-decoration: none;
    }
    
    .menu-mobile a::after{
        content: '';
        width: 0px;
        height: 2px;
        display: block;
        background-color: #336EC6;
        transition: all .5s ease-in-out;
    }

    .menu-mobile a:hover::after{
        width: 100%;
    }
}


@media(max-width: 450px){
    section.contact .box form input{
        height: 50px;
    }

    section.contact .box form input, section.contact .box form textarea{
        font-size: 20px;
    }

    section.contact .box form div:nth-last-child(1) input{
        height: 50px;
        font-size: 32px;
    }

    section.contact .box form div:nth-last-child(1) img{
        max-width: 50px;
    }
}