/* ======== SUCURSALES ======== */
#sucursales {
    background: #e2e8f0;
    padding: 40px 20px;
    text-align: center;
}

.sucursal-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.sucursal-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 220px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.sucursal-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.sucursal-info {
    padding: 10px;
}

.sucursal-info a {
    color: #ff8c42;
    text-decoration: none;
    font-weight: bold;
}