/* Sección de Ubicación */
.location-section {
    background-color: #f5f9fc;
    padding: 3rem 1rem;
    border-top: 1px solid #e1e8ed;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.location-info {
    flex: 1;
    min-width: 300px;
}

.location-info h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.location-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0484cb;
}

.location-info p {
    margin-bottom: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.location-info i {
    color: #0484cb;
    width: 20px;
    text-align: center;
}

.map-container {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
    }
    
    .map-container {
        height: 300px;
    }
    
    .location-info h2 {
        font-size: 1.5rem;
    }
}