* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.header-nave {
    background-color: #1f1803;
    display: flex;
    font-family: "Montserrat", sans-serif;
}

.logo {
    height: 120px;
}

.logo-img {
    height: 100%;
    transition: transform .2s;
    margin: 0px 60px;
}

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

.header-nave {
    display: flex;
    justify-content: center;
    min-height: 200px;
    align-items: center;
    gap: 20px;
    box-shadow: rgba(31, 24, 3, 0.24) 0px 6px 8px;
    border-bottom-left-radius: 5%;
    border-bottom-right-radius: 5%;
    margin-bottom: 40px;
}

.header-nave-list {
    display: flex;
    list-style-type: none;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;

}

.header-nave-list li a {
    padding: 10px 20px;
    background-color: #f9a825;
    color: #3e2f00;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    border-bottom: solid 2px #f9a825;
}

.header-nave-list li a:hover {
    background-color: #1f1803;
    color: #fff5d8;
    border-bottom: solid 4px #f9a825;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    font-size: 28px;
    cursor: pointer;
    display: none;
    padding: 10px;
    background: #f9a825;
    color: #1f1803;
    border-radius: 6px;
}

.menu {
    display: none;
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}



footer {
    margin-top: 40px;
    border-top-left-radius: 5%;
    border-top-right-radius: 5%;
    background-color: #1f1803;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: #ffc61b;
    padding: 1.5rem;
    text-align: center;
    box-shadow: rgba(31, 24, 3, 0.24) 0px -6px 8px;
    font-family: "Montserrat", sans-serif;
}

footer p {
    margin-bottom: 1rem;
}

footer a {
    color: #ffc61b;
    text-decoration: none;
}

.footer-logo {
    width: 6.5rem;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.footer-logo:hover {
    filter: none;
    transform: scale(1.05);
}

.footer-logo {
    opacity: 0;
    transform: translateX(-200px);
    animation: slideUp 2s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1500px) {
    .header-nave-list {
        gap: 10px;
        margin: 20px;
    }

    .header-nave-list li {
        padding: 0px;
    }
}


@media (max-width: 768px) {
    .header-nave {
        justify-content: space-between;
    }

    .menu-icon {
        display: inline-block;
        margin: 40px;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        right: 20px;
        background-color: #1f1803;
        border-radius: 8px;
        padding: 10px 0;
        width: 300px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 9999;
    }

    .menu li {
        width: 100%;
        text-align: center;
        margin: 0px 20px;
    }

    .menu li a {
        display: block;
        width: 100%;
    }

    .menu li:last-child a {
        border-bottom: none;
    }

    #menu-toggle:checked+.menu-icon+.menu {
        display: flex;
    }
}