/* ============================================================
   ISLAMKT — Ajustes adicionais (arquivo à parte, não altera os seus)
   Efeito de revelação moderno nos textos do destaque ativo (.INFO_OK).
   Re-dispara a cada slide porque o MYSLIDE troca a classe INFO_OK.
   ============================================================ */

@keyframes islaReveal {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

.INFO_DESTAQUES .INFO_OK .DEST_TIT {
    animation: islaReveal .7s cubic-bezier(.16,.84,.44,1) both;
}
.INFO_DESTAQUES .INFO_OK .DEST_RESUMO {
    animation: islaReveal .7s cubic-bezier(.16,.84,.44,1) .12s both;
}
.INFO_DESTAQUES .INFO_OK .DEST_SAIBA {
    animation: islaReveal .7s cubic-bezier(.16,.84,.44,1) .24s both;
}

/* Ícones sociais viram "clicáveis" */
.ICO_SOCIAL { cursor: pointer; }
