*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Noto Sans", sans-serif;
    transition: 0.2s linear;
}
:root{
    --corPrincipal:#000;
    --corSecundaria:#6e621a;
    --corText:#fff;
}
.container{
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 30px;
}
body{
    background-color:var(--corPrincipal);
}
i {
    color: var(--corSecundaria);
    
}
header{
    background-color:var(--corPrincipal) ; 
    padding: 10px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
}
header h1{
    margin-right: 20px;
    font-weight: bold;
    font-size: 30px;
    color: var(--corSecundaria);
}
.links{
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
}

header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;

    h1{
        color: var(--corSecundaria);
    }

}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('./imagens/imagem-hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;

}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Cor preta semi-transparente */
    
}

.descricao {
    position: relative;
    z-index: 2; /* Coloca o texto acima do overlay */
    color: white;
    text-align: center;
    max-width: 500px;
    margin-left: 50%; 
}

.botao {
    height: 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.nav-links a{
    font-size: 20px;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
    margin: 5px;
    
}
.nav-links a:hover{
    border-bottom: 1px solid #fff;
    font-size: 25px;
}


.descricao h2{
    font-size: 55px;
    color: var(--corText);
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 10px;
    margin-top: 40px;
}
.descricao p{
    color: var(--corText);
}

.box-geral{
    display: flex;   
}
.incone {
    color: var(--corText);
    font-size: 25px;
    cursor: pointer;
    margin-right: 20px;
   
}
#sobre {
    margin-bottom: 50px;
}



.box-img img{
    width: 300px;
    height: 400;
    object-fit: cover;
    border-radius: 5px;
    margin-top: 55px;
}
.box-desc{
    width: 700px;
    height: 400px;
    color: white;
    margin-left: 32%;
}
.box-desc h3{
    font-size: 35px;
    text-transform: capitalize;
    margin-bottom: 20px;
    
}
.box-desc h4{
    font-size: 30px;
    text-transform: capitalize;
}
.box-desc p{
    font-size: 20px;
    margin-top: 10px;
    color: var(--corSecundaria);
}
.box-secundario{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.box-secundario img{
    width: 350px;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
    margin-top: 20px;
    border-radius: 10px;
    border: 3px solid var(--corText);
}

.box-secundario-desc{
    color: var(--corText);
    font-size: 35px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 30px;   
}
#serviços h3 {
    color: var(--corText);
    font-size: 18px;
}

#serviços p {
    color: var(--corSecundaria);
    
}
#serviços {
    background-color: var(--corSecundaria);
    margin-top: 40px;
    margin-bottom: 40px;
}
#serviços i {
    color: var(--corText);
}
.resposta {
    color: var(--corSecundaria);
    color: var(--corText);
}
#perguntas {
    background-color: var(--corSecundaria);
    margin-top: 40px;
    margin-bottom: 40px;
}
#perguntas h2{
    margin-top: 30px;
}
#perguntas p {
    margin-bottom: 40px;
}
.bg-btn {
    background-color: var(--corSecundaria);
    color: var(--corText);
}





.botao{
    background-color: var(--corPrincipal);
    color: var(--corSecundaria);
    border: none;
    outline: none;
    height: 40px;
    width: 100%;
    font-weight: bold;
    border-radius: 5px;
    font-size: 20px;   
}
.botao:hover{
    font-size: 24px;
}
.cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
#produtos h2 {
   color: var(--corText);
   margin-bottom: 40px;
   text-align: center;
    
    
}

footer {
    background-color: var(--corButao);
    text-align: center;
    padding: 20px ;
    color: var(--corText);
    margin-top: 40px;
}

@media (max-width:768px){
    
    .container{
        max-width: 90%;
        padding: 5px;
    }
    header h1{
    font-weight: bold;
    font-size: 20px;
    color: var(--corSecundaria);
    
}
   
    .descricao{
        max-width: 90%;
        margin: auto;
    }
    .descricao h2{
        font-size: 35px;
        color: var(--corText);
        font-weight: bold;
        text-transform: capitalize;
        margin-bottom: 10px;
    }
    .box-geral{
        display: flex; 
        flex-direction: column; 
        margin: auto; 
       
    }
    .box-img{
        display: grid;
        grid-template-columns: 1fr ;
        max-width: 100;
        margin-bottom: 20px;
        
    }
    .box-img img{
        width: 320px;
        border-radius: 5px;
       
        
    }
    .box-desc{
        color: white;
        width: 90%;
        margin: auto;
        margin-bottom: 20px;
    }
    .box-desc h3{
        font-size: 30px;
        text-transform: capitalize;
        margin-bottom: 20px;
        
    }
    .box-desc h4{
        font-size: 25px;
        text-transform: capitalize;
    }
    .box-desc p{
        font-size: 15px;
        margin-top: 10px;
    }
    .hero{
        margin-bottom: 20px;
    }
    .box-secundario{
        display: grid;
        grid-template-columns: 1fr ;
    
    }
    .box-secundario img{
        width: 320px;
        height: 300px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    #serviços .botao {
        background-color: var(--corText);
        width: 300px;
        margin-top: 10px;
        
    }
}