/* ============================
   RESET E BASE
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    line-height: 1.6;
    color: #333;
}

/* ============================
   MENU BRANCO (GEMINE)
============================ */
.menu-fixo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #002266;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.menu-fixo img {
    height: 60px;
    width: auto;
}

.menu-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

.menu-links a:hover {
    color: orange;
}

.btn-wpp {
    background-color: #25d366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
}

.hamburguer {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}

@media (max-width: 992px) {
    .hamburguer {
        display: block;
    }

    .menu-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: blue;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 0;
    }

    .menu-links.show {
        display: flex;
    }

    .menu-links a {
        width: 100%;
        text-align: center;
        padding: 18px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .btn-wpp {
        width: 90% !important;
        margin: 10px auto;
    }
}

/* ============================
   AJUSTE PARA PÁGINAS INTERNAS
============================ */
body.pagina-interna {
    padding-top: 110px !important; /* compensar menu branco */
}

/* ============================
   HERO DAS PÁGINAS INTERNAS
============================ */
.hero-servico,
.hero-eletrica,
.hero-montagens,
.hero-reparacoes,
.hero-pichelaria,
.hero-seguranca {
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 70px 0 70px 0;
}

/* ============================
   FUNDOS ESPECÍFICOS
============================ */
.hero-eletrica {
    background-image: url("eletrica.png");
    padding: 150px 0 90px 0 !important;
}

.hero-pichelaria {
    background-image: url("pichelaria.png");
}

.hero-reparacoes {
    background-image: url("reparacoes.png");
}

.hero-montagens {
    background-image: url("moveis.png");
}

.hero-seguranca {
    background-image: url("seguranca.png");
}

.hero-home {
    background-image: url("plano.png");
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 70px 0 70px 0;
}

/* CAIXA DO HERO */
.hero-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.78);
    padding: 12px 22px;
    border-radius: 10px;
}

/* ============================
   GRID DE SERVIÇOS
============================ */
#servicos {
    background: #ecf0f1;
    padding: 60px 0;
}

.servicos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 20px;
}

@media (max-width: 900px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   FOOTER
============================ */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 50px;
}
/* ============================
   BOTÕES SABER MAIS (LAYOUT PREMIUM)
============================ */
.btn-saber-mais {
    display: inline-block;
    background: #002266;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
    margin-top: 15px;
}

.btn-saber-mais:hover {
    background: #ff9900;
    color: white;
}
/* ============================
   BOTÕES SABER MAIS (btn-servico)
============================ */
.btn-servico {
    display: inline-block;
    background: #002266; /* azul premium */
    color: white !important;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
    margin-top: 15px;
}

.btn-servico:hover {
    background: #ff9900; /* laranja premium */
    color: white !important;
}
/* ============================
   CARDS DE SERVIÇOS (CAIXA BRANCA)
============================ */
.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.card h3 {
    margin-bottom: 10px;
    color: #002266;
    font-size: 1.2rem;
}

.card p {
    margin-bottom: 15px;
    color: #444;
}
/* ============================
   TÍTULO DAS SEÇÕES
============================ */
.titulo-sec {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #002266;
    margin-bottom: 40px;
}
