@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* ===== RESET BASICO ===== */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
}

/* ===== NAV GENERAL ===== */
nav {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 1000;
}

/* ===== LOGO ===== */
.logo {
    float: left;
    padding: 15px;
}

.logo img {
    width: 180px;
}

/* ===== MENU ===== */
.menu {
    clear: both;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #2b2c2e;
}

/* ===== ITEMS ===== */
.menu li a {
    display: block;
    padding: 10px;
    color: white;
}

.menu li h6 {
font-family: "Montserrat", sans-serif;
font-size: 12px;
color: #fff;
font-weight:500 ;
}

/* ===== HAMBURGUESA ===== */
.menu-icono {
    float: right;
    padding: 40px;
    cursor: pointer;
}

.menu-boton {
    display: none;
}

/* ICONO */
.nav-icono {
    background-color: #7D0618;
    display: block;
    height: 4px;
    width: 30px;
    position: relative;
    transition: 0.3s;
}

.nav-icono::before,
.nav-icono::after {
    content: "";
    background-color: #7D0618;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.nav-icono::before {
    top: -8px;
}

.nav-icono::after {
    top: 8px;
}

/* ANIMACION A CRUZ */
.menu-boton:checked ~ .menu-icono .nav-icono {
    background: transparent;
}

.menu-boton:checked ~ .menu-icono .nav-icono::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-boton:checked ~ .menu-icono .nav-icono::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ABRIR MENU */
.menu-boton:checked ~ .menu {
    max-height: 900px;
}

/* ===== SUBMENU MOBILE ===== */
.submenu {
    position: relative;
}

.submenu-items {
    display: none;
    background: #9b9b9b;
}

.submenu.active .submenu-items {
    display: block;
}

.submenu-items li a {
    padding-left: 30px;
}

/* ================= DESKTOP ================= */
@media (min-width: 1170px) {

    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow: visible;
    }

    .menu {
        display: flex;
        max-height: none;
        background: transparent;
        overflow: visible;
    }

    .menu li {
        position: relative;
    }

    .menu li a {
        color: black;
        padding: 25px 15px;
    }

    .menu li h6 {
        font-family: "Montserrat", sans-serif;
        font-size: 14px;
        color: #7D0618;
        font-weight:600 ;
    }

    .menu-icono {
        display: none;
    }

    /* SUBMENU DESKTOP */
    .submenu-items {
        position: absolute;
        top: 100%;
        left: 0;
        width: 200px;
        background: #9b9b9b;
        display: none;
        z-index: 9999;
    }

    .submenu-items li a {
        color: white;
        padding: 12px 15px;
    }

    .submenu-items li h6 {
        font-family: "Montserrat", sans-serif;
        font-size: 14px;
        color: #fff;
        font-weight:600 ;
    }

    /* HOVER */
    .submenu:hover > .submenu-items {
        display: block;
    }

    /* CLICK fallback */
    .submenu.active > .submenu-items {
        display: block;
    }
}