.cinta {
    background-color: #f0f0f0;
    padding: 20px;
    margin: 20px auto;
    border-radius: 6px;
    max-width: 1000px;
    width: 95%;
}

.cinta-subtitulo {
    font-size: 1.2em;
    font-weight: bold;
    color: #001F3F;
    text-align: center;
    margin: 0 0 15px 0;
}

.cinta-contenedor-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.cinta-contenedor-scroll::-webkit-scrollbar {
    height: 8px;
}

.cinta-contenedor-scroll::-webkit-scrollbar-thumb {
    background: #001F3F;
    border-radius: 4px;
}

.cinta-item {
    flex: 0 0 auto;
    text-align: center;
}

.cinta-item a {
    display: block;
    text-decoration: none;
    color: #001F3F;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95em;
    margin-top: 8px;
}

.cinta-item a:hover {
    text-decoration: underline;
    color: blue;
}

.cinta-item img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border: 2px solid #001F3F;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.cinta-item img:hover {
    transform: scale(1.05);
}

/* ===== ESPACIADO ENTRE BLOQUES ===== Esta regla controla la separación vertical entre la cinta de Plazas y la de Plazoletas respecto al bloque anterior. Actualmente está configurado en 0.5cm (medio centímetro). */
.plazas,
.plazoletas {
    margin-top: 0.5cm;
    /* separación de medio centímetro entre cintas */
}