
.header {
    display: flex;
    flex-direction: row;
    padding: 10px 10px;
    color: white;
    gap: 5px;
}

.vra {
    color: #8F1C1C;
}

.uni {
    color: #A49C9C;
}

.logo img {
    height: 105px;
}

.title-info-rect {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    width: -webkit-fill-available;
}

.title-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title h1 {
    margin: 0;
    display: flex;
    width: 10vw;
    justify-content: space-around;
    font-size: 82px;
    font-family: Arial, sans-serif;
}

.title h2 {
    margin: 0;
    font-size: 12px;
    /* font-weight: bold; */
    /* background-color: white; */
    color: #131212;
    font-weight: bold;
    /* padding: 5px 3px; */
    /* border-radius: 4px; */
    left: 1vw;
    text-align: left;
    margin-left: 0.3vw;
    font-family: Arial, sans-serif;
}

.contenedor-logo{
    display:flex;
    align-items: center;
}

.cont-user{
    height: 8vh;
    flex-direction: column;
    justify-content: space-evenly;
}

.icon i {
    font-size: 39px; /* Ajusta el tamaño según lo que necesites */
    color: white; /* Cambia el color si es necesario */
}

.rectangulo{
    height: 8px;
    width: auto;
    background-color: #8F1C1C;
    transform-origin: left;
    transition: width 0.3s ease;
}

.cont-user{
    height: 8vh;
    width: auto;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    text-align: start;
    gap: 10px;
    display: inline;
    /* margin-left: 50px; */
    color: #fff;
    border-radius: 20px;
}


.cont-user-data{
    height: 8vh;
    flex-direction: column;
}

.user-data{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-evenly;
}


.user-info {
    display: flex;
    flex-direction: row;
    text-align: start;
    align-items: center;
    height: 10vh;
    gap: 5px;
    background-color: #8F1C1C;
    justify-content: space-evenly;
    border-radius: 0 0 0 10px;
}

.user-info .name {
    margin: 0;
    font-size: 18px;
}

.user-info .role {
    margin: 0;
    font-size: 14px;
}

.user-info .facultad {
    margin: 0;
    font-size: 14px;
}

.icon{
    height: 100%;
    display: flex;
    padding-right: 0.3vw;
    align-items: center;
}

.letras-cont-user{
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: Arial, sans-serif;
    justify-content: space-evenly;
}

.hidden {
    display: none;
}

/* Media Queries para dispositivos móviles */
@media (max-width: 768px) {
    
    .title h1 {
        margin: 0;
        display: flex;
        width: 1vw;
        justify-content: space-around;
        font-size: 37px;
        font-family: Arial, sans-serif;
    }

    .logo img {
        height: 80px;
    }

    .user-info .name {
        margin: 0;
        font-size: 12px;
    }

    .user-info .facultad {
        margin: 0;
        font-size: 12px;
    }
    
    .user-info {
        height: 8vh;
    }

    .user-welcome {
        font-family: "Oswald", sans-serif;
        font-size: 2.2rem;
    }
}

