/* ============================================================
   ESTILOS ESPECÍFICOS PARA PÁGINAS DE BAIRRO
   ============================================================ */

.secao-bairro-conteudo { padding: 80px 0; background: #ffffff; }

.grid-servicos-local {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.box-local-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: #ffffff;
    border: 1px solid #eee;
    border-left: 6px solid #25d366;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.box-local-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #f9f9f9;
}

.box-local-item i {
    font-size: 1.2rem;
    color: #25d366;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.box-local-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #222;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.texto-fluido-seo h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #1a1a1a;
    font-size: 1.9rem;
    margin: 45px 0 15px;
}

.texto-fluido-seo p {
    color: #444;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Tag amarela estilo badge */
.badge-bairro {
    background: #e8fcf0;
    color: #25d366;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    border: 1px solid #25d366;
    display: inline-block;
    margin-bottom: 20px;
}

/* ============================================================
   ESTILOS PARA A GRADE DE BAIRROS (USADA NO INDEX.HTML)
   ============================================================ */

.regioes-grid-autoridade {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: stretch;
}

.regiao-card-autoridade {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
    border: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-header-verde {
    background-color: #25d366; 
    padding: 15px;
    text-align: center;
}

.card-header-verde h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: 0.95rem;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card-body-bairros {
    padding: 10px 15px;
    text-align: center;
    flex-grow: 1;
}

.card-body-bairros ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-body-bairros ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
}

.card-body-bairros ul li.no-border {
    border-bottom: none;
}

.card-body-bairros ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #f7b500;
    font-size: 0.8rem;
    margin-right: 8px;
}

.card-body-bairros ul li a {
    color: #25d366 !important;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.2s;
    display: inline;
}

.card-body-bairros ul li a:hover {
    color: #000 !important;
    text-decoration: underline !important;
}

.regiao-card-autoridade:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: #25d366;
}

@media (max-width: 1100px) {
    .regioes-grid-autoridade {
        display: flex;
        overflow-x: auto;
        padding-bottom: 20px;
        gap: 20px;
    }
    .regiao-card-autoridade {
        min-width: 275px;
    }
}