@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Merriweather:wght@300;400;700&display=swap');


:root{
    --primary-color: #ffffff;
    --white-color: #e7e0e0;
    --light-gray-color: #111111; 
    --secundery-color: rgb(252, 252, 252);
} /* variaveis*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} /* global */ 

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
} /* Html */

body{
    font-family: "Lato", sans-serif; 
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.5;
} /* body */

h1, h2, h3, h4, h5{
    font-family: "Lato", sans-serif;
    color: #ffffff;
}

h1{
    font-family: "Merriweather", serif;
}

.section{
    margin-bottom: 1%;
    min-height: 108vh;
}

.main-bg {
    background-size: cover;
    background-image: url(../assets/imgs/banner2.png);
    height: 1vh;
    background-position: center bottom; /* Aparecer o not&aurora*/
    background-repeat: no-repeat;
}

.menu img{
    padding: 0.5rem 5rem;
    width: 20rem;
}

.menu-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem; 
    position: fixed;
    background: linear-gradient(335deg, rgba(2, 71, 78, 1) 0%, rgba(102, 48, 35, 1) 90%);
    top: 0;
    width: 100vw;
    z-index: 3;
}

.menu-spacing{
    height: 20rem;
}

.menu ul {
    list-style: none;
    display: flex;
}
/* efeito de botão em entre em contato*/


.menu ul li a {
    display: block;
    padding: 2rem 1rem;
    font-size: 2rem;  
    position: relative;
    color: var(--primary-color);
}

.menu ul li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 1.3rem;
    height: 0.2rem ;
    width: 0;
    background: var(--secundery-color);
    transition: all 300ms ease-in-out;
}

.menu ul li a:hover::after{
    width: 53%;
    left: 25%;
}

a {
    text-decoration: none;
}

#h1_start {
    font-size: 4rem;
}

.start {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    padding: 10rem 2rem;
    line-height: 5rem;
}

.start h1, h3 {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
}

.start hr {
    margin-top: 2rem;
    width: 60%;
    margin-left: 20%;
    margin-bottom: 2rem;

}

#a_start {
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

#a_start a{
    border: 0.1rem solid white;
    padding: 1.2rem;
    font-size: 2rem;    
    text-decoration: none;
    color: white;
    border-radius: 1rem;
}

#a_start a:hover {
    background-color: whitesmoke;
    color: black;
    transition: all 300ms linear;
}

.inicie:hover {
    border: solid 0.2rem white;
    border-radius: 5%;
    transition: 100ms ease-in-out;
    font-weight: bold;
}
