/* =============================================
   HEADER - ADDBOX CONSTRUCTORA
   ============================================= */

.header {
    width: 100%;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #111;
    transition: all 0.3s ease;
}

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

.header-logo {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.header-logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: 0.3s ease;
}

.header-logo img:hover {
    transform: scale(1.05);
}

.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.header-nav ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.header-nav ul li a:hover {
    color: #ff6303;
}

.admin-link {
    color: #ffbf00 !important;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: 0.3s ease;
}

body {
    padding-top: 140px;
}

@media (max-width: 968px) {
    .header {
        padding: 20px 0;
    }

    .header-container {
        padding: 0 20px;
    }

    .header-logo {
        padding: 10px 0;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #000;
        padding: 80px 20px;
        transition: 0.4s ease;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }

    .header-nav.active {
        right: 0;
    }

    body {
        padding-top: 110px;
    }
}
