/* Estilos para la página de Ubicación */

.ubicacion-hero {
    background-color: #FAFAFA; /* Un tono crema suave */
    color: #1C1C1C;
    padding: 90px 0;
    text-align: center;
    margin-bottom: 0;
}
.ubicacion-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.main-flex {
    display: flex;
    gap: 40px;
    padding: 50px 0;
}

/* Columna Izquierda */
.ubicacion-container {
    background: #FAFAFA;
}
.info-llegar {
    flex: 1;
}

.info-card {
    background: #F3E5AB;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    text-align: center;
}

.icon-gold {
    color: #D4AF37; /* El naranja/dorado de tu marca */
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.instrucciones h3, .horarios h3 {
    color: #1C1C1C;
    margin-bottom: 20px;
    border-bottom: 2px solid #D4AF37;
    display: inline-block;
    padding-bottom: 5px;
}

.paso {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.numero {
    background: #D4AF37;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Columna Derecha - Mapa */
.mapa-section {
    flex: 1.5;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 75%; /* Relación de aspecto para el mapa */
    position: relative;
    height: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 5px solid #F3E5AB;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Responsivo */
@media (max-width: 768px) {
    .main-flex {
        flex-direction: column;
    }
    
    .map-responsive {
        padding-bottom: 100%; /* Más cuadrado en móviles */
    }
}