.boston-cafes-destacados {
    background: linear-gradient(135deg, #D4B59E, #A67B5B);
    padding: 1rem 0.5rem;
    border-radius: 1rem;
    max-width: 700px;
    margin: 1.2rem auto;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 4px 12px rgba(44, 42, 40, 0.1);
    border: 2px solid #A67B5B;
    overflow: hidden;
}

.boston-cafes-destacados__titulo {
    text-align: center;
    color: #C62828;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* MOBILE: scroll horizontal */
.boston-cafes-destacados__contenedor {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem;
    scroll-snap-type: x mandatory;
}
.boston-cafes-destacados__contenedor::-webkit-scrollbar {
    display: none;
}

.boston-cafes-destacados__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 0.7rem;
    border: 1.5px solid #A67B5B;
    padding: 0.6rem;
    text-align: center;
    text-decoration: none !important;
    color: #2E2A28;
    width: 220px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.boston-cafes-destacados__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 42, 40, 0.1);
}

.boston-cafes-destacados__imagenes {
    display: flex;
    justify-content: center;
    margin-bottom: 0.6rem;
}
.boston-cafes-destacados__imagen {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 0.5rem;
}

.boston-cafes-destacados__nombre {
    font-size: 0.95rem;
    font-weight: 600;
    color: #C62828;
    margin: 0.3rem 0 0;
}

.boston-cafes-destacados__descripcion {
    font-size: 0.8rem;
    color: #4E342E;
    margin-top: 0.3rem;
    line-height: 1.2;
}

.boston-cafes-destacados__botones {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.boston-cafes-destacados__botones a {
    background: linear-gradient(135deg, #A67B5B, #815C48); /* degradé marrón tostado */
    color: #fff;
    border-radius: 999px; /* bien redondos */
    padding: 0.55em 1.4em;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(44, 42, 40, 0.12);
    transition: background 0.3s ease, transform 0.3s ease;
    display: inline-block;
    line-height: 1.2;
    text-align: center;
}

.boston-cafes-destacados__botones a:hover {
    background: linear-gradient(135deg, #815C48, #6A4B3A); /* más profundo al pasar el mouse */
    transform: translateY(-2px);
}

/* DESKTOP: 3 columnas prolijas */
@media screen and (min-width: 769px) {
    .boston-cafes-destacados__contenedor {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        overflow: visible;
        padding: 0 1rem 1rem;
    }

    .boston-cafes-destacados__item {
        width: 100%;
        flex: unset;
        align-self: start;
    }
}