
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; background: #fff; color: #111827; }
.container { max-width: 1200px; margin: auto; padding: 20px; }

header { background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 999; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; }
.logo-img {
    width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
}
nav a { margin-left: 20px; text-decoration: none; color: #111; font-weight: 500; }
.btn-contato { background: #10b981; color: white; padding: 8px 16px; border-radius: 6px; }

.hero { background: linear-gradient(to right, #f0f9ff, #ecfeff); padding: 80px 20px;  position: relative;
    background-image: url('../images/home-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: white;}
    .hero::before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.5); /* escurece a imagem */
        z-index: 0;
    }
    
    .hero > .container {
        position: relative;
        z-index: 1;
    }
.hero-flex { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.hero-texto { flex: 1 1 50%; }
.hero-texto h2 { font-size: 2.5rem; margin: 10px 0; }
.hero-texto .azul { color: #3b82f6; }
.hero-img { flex: 1 1 40%; text-align: center; }
.hero-img img { width: 100%; max-width: 400px; border-radius: 10px; }
.chamada { color: #3b82f6; font-weight: 600; }
.botoes { margin-top: 20px; }
.btn-primario, .btn-secundario {
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}
.btn-primario { background: #3b82f6; color: white; margin-right: 10px; }
.btn-secundario { border: 2px solid #3b82f6; color: #3b82f6; }

.numeros { background: #e0f2fe; padding: 40px 0; text-align: center; }
.numeros-flex { display: flex; justify-content: space-around; flex-wrap: wrap; }
.numeros-flex div { margin: 10px 20px; }
.numeros-flex strong { display: block; font-size: 2rem; color: #1e40af; }

.bloco { padding: 60px 20px; }
.titulo-secao { font-size: 2rem; margin-bottom: 10px; text-align: center; }
.descricao-secao { text-align: center; margin-bottom: 40px; }
.cards { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 20px;
    flex: 1 1 250px;
    max-width: 300px;
}
.orcamento-box {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}
.orcamento-box .box {
    max-width: 600px;
    margin: auto;
}
.btn-whats {
    display: inline-block;
    margin: 20px 0;
    background: #22c55e;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}
.botoes-secundarios .btn-sec {
    display: inline-block;
    margin: 10px;
    padding: 10px 18px;
    border: 2px solid #3b82f6;
    border-radius: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}
.sobre-flex { display: flex; justify-content: space-between; flex-wrap: wrap; }
.sobre-txt { flex: 1 1 100%; }
.sobre-txt ul { margin-top: 20px; list-style: none; padding-left: 0; }
.sobre-txt li::before { content: "✔️ "; color: #10b981; }


.orcamento-box {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}
.orcamento-box .box {
    max-width: 600px;
    margin: auto;
}
.btn-whats {
    display: inline-block;
    margin: 20px 0;
    background: #22c55e;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}
.botoes-secundarios .btn-sec {
    display: inline-block;
    margin: 10px;
    padding: 10px 18px;
    border: 2px solid #3b82f6;
    border-radius: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.footer {
    background: #0f172a;
    color: white;
    padding: 60px 20px 20px;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
.footer-grid div {
    flex: 1 1 200px;
}
.footer-grid h4 {
    margin-bottom: 10px;
}
.footer-grid ul {
    list-style: none;
    padding: 0;
}
.footer-grid ul li {
    margin-bottom: 6px;
}
.btn-whats-footer {
    display: inline-block;
    margin-top: 10px;
    background: #22c55e;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}
.footer-bottom {
    border-top: 1px solid #334155;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.875rem;
}
.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
    margin-left: 10px;
}

.icon-card {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 12px;
  }

  
