/* Reset moderno minimo — nao e o reboot do Bootstrap, so o essencial */

*, *::before, *::after{
    box-sizing: border-box;
}

* {
    margin: 0;
}

html{
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    /* overflow-x:hidden REMOVIDO em 24/07/2026 (achado do proprio Ricardo
       ao vivo): overflow diferente de "visible" em html/body quebra o
       "position:sticky" de QUALQUER descendente (mesmo #site-header, que
       precisa ficar fixo no topo ao rolar) — confirmado que o header
       parou de acompanhar o scroll depois desse fix. A vitrine 3D (unica
       razao de existir essa regra) esta desligada agora
       (front-page.php, "if (false)"), entao a contencao nao faz falta
       neste momento. Quando a vitrine 3D voltar, resolver o overflow
       horizontal dela de outro jeito, sem mexer em html/body (ex:
       "overflow-x:clip" escopado a um wrapper que nao seja ancestral de
       #site-header). */
}

body{
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, svg, video{
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select{
    font: inherit;
    color: inherit;
}

button{
    cursor: pointer;
    background: none;
    border: none;
}

a{
    text-decoration: none;
    color: inherit;
}

ul, ol{
    list-style: none;
    padding: 0;
}

table{
    border-collapse: collapse;
}

@media (prefers-reduced-motion: reduce){
    html{
        scroll-behavior: auto;
    }
    *, *::before, *::after{
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
