/* ============================================
   MAPA DE GOOGLE
   ============================================ */
#ubicacion {
    padding: 3rem 0;
    background-color: #f8f9fe;
}

#ubicacion .mapa-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#ubicacion .mapa-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#ubicacion .mapa-info {
    text-align: center;
    margin-top: 1.5rem;
}

#ubicacion .mapa-info p {
    font-size: 0.9rem;
    color: #4b5563;
}

#ubicacion .mapa-info i {
    color: var(--menu-color);
    margin-right: 8px;
}

#ubicacion .mapa-info a {
    color: var(--menu-color);
    text-decoration: none;
}

#ubicacion .mapa-info a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    #ubicacion {
        padding: 2rem 0;
    }
}