﻿.header {
    position: fixed;
    z-index: 99999;
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav {
    background-color: #C3002F;
    color: #fff;
    font-family: AmsiProNarw-Ultra;
    width: 92%;
    max-width: 1400px;
    border-radius: 15px;
    padding-inline: 10px;
    margin-top: 5px;
}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
}

.nav__brand {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
}

    .nav__brand svg {
        width: 130px;
        height: 45px;
    }

    .nav__brand img {
        width: 100%;
        max-width: 120px;
    }

.nav__toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
/* Menú oculto por defecto */
.nav__menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    /* min-height: 100vh; */
}

    .nav__menu ul {
    }
/* Ítems del menú */
.nav__item-dt {
    display: none
}

.nav__item a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
}

    .nav__item a:hover {
        background-color: white;
        border-radius: 20px;
        color: #C3002F;
    }
/* Estado “abierto” */
.nav__menu.open {
    display: flex;
    padding-inline: 10px;
    min-height: 50vh;
    flex-direction: column;
    gap: 30px;
}

/*---- Ancles Tycos y faqs ----*/
.nav__item-tycos {
    margin-inline: 10px;
}

/*---- Button acciones login registro ----*/
.nav__item-dt--buttons-accions {
    display: flex;
    gap: 10px;
}

.nav__item-dt--buttons-accions-button {
    min-width: 110px;
    text-align: center;
}

.nav__item-dt--buttons-accions-login {
    border-radius: 20px;
    border: 1px solid white;
}

.nav__item-dt--buttons-accions-registro {
    border-radius: 20px;
    background-color: #F9D672;
    padding-inline: 20px !important;
    color: red !important;
}

.nav__footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
    font-size: 9px;
    max-width: 400px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.nav__footer-container-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .nav__footer-container-socials a {
        text-decoration: none;
    }

.nav__footer > p > span {
    color: #F9D672;
}

@media (min-width: 768px) {
}

@media (min-width: 900px) {
    .nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__toggle {
        display: none;
    }

    .nav__header {
        width: 10%;
    }

    .nav__menu {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 10px;
        height: initial;
        width: 90%;
    }

        .nav__menu ul {
            display: flex;
            align-items: center;
            gap: 10px;
        }

    .nav__item-mo {
        display: none;
    }

    .nav__item-dt {
        display: block;
    }

    .nav__item a {
        text-align: center;
        justify-content: center;
        font-size: calc(6px + .5vw);
        padding-inline: 5px;
    }

        .nav__item a:hover {
        }

    .nav__item-tycos {
        display: none;
    }

    .nav__menu.open {
        min-height: initial;
    }
}
