/* ============================================================
   ADVERITAS - Correções da landing page (Fase 5)
   ============================================================ */

/* Fix botão "Conhecer ferramentas" no hero (.hero__cta .btn--ghost):
   no fundo navy do hero, a borda + cor do texto ficavam quase
   invisíveis. Aumentamos contraste e damos um leve background. */
.hero .btn--ghost,
.page--landing .btn--ghost {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(2px);
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.hero .btn--ghost:hover,
.page--landing .btn--ghost:hover,
.hero .btn--ghost:focus-visible,
.page--landing .btn--ghost:focus-visible {
    color: #0B2447 !important;
    border-color: #ffffff !important;
    background: #ffffff !important;
}

/* Garante que ícone interno também herde a cor branca legível. */
.hero .btn--ghost i,
.hero .btn--ghost svg,
.page--landing .btn--ghost i,
.page--landing .btn--ghost svg {
    color: currentColor;
    stroke: currentColor;
}
