#lista-comercios {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.comercio-card {
    width: 100%;
    max-width: 1200px;
    background: #134da3;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    overflow-wrap: break-word;
    transition: all 0.3s ease-in-out;
    color: white;
}

.comercio-card.promocion {
    background: #ffff00;
    border: 6px solid red;
    color: #134da3;
}

.comercio-nombre {
    font-size: 1.1rem;
    font-weight: bold;
}

.comercio-nombre a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.comercio-nombre a:hover {
    color: #ffff00;
    transform: scale(1.10);
}

.comercio-distancia,
.comercio-direccion {
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

.promo-enlace {
    display: inline-block;
    margin-top: 0.5rem;
    color: red;
    font-weight: bold;
    text-decoration: none;
}

.promo-enlace-grande {
    font-size: 2rem;
    color: red;
    font-weight: bold;
    margin-top: 1rem;
    display: block;
}

@media (max-width: 480px) {
    .comercio-card {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
}
