/* ========================================= */
/* ===== ESTILOS DE UBICACIONES (DARK) ===== */
/* ========================================= */

.ubicaciones-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.ubicacion-card {
    background-color: #1E1E1E; /* Gris oscuro */
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px 30px;
    width: 100%;
    max-width: 500px; /* Ancho máximo para que no se estiren demasiado */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ubicacion-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.ubicacion-icon {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 25px;
}

.ubicacion-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    width: 100%;
}

.ubicacion-details {
    text-align: left;
    width: 100%;
    margin-bottom: 30px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

.address-title {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Botón de Mapa */
.btn-map {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 12px 25px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: auto; /* Empuja el botón al final si las tarjetas tienen diferente altura */
}

.btn-map:hover {
    background-color: #FFD700;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.btn-map i {
    margin-right: 8px;
    color: inherit !important; /* Hereda el color del botón */
}