/* ===== NOVO MENU MOBILE FUNCIONAL ===== */

/* Botão Hambúrguer */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    position: relative;
    z-index: 10001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #662c8e;
    margin: 2px 0;
    transition: 0.3s;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Lateral */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 10000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-sidebar.active {
    left: 0;
}

/* Header do Menu */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
}

.mobile-header .logo {
    height: 40px;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #662c8e;
    cursor: pointer;
    padding: 5px;
}

/* Lista de Navegação */
.mobile-navigation {
    padding: 0;
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-navigation li {
    border-bottom: 1px solid #eee;
}

.mobile-navigation a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
}

.mobile-navigation a:hover {
    background: #f0f0f0;
    color: #662c8e;
}

/* Dropdown no Mobile */
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.mobile-dropdown-toggle:hover {
    background: #f0f0f0;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s;
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f8f8;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu-section {
    padding: 10px 0;
}

.mobile-submenu-section h4 {
    padding: 10px 30px 5px;
    margin: 0;
    font-size: 12px;
    color: #EC268F;
    text-transform: uppercase;
    font-weight: bold;
    background: #f0f0f0;
}

.mobile-submenu a {
    display: block;
    padding: 8px 40px;
    color: #666;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.mobile-submenu a:hover {
    background: #e0e0e0;
    color: #662c8e;
    border-left-color: #EC268F;
}

/* Responsivo */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Esconder nav desktop */
    header nav {
        display: none !important;
    }
    
    .header-phone {
        display: none;
    }
}