.chat_lucia {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #EEF2F5;
    padding: 64px 0;
}
.chat_lucia_item { 
    width: 73%;
    padding: 32px 64px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 6px 10px 0px rgba(1, 157, 244, 0.10);
    margin-bottom: 32px;
}
.chat_lucia_item_text {
    color: #50535A;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.chat_lucia_titulares {
    display: flex;
    padding-bottom: 64px;
}
.chat_lucia_titulo {
    color: #50535A;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.chat_lucia_titulo span {
    color: #50535A;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}
.chat_lucia_tit_textos {
    padding-left: 20px;
}

@media screen and (max-width: 1024px) {
    .chat_lucia_item{
        width: 82%;
    }
}
@media screen and (max-width: 600px) {
    .chat_lucia_item {
        padding: 32px 16px;
    }
    .chat_lucia_titulo {
        text-align: center;
        font-size: 32px;
        display: block;
    }
    .chat_lucia_titulo span {
        font-size: 32px;
        font-weight: 700;
    }
    .chat_lucia_titulares {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .chat_lucia_tit_textos {
        padding: 0 25px;
        margin-top: 20px;
    }
}