/* MAKIS ACADEMY - MENU MODERNO FORÇADO */

/* Override completo do header padrão */
.header, #header, .navbar, .navigation {
    display: none !important;
}

/* Criar nosso próprio header */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

body {
    padding-top: 80px !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Menu customizado via JavaScript será injetado */
#makis-custom-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.makis-menu-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.makis-logo {
    color: white !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 28px !important;
    transition: all 0.3s ease;
}

.makis-logo::before {
    content: ' ';
    font-size: 32px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.makis-logo:hover {
    color: #ffd700 !important;
    transform: scale(1.05);
}

.makis-nav {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.makis-nav a {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.makis-nav a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.makis-nav a.admin {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%) !important;
    color: #333 !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.makis-nav a.admin:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%) !important;
    color: #333 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Mobile */
@media (max-width: 768px) {
    .makis-menu-container {
        flex-direction: column;
        padding: 10px;
    }
    
    .makis-logo {
        font-size: 20px !important;
        margin-bottom: 10px;
    }
    
    .makis-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .makis-nav a {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Melhorias de conteúdo */
h1, h2, h3 {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 700 !important;
}

.content, main, article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
