/* RESET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, sans-serif;
    color: #222;
    padding-top: 80px;
}
/* HERO */
.hero{
    height: 85vh;
    background:
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('../imagens/banner.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
}

.hero h1{
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p{
    margin-bottom: 25px;
}

.btn{
    background: #c4000c;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
}

/* SECTIONS */
.section{
    padding: 80px 10%;
    text-align: center;
}

.section h2{
    color: #c4000c;
    margin-bottom: 20px;
}

/* CARDS (Produtos) */
.cards{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.card{
    width: 260px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* FOOTER */
footer{
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

/* SEÇÃO ORÇAMENTO */
#orcamento{
    background: #f5f5f5;
    padding: 80px 10%;
    text-align: center;
}

#orcamento h2{
    margin-bottom: 20px;
    line-height: 1.3;
}

#orcamento p{
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
#orcamento .btn{
    margin-top: 10px;
}

header.header{
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}
header.header nav{
    display: flex !important;
    gap:30px;

}
header.header nav a{
    display: inline-block !important;

}
