/* ===============================
   HEADER BASE
================================ */

.site-header {
    background: #0b0f14;
    padding: 16px 32px;
    width: 100%;
}

.header-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===============================
   LOGO
================================ */

.logo a {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #8b7bff;
}

.logo span {
    color: #ffffff;
}

/* ===============================
   MENU DESKTOP
================================ */

.main-nav .menu {
    list-style: none;
    display: flex;
    gap: 24px;
}

.main-nav .menu li a {
    color: #cfd3ff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.25s ease, color 0.25s ease;
}

/* HOVER */
.main-nav .menu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* ITEM ATIVO (WordPress) */
.main-nav .current-menu-item > a {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

/* ===============================
   BOTÃO HAMBURGUER
================================ */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
}

/* ===============================
   MENU MOBILE
================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: #0b0f14;
    padding: 90px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* BOTÃO FECHAR */
.menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

.menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* LINKS MOBILE */
.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-menu-list li a {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.25s ease;
}

.mobile-menu-list li a:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ===============================
   SOCIAL MOBILE
================================ */

.mobile-social {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.mobile-social a {
    color: #ffffff;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.mobile-social svg {
    width: 22px;
    height: 22px;
}

/* ===============================
   TEXTO FINAL MOBILE
================================ */

.mobile-footer-text {
    margin-top: auto;
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
}

/* ===============================
   RESPONSIVO
================================ */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav,.btn-desk {
        display: none;
    }
    a.btn-desk {
        display: none;
    }
}