/* Forzar bordes rectos en la tarjeta */
.card-container {
    border-radius: 0 !important;
}

/* Enlace de ubicación */
.map-link {
    color: #444;
    text-decoration: none;
    border-bottom: 1px dashed var(--principal);
    transition: all 0.3s;
}

.map-link:hover {
    color: var(--principal);
    border-bottom-style: solid;
}

/* Estilo para botones */
.btn-sm {
    border-radius: 4px;
    font-weight: 600;
}

/* Evitar scroll horizontal */
body {
    overflow-x: hidden;
}