/* Menú para móvil */
#dropdownMenuMobile {
    position: fixed;
    left: -80%;
    top: 0;
    background-color: rgb(255 255 255);
    z-index: 9999999;
    width: 80%;
    height: 100%;
    opacity: 0;
    transition: left 0.5s ease, opacity 0.5s ease;
}

#dropdownMenuMobile img {
    width: 40%;
    margin: 50px 30% 0px 30%;
    text-align: center;
}

#dropdownMenuMobile.visible {
    left: 0;
    opacity: 1;
}

/* Estilos compartidos */
#dropdownMenuMobile ul {
    list-style-type: none;
    padding: 20px;
    margin: 0 auto;
}

#dropdownMenuMobile li {
    padding: 10px;
    width: 100%;
}

#dropdownMenuMobile li a {
    text-decoration: none;
    color: #993787;
    border: 1px solid #993787;
    padding: 10px 5px;
    border-radius: 5px;
    display: block;
    text-align: center;
    transition: background-color 0.3s ease;
    width: 100%;
}

#dropdownMenuMobile li a:hover {
    background-color: #993787;
    color: #ffffff;
}

.menu-btn {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    float: right;
}

.menu-btn__burger {
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.menu-btn__burger::before,
.menu-btn__burger::after {
    content: '';
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    border-radius: 5px;
    position: absolute;
    transition: all 0.3s ease;
}

.menu-btn__burger::before {
    top: -10px;
}

.menu-btn__burger::after {
    top: 10px;
}

.menu-btn.open .menu-btn__burger {
    transform: translateY(-50%) rotate(45deg);
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(90deg);
    top: 0;
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(90deg);
    top: 0;
}