


.menu {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100vw;
    flex-direction: row;
    background: linear-gradient(135deg, #890606, #ff1a1a, #e60000, #c31212);

    position: relative;
    border: 1px solid white;
    box-shadow: 0 0 12px red;
    height: 80px;
    z-index: +2;
}

.menu .menuinicio {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    z-index: +22;
    background-image: url(../img/fuego.gif);
    border: 1px solid black;
    bottom: -50px;
    left: 50%;
    transform: translate(-50%);
    transition: 0.5s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu .menuinicio:hover {
    width: 103;
    height: 103px;

}

.menu .menuinicio img {
    width: 95px;
    height: 95px;
}

.menu .registro {
    display: flex;
    flex-direction: row;
    width: 30%;
    height: auto;
    justify-content: start;
    align-items: center;
    margin-left: 15px;
    transition: 0.5s ease;
    text-decoration: none;
}

.menu .registro:hover {
    transform: scale(1.01);
}

.menu .registro img {
    margin: 5px;
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.menu .registro p {
    margin: 5px;
    text-decoration: none;
    color: white;
    text-transform: capitalize;
    font-weight: bold;
    text-shadow: 1px 1px gray;
}

.menu ul {
    min-width: 70%;
    width: auto;
    max-width: 90%;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: row;
    height: 70px;
 
    margin-right: 5px;

}

.menu ul li {
    list-style: none;
    margin: 2px;
    margin-left: 5px;
    transition: 0.5s ease;
    position: relative;
    min-height: 40px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;


}

.menu ul li:hover {

    transform: scale(1.05);
}

.menu ul li:hover>ul {
    opacity: 1;
    transform: translateY(17px);

}

.menu ul li a {
    text-decoration: none;
    text-transform: capitalize;
    color: inherit;
    box-shadow: 1px 1px 3px black;
    padding: 6px 8px;
    font-size: 14px;
  justify-content: center;
    align-items: center;
    display: flex;
}

.menu li ul {
    background-color: red;
    justify-content: start;
    align-items: start;
    width: 200px;
    flex-direction: column;
    height: auto;
    background: linear-gradient(135deg, #890606, #ff1a1a, #e60000, #c31212);

    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(-30px);
    opacity: 0;
    transition: 0.5s ease;
}

.menu li ul li {
    list-style: none;
    margin: 5px;
}

.menu li ul li a {
    text-decoration: none;
    text-transform: capitalize;
    color: inherit;
    transition: 0.5s ease;
    justify-content: center;
    align-items: center;
    display: flex;
}

.menu li ul li a:hover {
    background-color: #890606;
}

.menucell {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 15px;
    right: 15px;
    transition: 0.4s ease;
    background-color: white;
    display: none;

}

.menucell:hover {
    transform: scale(1.05);
}

.menucell img {
    width: 90%;
    height: 90%;
}

.notificaciones-header {
    position: relative;
    cursor: pointer;

    margin-right: 20px;
    background-color: black;
    padding: 5px;
    border-radius: 50%;
    transition: 0.5s ease;
    box-shadow: 1px 1px 1px gray;
  
}


.notificaciones-header .icono {
    font-size: 15px;
}

.contador {
    position: absolute;
    top: -5px;
    right: -8px;
    background: red;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

.contenedor-notificaciones {
    position: absolute;
    top: 80px;
    right: 10px;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 999;
    color: black;
    padding: 15px;
}

.scroll-notificaciones .noti {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
@media(max-width: 900px) {
 header .menu {
        position: fixed;
        top: 0;
        left: 0;

        width: 100vw;
        height: 60px;
        z-index: +20;
        justify-content: start;
        align-items: start;


    }

    .registro {

        position: fixed;
        top: 5px;
        left: 0;
        width: auto;
        height: 50px;
    }

    .menu .registro img {
        margin-right: 5px;
        width: 45px;
        aspect-ratio: 1/1;
        border-radius: 50%;
    }

    .menu ul {
        width: 70vw;
        height: 100vh;
        display: flex;
        justify-content: start;
        align-items: end;
        flex-direction: column;
        padding: 10px;

        background-color: rgba(255, 0, 0, 0.58);
        z-index: +21;
        position: absolute;
        right: 0;
        top: 50px;
        
        transform: translateX(100vw);
        transition: transform 0.3s ease;
        display: none;
    }

    .menu ul li {
        list-style: none;
        margin: 5px;
        margin-left: 10px;
        transition: 0.5s ease;
        width: 70%;
        margin-top: 10px;
        justify-content: start;
        align-items: start;
        display: flex;
        flex-direction: column;
    }
    .menu ul li:hover > ul {
        transform: none;
        display: flex;
    }
    .menu li ul {
        background: none;
        justify-content: end;
        align-items: end;
        width: 100%;
        flex-direction: column;
        height: auto;
        
        position: relative;
        top: 0;
        left: 0;
        transform:none;
        opacity: 1;
        display: none;
        transition: 0.5s ease;
    }
    .menu ul li a {
        text-decoration: none;
        text-transform: capitalize;
        color: inherit;
        box-shadow: 1px 1px 3px black;
        padding: 10px 12px;
        background-color: #890606;
        width: 100%;
        text-align: end;
    }

    .menucell {
        width: 40px;
        height: 40px;
        padding: 10px;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 15px;
        right: 15px;
        transition: 0.4s ease;
        background-color: white;
        display: flex;
        z-index: +20;
        transition: 0.5s ease;

    }

    .menucell:hover {
        transform: scale(1.02);
    }

    .notificaciones-header {


        position: absolute;
        top: 17px;
        right: 60px;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .notificaciones-header .icono {
        font-size: 18px;
    }
    .contenedor-notificaciones {
    position: fixed;
    top: 60px;
    right: 10px;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: +15;
    color: black;
    padding: 15px;
}
}