.sucursales-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.sucursales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    justify-content: center;
    gap: 20px;
    padding: 20px;
}



/* Carta principal */
.card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background-color: #f9fafb;
    padding: 1rem;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.card-button {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.card-button:hover {
    background: #2563eb;
}