/* Estilos para generar un elemento <hr> con un título centrado, por ejemplo: ----TÍTULO---- */
.divisor-hr-titulado {
    margin: 20px 0 -15px;
    height: 0.5px;
    border: 0;
    background-color: rgba(0, 0, 0, 0.35);
}

.divisor-hr-titulado + h2 {
    display: inline-block;
    position: relative;
    left: 50%;
    margin: 0;
    padding: 4px 5px;
    transform: translateX(-50%);
    color: #009aae;
    font-size: 8px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    background-color: #fff;
}