/* Estilo para o menu mobile */
#mobile-menu {
    transition: all 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu:not(.hidden) {
    max-height: 1000px;
}

/* Estilo para o botão de toggle do submenu */
#mobile-exp-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Estilo para a seta do submenu */
#mobile-exp-toggle svg {
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
    width: 1rem;
    height: 1rem;
}

/* Estilo para o submenu de experiências */
#mobile-exp-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding-left: 1rem;
}

#mobile-exp-submenu:not(.hidden) {
    max-height: 500px;
}
