/* Recreated polished navbar.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --brand-primary: #ff8c00;
    --brand-primary-hover: #e67e00;
    --brand-secondary: #1e3a8a;
    --text-gray: #4a5568;
}

* {
    box-sizing: border-box;
}

.navbar {
    background: #ffffff;
    height: 70px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Outfit', sans-serif;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    background: var(--brand-primary);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.2);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-secondary);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--brand-primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-btn, .nav-link {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-btn:hover, .nav-link:hover {
    color: var(--brand-green);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 2px;
    border: 1px solid #f0f0f0;
    margin-top: 15px;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav-item:hover .dropdown-menu, .show-dropdown {
    display: flex !important;
}

.dropdown-menu a {
    text-decoration: none;
    color: var(--text-gray);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: #fff5e6;
    color: var(--brand-primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-denunciar {
    text-decoration: none;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-painel {
    background: var(--brand-primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-painel:hover {
    background: var(--brand-primary-hover);
}

.arrow-icon {
    opacity: 0.6;
    transition: transform 0.2s;
}
.nav-item:hover .arrow-icon {
    transform: translateY(2px);
}
