.banner-setores-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 0;
}


/* Ajuste da logo no menu */
.nav-logo img {
    height: 48px;        /* tamanho ideal */
    width: auto;
    object-fit: contain;
}

@media (max-width: 600px) {
    .nav-logo img {
        height: 38px;    /* menor no celular para não quebrar */
    }
}


/* ================================
   NAVBAR
================================ */

.navbar {
    width: 100%;
    background: #ffffffcc;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.nav-container {
    max-width: 1250px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* LINKS DESKTOP */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0a7a4f;
}

/* MENU MOBILE */
.nav-mobile-menu {
    font-size: 30px;
    cursor: pointer;
    display: none;
}

/* DROPDOWN MOBILE */
.nav-mobile-links {
    display: none;
    flex-direction: column;
    background: white;
    border-bottom: 1px solid #ddd;
}

.nav-mobile-links a {
    padding: 12px 18px;
    text-decoration: none;
    color: #333;
    border-top: 1px solid #eee;
}

.nav-mobile-links a:hover {
    background: #f2f2f2;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .nav-links {
        display: none;
    }

    .nav-mobile-menu {
        display: block;
    }

    .nav-logo img {
        height: 38px !important;
    }
}



/* ========================================
   CONFIGURAÇÃO GERAL DA PÁGINA
======================================== */
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", "Segoe UI", sans-serif;
    color: #222;
    background-size: cover;
    background-attachment: fixed;
}

/* Espaçamento entre blocos */
.setor-bloco {
    padding: 60px 20px;
    max-width: 1250px;
    margin: 0 auto 50px auto;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(200, 200, 200, 0.5);
}

/* ========================================
   TÍTULOS E DESCRIÇÕES
======================================== */
.setor-titulo {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
    color: #0a7a4f;
}

.setor-descricao {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #444;
}

/* ========================================
   GRID DOS CARDS
======================================== */
.setor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* ========================================
   CARDS
======================================== */
.setor-card {
    background: #ffffffd8;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
}

/* Título do card */
.setor-card h3 {
    font-size: 20px;
    color: #0a7a4f;
    margin-bottom: 12px;
}

/* Listas internas */
.setor-card ul {
    margin: 0;
    padding-left: 20px;
}

.setor-card li {
    margin-bottom: 6px;
    font-size: 16px;
}

/* Hover futurista elegante */
.setor-card:hover {
    border-color: #00c483;
    box-shadow: 0px 4px 16px rgba(0, 180, 120, 0.25);
    transform: translateY(-4px);
}



/* ========================================
   SESSÃO FINAL — NÃO ENCONTROU O QUE PROCURA?
======================================== */
.destaque-final {
    background: rgba(245, 245, 245, 0.9);
    padding: 60px 30px;
    border-radius: 14px;
    border: 1px solid #e0e0e0;
    max-width: 1150px;
    margin: 80px auto;
}

.destaque-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #d9d9d9;
    margin-top: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.destaque-card h3 {
    font-size: 22px;
    color: #0a7a4f;
}

.destaque-card ul {
    margin: 15px 0 10px 20px;
}

.btn-whatsapp-final {
    display: inline-block;
    margin-top: 25px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 14px 28px;
    background: #25D366;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-whatsapp-final:hover {
    background: #1dbf59;
}



/* ========================================
   ENCERRAMENTO
======================================== */
.encerramento {
    text-align: center;
    padding: 50px 20px 80px;
}

.encerramento h2 {
    font-size: 32px;
    color: #0a7a4f;
}

.encerramento p {
    font-size: 18px;
    max-width: 850px;
    margin: 8px auto;
}

.btn-cta {
    display: inline-block;
    padding: 14px 38px;
    margin-top: 25px;
    background: #00a86b;
    border-radius: 10px;
    font-size: 20px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: 0.25s;
}

.btn-cta:hover {
    background: #008f5a;
}



/* ========================================
   RESPONSIVIDADE
======================================== */
@media (max-width: 700px) {
    .setor-titulo {
        font-size: 26px;
    }

    .setor-descricao {
        font-size: 16px;
    }

    .setor-card {
        padding: 20px;
    }

    .setor-card h3 {
        font-size: 18px;
    }
}


/* ================================
   RODAPÉ XGENS
================================ */
.xgens-footer {
    background: #f7f7f7ee;
    backdrop-filter: blur(6px);
    padding: 50px 20px 0 20px;
    border-top: 1px solid #ddd;
    margin-top: 60px;
}

.footer-container {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* COLUNAS */
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #0a7a4f;
    font-weight: 700;
}

.footer-col a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 16px;
    color: #444;
    transition: 0.2s;
}

.footer-col a:hover {
    color: #0a7a4f;
}

/* LOGO */
.footer-logo img {
    height: 55px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 16px;
    color: #333;
}

/* WHATSAPP */
.footer-whatsapp {
    display: inline-block;
    padding: 10px 18px;
    background: #25D366;
    color: white !important;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 8px;
    text-decoration: none;
    transition: 0.2s;
}

.footer-whatsapp:hover {
    background: #1eb257;
}

/* EMAIL */
.footer-email {
    margin-top: 12px;
    font-size: 15px;
    color: #444;
}

/* RODAPÉ INFERIOR */
.footer-bottom {
    margin-top: 40px;
    padding: 18px 10px;
    text-align: center;
    font-size: 15px;
    color: #666;
    background: #eee;
    border-top: 1px solid #ddd;
}

/* MOBILE */
@media (max-width: 600px) {
    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col a {
        font-size: 15px;
    }

    .footer-logo img {
        height: 45px;
    }
}

