/* ===============================
   ACESSIBILIDADE GERAL
================================ */

/* Fonte base maior quando ativada */
.fonte-grande {
    font-size: 110%;
}

/* ===============================
   ALTO CONTRASTE
================================ */
.contraste-alto {
    background-color: #000 !important;
    color: #fff !important;
}

.contraste-alto a {
    color: #ffd700 !important;
}

.contraste-alto header,
.contraste-alto footer,
.contraste-alto section,
.contraste-alto .card {
    background-color: #000 !important;
    border-color: #fff !important;
}

.contraste-alto h1,
.contraste-alto h2,
.contraste-alto h3,
.contraste-alto p {
    color: #fff !important;
}

/* ===============================
   FOCO VISÍVEL (TECLADO)
================================ */
a:focus,
button:focus {
    outline: 3px solid #ffd700;
    outline-offset: 3px;
}

/* ===============================
   REDUÇÃO DE ESTÍMULOS
================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ===============================
   LEITURA CONFORTÁVEL
================================ */
p {
    max-width: 70ch;
}

