.interlinea {
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: bold;
    margin: 25px 0;
}

.interlinea::before,
.interlinea::after {
    content: "";
    flex-grow: 1;
    height: 3px;
    background-color: rgb(200, 208, 215); /* Color de la línea */
    margin-left: 10px; /* Espacio entre el texto y la línea */
    border-radius: 25px;
}


