/* Style Datos Barrio */
.recuadro-barrio-nuevo {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* 1px difuminado */
    border-radius: 8px;
    padding: 40px;
    transition: border 0.3s ease;
    margin-bottom: 40px;
    width: 100%;
    /* Ocupa todo el ancho del contenedor */
}

.recuadro-barrio-nuevo:hover {
    border: 1px solid #000080;
    /* Azul marino al pasar el mouse */
}

.titulo-barrio-centrado {
    font-family: sans-serif;
    font-size: 2.5rem;
    /* Un poco más pequeño que el anterior */
    font-weight: 700;
    color: #333;
    margin-bottom: 35px;
    text-align: center;
    /* Centrado */
}

.dato-item-qq {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
    /* Texto justificado */
}

.sub-titulo-azul {
    color: #000080;
    font-weight: 700;
    margin-right: 5px;
    display: inline;
    /* Para que el texto informativo siga en la misma línea */
}

.texto-info-suave {
    font-weight: 500;
    /* Negrita suave */
    color: #444;
}

.link-ordenanza-dato {
    color: #000080;
    text-decoration: none;
    font-weight: 600;
}

.link-ordenanza-dato:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .titulo-barrio-centrado {
        font-size: 2rem;
    }

    .recuadro-barrio-nuevo {
        padding: 20px;
    }
}