body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #f5f5f5;
}

.container.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.cinta-container {
    background-color: #d3d3d3;
    padding: 15px 0 25px 0;
    /* más aire arriba y abajo */
    overflow: hidden;
    height: auto;
    /* dejá que se adapte al contenido */
    display: flex;
    align-items: center;
}

.cinta-barrios {
    display: flex;
    flex-wrap: nowrap;
    /* fuerza que todo quede en una sola fila */
    gap: 20px;
    padding: 0 20px;
    /* aire simétrico izquierda y derecha */
    transition: transform 0.3s ease;
    overflow-x: auto;
    /* scroll horizontal visible */
    overflow-y: hidden;
    scroll-behavior: smooth;
}

.barrio-card {
    text-align: center;
    border: 3px solid white;
    padding: 5px;
    margin-bottom: 10px;
    /* agrega espacio debajo de cada card */
    transition: border 0.3s ease, transform 0.3s ease;
    background-color: #d3d3d3;
}

.barrio-card img:hover {
    border: 5px solid #004d00;
    /* borde verde oscuro al pasar el mouse */
    transform: scale(1.08);
}

.barrio-card img {
    width: 180px;
    height: auto;
    max-height: 5cm;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    background-color: #d3d3d3;
    padding: 5px;
    border: 3px solid white;
    /* borde inicial en la imagen */
    transition: border 0.3s ease, transform 0.3s ease;
}

.barrio-nombre {
    display: block;
    margin-top: 5px;
    color: #0033cc;
    font-weight: 600;
    /* negrita suave */
    text-decoration: none;
}

.barrio-card a {
    text-decoration: none;
}

.barrio-card a:hover .barrio-nombre {
    font-weight: 700;
    /* más fuerte al pasar el mouse */
    text-decoration: underline;
    text-decoration-color: #004d00;
}

/* Responsive para móvil */
@media (max-width: 600px) {
    .cinta-container {
        height: auto;
    }

    .cinta-barrios {
        padding: 0 15px;
        /* aire simétrico también en móvil */
    }

    .barrio-card img {
        width: 110px;
        max-height: 3.5cm;
    }

    .barrio-nombre {
        font-size: 0.85em;
    }
}

/*----AGREGUE A LAS 14:43 HS-*/
.cinta-container {
    margin-bottom: 40px;
    /* o el valor que te dé aire */
}

