/**
 * CSS FIXES GERAIS
 * Correções pontuais de bugs visuais
 */

/* ========================================
   FIX: Círculo/Contorno na logo e links (servicos)
   ======================================== */

/* Remove outline de TODOS os elementos ao clicar */
*:focus,
*:active,
*:focus-visible,
*:focus-within {
    outline: none !important;
    box-shadow: none !important;
}

/* Específico para logo */
.nav-brand:focus,
.nav-brand:active,
.nav-brand:focus-visible,
.nav-brand:focus-within,
.nav-brand img:focus,
.nav-brand img:active,
.nav-brand img:focus-visible,
a.nav-brand:focus,
a.nav-brand:active,
a.nav-brand:focus-visible,
.navbar-brand:focus,
.navbar-brand:active,
.navbar-brand:focus-visible,
.navbar-brand img:focus,
.navbar-brand img:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: none !important;
}

/* Remove ripple effect */
.nav-brand,
a.nav-brand,
.navbar-brand,
a.navbar-brand {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
}

/* Remove contorno de qualquer elemento dentro */
.nav-brand *,
.nav-brand *:focus,
.nav-brand *:active,
.navbar-brand *,
.navbar-brand *:focus,
.navbar-brand *:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Remove contorno de cards, botões, links */
a:focus,
a:active,
button:focus,
button:active,
.card:focus,
.card:active,
input:focus,
input:active {
    outline: none !important;
    box-shadow: none !important;
}


