/* CSS para ocultar texto SEO visualmente pero mantenerlo para buscadores */
.text-hide-seo {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* Alternativa usando font-size 0 */
.text-seo-hidden {
    font-size: 0;
    line-height: 0;
    color: transparent;
    user-select: none;
}