*, 
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.resize-animation-stopper * {
    transition: none !important;
    animation: none !important;
}

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
}

img {
    max-width: 100%;
}

a {
    outline: none; 
    text-decoration: none; 
}

li {
    list-style: none;
}

::selection {
    background-color: #FF9900;
    color: black;
}

img::selection {
    background-color: transparent;
    color: transparent;
}

input::selection, textarea::selection {
    background-color: transparent;
    color: #757575;
}

input:focus, textarea:focus {
    outline: none;
}

/* all */ 

.wrapper {
    width: 100%;
}

.page {
    max-width: 1040px;
    margin: 0 auto;
    
}

/* header */

.row1 {
    display: flex;
    background-color: #000000;
    height: 10vh;
    justify-content: center;
    align-items: center;
}

.header-logo {
    text-align: center;
}

.header-logo a {
    display: flex;
}

.header-logo img {
    width: 94%;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.row2 {
    background-color: #232323;
}

nav {
    padding: 18px 0;
    display: flex;
    justify-content: center;
}

.home {
    color: #FF9900;
}

nav a {
    text-transform: uppercase;
    font-size: 13px;
    color: white;
    font-weight: 700;
}

nav a:hover {
    transition: 0.4s;
    color:#FF9900;
}

/* footer */

.row4 {
    padding: 40px 20px 60px;
    background-color: #333333;
}

.footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}

.contact {
    color: white;
    font-size: 20px;
}

.first-span {
    display: flex;
    justify-content: end;
}

.contact p {
    line-height: 30px;
    font-size: 16px;
}

iframe {
    border-radius: 10px;
    width: 100%;
}

.intro-contact {
    width: fit-content;
}

.text {
    color: white;
    font-size: 20px;
}

hr {
    color: orange;
    margin: 10px 0;
    border: 0.5px solid;
}

.wtp-contact {
    display: flex;
    gap: 10px;
    color: white;
    align-items: center;
}

.wtp-contact p {
    color: white;
}

.maps {
    display: flex;
    margin: 0 auto;
    max-width: 700px;
}

.row5 {
    background-color: #232323;
}

.copyright {
    padding: 20px;
    color: white;
    font-size: 10px;
}

/* formulario */ 

.text {
    padding-bottom: 20px;
    color: white;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
}

label {
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto, Helvetica, Arial, sans-serif;
    color: white;
    font-size: 20px;
}

input, textarea {
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto, Helvetica, Arial, sans-serif;
    font-size: 18px;
    padding: 7px 5px 7px 10px;
    border: none;
    outline: none;
    border: 3px solid #333333;
    width: 400px;
}

.form {
    gap: 14px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.erro {
    border: 3px solid #fb2727ed;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#erroNome, #erroEmail, #erroTelefone, #erroMsg {
    font-weight: bold;
    color: #fb2727;
    font-size: 20px;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto, Helvetica, Arial, sans-serif;
}

#btnCadastrar {
    cursor: pointer;
    background-color: #FF9900;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 20px;
    margin-top: 20px;
    max-width: fit-content;
    font-size: 20px;
}

#btnCadastrar:active {
    transform: scale(0.9);
}

.flex {
    flex-direction: column;
    display: flex;
    align-items: end;
}

/* burguer */

.burguer {
    display: none;
}

.burguer div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    border-radius: 10px;
}

/* media */

.nav-active {
    transform: translateX(0%) !important; 
} 

.row1 {
    background: hsl(0deg 2% 9% / 90%);
    backdrop-filter: blur(0.2rem);
}

@media screen and (max-width: 768px) {
    @supports (backdrop-filter: blur(0.5rem)) {
        .nav-links {
            background: hsl(0deg 2% 9% / 90%);
            backdrop-filter: blur(0.2rem);
        } 
    }
    .nav-links {
        position: absolute;
        right: 0px;
        height: 90vh;
        top: 10vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;    
        width: 60%;
        transform: translateX(100%);
        transition: 0.5s ease-in;
        gap: 0px;
    }
    .row1 {
        align-items: center;
        padding: 0 20px;
        justify-content: space-between;
    }
    .row2 {
        height: 0vh;
    } 
    nav li {
        float: none;
        margin: 0;
    }
    .burguer {
        display: block;
    }
    .header-logo {
        text-align: start;
    }
    nav a {
        font-size: 16px;
    }
}

@media screen and (max-width: 1000px) {
    .footer {
        display: block;
    }
    hr {
        width: 100%;
    }
    .contact-form {
        padding-bottom: 40px;
    }
}