/**
 * Truth Social Icon Custom CSS
 * 
 * @copyright 2025 Nando Cardoso® | Connect Designers®
 * @author Nando Cardoso
 * 
 * PROPRIEDADE INTELECTUAL REGISTRADA
 * REGISTRO INPI Connect Designers®: Processo nº 923067680
 * REGISTRO INPI Nando Cardoso®: Processo nº 929564537
 * 
 * Código protegido por direitos autorais. Uso não autorizado proibido.
 */
.fa-truth-social {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm5.5 8.5h-2.2v7c0 .3-.2.5-.5.5h-2.8c-.3 0-.5-.2-.5-.5v-7h-2v-2c0-.3.2-.5.5-.5h2v-1c0-1.7 1.3-3 3-3h2c.3 0 .5.2.5.5v2c0 .3-.2.5-.5.5h-1.5c-.3 0-.5.2-.5.5v.5h2c.2 0 .4.1.5.3l.5 2c0 .2-.1.4-.3.5-.1.1-.2.1-.2.1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Garantir que funcione com as cores configuradas */
.cb-social-link .fa-truth-social {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

/* Ícone Truth Social como T estilizado */
.truth-social-icon {
    font-family: "Georgia", serif;
    font-weight: bold;
    font-size: 1.2em;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-align: center;
}

/* Versão alternativa usando CSS puro */
.truth-social-t {
    display: inline-block;
    font-family: "Times New Roman", serif;
    font-weight: 900;
    font-size: 1.1em;
    letter-spacing: -0.05em;
    position: relative;
}

.truth-social-t::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background-color: currentColor;
}