@charset "utf-8";


/* #upBar */
#upBar {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0 1rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    height: 60px;
}

#upBarLogo {
    width: auto;
    height: 40px;
}

#upMainMenuConte {
    display: flex;
    gap: 1rem;
}

.upMenuElementConte {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.upMenuElementConte label {
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
	cursor: pointer;
}

.upMenuElementConte:hover label {
    color: #1e928e;
}

/* #burgerButton */
#burgerButton {
    width: 40px;
    height: auto;
    display: none; /* Visible solo en móviles */
    cursor: pointer;
}

/* #subUpBar */
#subUpBar {
    background-color: rgba(254,255,255,0.90);
    width: 100%;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 0;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.upMenuElementConte2 {
    width: 100%;
    text-align: center;
    padding: 0.8rem 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.upMenuElementConte2:hover {
    background-color: #1e928e;
}

.upMenuElementConte2:hover label{
    color: #ffffff;
}

.upMenuElementConte2 label {
    color: rgba(0,0,0,0.80);
    font-size: 1rem;
}

@media screen and (max-width: 1217px) {
    #upMainMenuConte { /* up menu */
        display: none !important;
    }

    #burgerButton { /* up menu */
        display: block !important;
    }

   
	
}