.menu-indice {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.desktop-nav {
    position: absolute;
    left: 24px;
    top: 18px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav a {
    color: #111111;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.desktop-nav a:hover {
    opacity: 0.7;
}

.menu-boton {
    font-size: 30px;
    color: #111111;
    background: rgba(0, 0, 0, 0);
    border: none;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 6px;
    margin-bottom: 8px;
}

.menu-cerrar {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    align-self: flex-end;
    padding: 10px 16px;
}

.menu-desplegable {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    width: 350px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    padding-top: 0;
    z-index: 10;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.menu-desplegable.abierto {
    display: flex;
}

.menu-desplegable a {
    color: white;
    text-decoration: none;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-align: left;
}

.menu-desplegable a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.nav {
    position: absolute;
    left: 24px;
    top: 18px;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 2;
}

.nav__toggle {
    display: none;
    background: transparent;
    border: none;
    color: #111111;
    font-size: 30px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 6px;
    line-height: 1;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
}

.nav__item {
    margin: 0;
    color: #111111;
}

.nav__link {
    color: #111111;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.nav__link:hover {
    opacity: 0.7;
}

.nav__mobile {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    width: 350px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 200;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.nav__mobile.is-open {
    display: flex;
}

.nav__close {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    align-self: flex-end;
    padding: 10px 16px;
}

.nav__mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.nav__mobile-item {
    margin: 0;
}

.nav__mobile-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-align: left;
}

.nav__mobile-link:hover {
    background: rgba(255, 255, 255, 0.12);
}

.surftrips-page .nav__link {
    color: #000000;
}

.surftrips-page .nav__toggle {
    color: #000000;
}

@media (min-width: 481px) {
    .menu-indice {
        display: none;
    }
}

@media (max-width: 480px) {
    .desktop-nav {
        display: none;
    }

    .menu-indice {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 20;
    }

    .menu-boton {
        position: static;
        margin: 0;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        padding: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        line-height: 1;
    }

    .menu-desplegable {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: #ffffff;
        padding: 12px 16px 14px;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        z-index: 1250;
        border-radius: 10px;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    }

    .menu-desplegable.abierto {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu-cerrar {
        align-self: flex-end;
        color: #111111;
        font-size: 24px;
        padding: 4px 6px;
        margin-bottom: 6px;
    }

    .menu-desplegable a {
        color: #111111;
        padding: 12px 6px;
        font-size: 20px;
        line-height: 1.15;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .menu-desplegable a:last-child {
        border-bottom: 0;
    }

    .nav__list {
        display: none;
    }

    .nav__toggle {
        display: block;
    }
}
