/* NAVBAR PRINCIPAL */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #1E1E1E;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
    box-sizing: border-box;
}

/* LOGO */
.nav__logo {
    font-family: "Gunterz-regular";
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 1em;
    margin: -1em;
}

/* NAVEGACIÓN DESKTOP */
.nav__desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    margin-left: -200px; /* Compensar logo para centrar mejor */
}

.nav__menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    font-family: "Antapani Regular";
    font-size: 14px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

/* CONTACTO SEPARADO */
.nav__contacto {
    font-family: "Antapani Regular";
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav__contacto::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav__contacto:hover::after {
    width: 100%;
}

/* HAMBURGER MENU */
.nav__hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
}

.nav__hamburger span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* MENU MÓVIL */
.nav__mobile {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
    padding: 3rem 2rem;
}

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

.nav__mobile__menu {
    list-style: none;
}

.nav__mobile__item {
    border-bottom: 1px solid #000;
    padding: 1.5rem 0;
}

.nav__mobile__item:last-child {
    border-bottom: none;
}

.nav__mobile__link {
    font-family: "Gunterz-regular";
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    display: block;
}

/* REDES SOCIALES MÓVIL */
.nav__mobile__sociales {
    margin-top: 3rem;
    padding-top: 2rem;
}

.nav__mobile__sociales a {
    font-family: "Gunterz-regular";;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* RESPONSIVE */
@media screen and (max-width: 1024px) {
    .nav__desktop {
        display: none;
    }

    .nav__contacto {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .navbar {
        padding: 0 1.5rem;
    }

    .nav__desktop {
        margin-left: 0;
    }
}