.header-grid {
    background-color: #000;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 70px;
    z-index: 1000;
    top: 0;
    left: 0;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    padding-left: 35px;
    color: #fff;
}

.logo span {
    color: #D4AF37;
}

.menu {
    text-align: right;
    padding-right: 20px;
}

.enlaces li {
    display: inline-block;
    padding-right: 20px;
    text-transform: uppercase;
}

.enlaces a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.enlaces a:hover {
    color: #D4AF37;
}

.hamburger {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        justify-self: end;
        padding-right: 32px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 5px 0;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #000;
        text-align: left;
        padding-right: 0;
        height: calc(100vh - 70px);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .enlaces li {
        display: block;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 32px;
    }

    .enlaces a {
        display: block;
    }
}