/* ============================
      CONFIGURACOES GERAIS
============================ */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #1a1a1a;
    scroll-behavior: smooth;
}

.dashboard {
    width: 100%;
    display: block;
    overflow-x: hidden;
}

h1, h2, h3 {
    margin: 0;
}

/* ============================
      MENU
============================ */
.menu_container {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    height: 140px;
    display: flex;
    padding: 0 8%;
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.98) 0%, rgba(250, 248, 245, 0.95) 100%);
}

.menu-central {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1400px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: flex;
}

.logo img {
    width: 190px;
    height: 140px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    background: rgba(250, 248, 245, 0.95);
    color: #5c4a3a;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    background: #5c4a3a;
    border-radius: 2px;
    position: relative;
    transition: background-color 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: #5c4a3a;
}

.menu-toggle span::before {
    top: -6px;
}

.menu-toggle span::after {
    top: 6px;
}

.opcoes {
    margin-top: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.opcoes a {
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    color: #5c4a3a;
    position: relative;
    text-decoration: none;
    font-size: 15px;
}

.opcoes a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(135deg, #d4af37 0%, #c19a6b 100%);
    transition: transform 0.3s ease;
}

.opcoes a:hover {
    background-color: rgba(212, 175, 55, 0.08);
    color: #d4af37;
}

.opcoes a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

@media (max-width: 1024px) {
    .menu_container {
        height: auto;
        padding: 12px 4%;
    }

    .menu-central {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .logo img {
        width: 150px;
        height: 106px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .opcoes {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
        margin-top: 6px;
        padding: 10px;
        border-radius: 12px;
        background: rgba(250, 248, 245, 0.98);
        border: 1px solid rgba(212, 175, 55, 0.22);
    }

    .menu-central.menu-open .opcoes {
        display: flex;
    }

    .opcoes a {
        text-align: center;
        padding: 10px 12px;
        font-size: 13px;
    }

    .opcoes a::after {
        display: none;
    }
}

@media (max-width: 560px) {
    .logo img {
        width: 128px;
        height: 92px;
    }

    .opcoes a {
        padding: 7px 9px;
        font-size: 12px;
    }
}
