* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", "Open Sans", sans-serif;
}

.main {
    display: flex;
    height: 100vh;
}

.chats {
    width: 18vw;
    min-width: 320px;
}

ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    list-style: none;
    overflow-y: auto;
    scrollbar-width: none;
    padding: 0;
    border-right: 2px solid #dcdcdc;
}

li {
    width: 100%;
    border-bottom: 2px solid #e4e4e4;
    resize: none;
}

.estado-usuario {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.datos-usuario {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.datos-usuario h4 {
    color: #1B1F21;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
}

.datos-usuario p {
    color: #c3a7a6;
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0;
}

.Img-perfil {
    height: 3rem;
    border: 1px solid #BEC1BB;
    aspect-ratio: 1/1;
}

.iconos {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: #959797;
}

.iconos i {
    padding: 0.3rem;
}

.nuevo-chat {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 3.5rem;
}

.boton {
    width: 13rem;
    height: 3rem;
    flex-shrink: 0;
    border: 0;
    background-color: #a491d3;
    color: white;
}

.boton:hover {
    background-color: #cdc3e6;
}

.datos-contacto {
    display: flex;
    align-items: center;
    padding: 0.8rem 2rem;
    gap: 1rem;
}

.datos-contacto h4 {
    color: #1B1F21;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
}

.datos-contacto p {
    color: #1B1F21;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    white-space: nowrap;
    overflow: hidden;
}

.Img-perfil-contacto {
    height: 3.3rem;
    border: 1px solid #BEC1BB;
    aspect-ratio: 1/1;
}

.main-section {
    background-color: #f8f8f8;
    width: 82vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;    
}

.logo {
    width: 18rem;
}

.texto-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.texto-main h1 {
    font-family: "Roboto", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin: 0;
}

.texto-main p {
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    width: 55%;
    margin: 0;
}