﻿/* ====== NAV ====== */
/*.nav {
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-logo img {
    height: 50px;
}

.logo-animado {
    animation: rotarLogo 20s linear infinite;
}

@keyframes rotarLogo {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.nav-links {
    display: flex;
    gap: 25px;
}

    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: #f1c40f;
        }

.hamburguesa {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}*/

/* Menú hamburguesa (responsive) */
/*@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: rgba(0, 0, 0, 0.9);
        height: 100vh;
        width: 60%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        transition: right 0.3s ease;
    }

        .nav-links a {
            font-size: 20px;
        }

    .hamburguesa {
        display: block;
    }

    .cerrar {
        font-size: 30px;
        color: white;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }

    .nav-links.open {
        right: 0;
    }
}*/
