Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction11 landmarksFIX
Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.
Without a <main> landmark, screen-reader users can't skip past the navigation to the page content — every page starts with re-reading the menu.
Learn more ▾ ▴
The <main> element marks the page's primary content area. Assistive tech offers a 'jump to main' shortcut — but only if <main> exists. Without it, every page navigation forces re-reading the header. Wrap your primary content in a single <main>.
Source: WAI-ARIA / WCAG 2.4.1
Multiple navigations need aria-label to distinguish them for screen readers.
Some <nav> elements lack aria-label — screen-reader users hear 'navigation' multiple times with no way to distinguish them.
Learn more ▾ ▴
When a page has multiple <nav> regions (primary, footer, breadcrumb), each needs aria-label or aria-labelledby. AT users navigate by landmark; identical 'navigation' announcements force them to enter each one to discover purpose.
Source: WAI-ARIA Authoring Practices
Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.
Without a skip-nav link, keyboard users tab through every nav item before reaching content — every page, every visit.
Learn more ▾ ▴
WCAG 2.4.1 (Bypass Blocks) requires a mechanism to skip past repeated content. The standard implementation is a 'Skip to main content' link that's the first focusable element, visually hidden until focused. Three lines of HTML + four of CSS.
Source: WCAG 2.1 SC 2.4.1
DHeading HierarchyAction29 headings, 3 skip(s)FIX
- H3 Acessibilidade
- H1 Mais buscados
- H1 Suas buscas recentes duplicate H1
- H1 Sugestões duplicate H1
- H1 Separamos para você duplicate H1
- H3 Talvez seja do seu interesse skipped
- H2 Produtos e serviços pra agilizar seu dia a dia
- H3 Confira algumas das soluções que preparamos pra você
- H1 (empty)
- H3 Automóveis skipped
- H3 Imóveis
- H3 Caminhões e tratores
- H3 Moto
- H3 BIA no WhatsApp
- H1 Selecione os cookies que você quer aceitar duplicate H1
- H3 a skipped
- H3 b
- H3 c
- H3 d
- H3 e
- H3 f
- H3 h
- H3 i
- H3 m
- H3 n
- H3 o
- H3 r
- H3 s
- H3 u
A page should have only one H1. Multiple H1s dilute the document outline.
Multiple H1s blur the page's primary topic — screen-reader users and Google both prefer one H1.
Learn more ▾ ▴
HTML5's outline algorithm technically allows multiple H1s within sectioning content, but no browser implements it. In practice: one H1 per page. Use H2-H6 for subsections.
Source: WCAG 2.4.6 / Google Search Central
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
Empty headings appear in the document outline but provide no information.
Empty <hN> tags break the document outline — screen-reader users navigating by heading hit dead silence.
Source: WCAG 2.4.6
DTabindex Anti-PatternsAction9 positive, 1 -1-on-focusableFIX
F404 Error PageActionSoft 404 detectedFIX
The server returned HTTP 200 for a non-existent path. Search engines will index this page as real content. Configure your server to return HTTP 404 for missing pages.
FFavicon & BrandingAction2 icon(s) detectedFIX
DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
CAlt Text QualityAction3 of 74 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 2 image(s) |
| generic | 1 image(s) |
| too long | 10 image(s) |
Images without alt text are invisible to screen readers.
Each image without alt text is a WCAG 1.1.1 failure — invisible to screen-reader users, lost from Google Image Search.
Learn more ▾ ▴
WCAG 2.1 Level A requires text alternatives for non-decorative images. Empty alt='' is fine for decorative; meaningful images need descriptive text. Common fixes: CMS audit + bulk add, build-time linter (alt-text-required ESLint rule), CI gate on Lighthouse a11y score.
Source: WCAG 2.1 SC 1.1.1 / WebAIM Million Report
CForm AccessibilityAction4 of 9 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #AGN | number | Agência: | for/id |
| #CTA | number | Conta: | for/id |
| #DIGCTA | number | Dígito: | for/id |
| #remember | checkbox | Lembrar-me | for/id |
| #campo-busca | text | O que você procura? | for/id |
| #necessary | checkbox | (none) | none |
| #performance | checkbox | (none) | none |
| #funcional | checkbox | (none) | none |
| #marketing | checkbox | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="checkbox" id="necessary">; <input type="checkbox" id="performance">; <input type="checkbox" id="funcional">; <input type="checkbox" id="marketing">
Form controls without labels — assistive tech announces 'edit text' with no context; users can't complete forms.
Source: WCAG 2.1 SC 3.3.2
CLink & Button QualityAction8 issue(s) across 166 links and 25 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /html/classic/produtos-servicos/renegoci… | Renegocie suas dívidas | new tab | Add '(opens in new tab)' to text |
| https://vendaonline.bradescard.com.br/?c… | Peça seu cartão sem anuidade | new tab | Add '(opens in new tab)' to text |
| https://loja.bradescoseguros.com.br/page… | Contrate seu plano dental | new tab | Add '(opens in new tab)' to text |
| https://loja.bradescoseguros.com.br/page… | Proteja seu lar. … | new tab | Add '(opens in new tab)' to text |
| https://cadastro.agorainvest.com.br/dado… | Invista com a Ágora | new tab | Add '(opens in new tab)' to text |
| https://renegocie.bradesco.com.br/?utm_s… | Renegociação de Dívidas | new tab | Add '(opens in new tab)' to text |
| https://www.bradescoseguros.com.br/clien… | Vida e Previdência | new tab | Add '(opens in new tab)' to text |
| /bradesco-shop/index.shtm | Shop | img no alt | Add alt attribute to the image |
| https://bradesco.planejarconsorcio.com.b… | Simular | new tab | Add '(opens in new tab)' to text |
| https://bradesco.planejarconsorcio.com.b… | Simular | new tab | Add '(opens in new tab)' to text |
| https://bradesco.planejarconsorcio.com.b… | Simular | new tab | Add '(opens in new tab)' to text |
| https://bradesco.planejarconsorcio.com.b… | Simular | new tab | Add '(opens in new tab)' to text |
| https://banco.bradesco/seguranca/seguran… | Diretiva de Privacidade | new tab | Add '(opens in new tab)' to text |
| https://policies.google.com/technologies… | https://policies.google.com/te… | new tab | Add '(opens in new tab)' to text |
| https://banco.bradesco/seguranca/seguran… | Diretiva de Privacidade | new tab | Add '(opens in new tab)' to text |
| https://www.consumidor.gov.br/pages/prin… | Consumidor.gov.br | new tab | Add '(opens in new tab)' to text |
| https://banco.bradesco/html/classic/aten… | Canal Corporativo de Denúncia… | new tab | Add '(opens in new tab)' to text |
| https://seguranca.bradesco/seguranca-inf… | Diretivas de Privacidade | new tab | Add '(opens in new tab)' to text |
| https://www.bcb.gov.br/estatisticas/txju… | Taxa de Juros de Operações d… | new tab | Add '(opens in new tab)' to text |
| http://www.planalto.gov.br/ccivil_03/Lei… | Código de Defesa do Consumido… | new tab | Add '(opens in new tab)' to text |
| https://seguranca.bradesco/seguranca-inf… | Lei Geral de Proteção de Dad… | new tab | Add '(opens in new tab)' to text |
| https://banco.bradesco/html/classic/aten… | (empty) | empty | Add link text or aria-label |
| https://www.agorainvestimentos.com.br/ | Ágora Investimentos | new tab | Add '(opens in new tab)' to text |
| https://banco.bradesco/html/classic/prod… | Agronegócio | new tab | Add '(opens in new tab)' to text |
| https://autoline.com.br/ | Autoline | new tab | Add '(opens in new tab)' to text |
| https://bradescobbi.com.br | BBI | new tab | Add '(opens in new tab)' to text |
| https://bemdtvm.bradesco/html/bemdtvm/in… | BEM DTVM | new tab | Add '(opens in new tab)' to text |
| https://www.bradescard.com.br | Bradescard | new tab | Add '(opens in new tab)' to text |
| https://bradespar.bradesco/ | Bradespar | new tab | Add '(opens in new tab)' to text |
| https://bradescoasset.com.br/pt | BRAM - Bradesco Asset Manageme… | new tab | Add '(opens in new tab)' to text |
| https://custodia.bradesco | Custódia | new tab | Add '(opens in new tab)' to text |
| https://cultura.bradesco/ | Cultura Bradesco | new tab | Add '(opens in new tab)' to text |
| https://cidadetran.bradesco/bradescocida… | Despachantes e Autoescolas | new tab | Add '(opens in new tab)' to text |
| https://www.economiaemdia.com.br/ | Economia em Dia | new tab | Add '(opens in new tab)' to text |
| https://banco.bradesco/energia/ | Energia | new tab | Add '(opens in new tab)' to text |
| https://www.bradescoeuropa.eu/bradescoeu… | Europa | new tab | Add '(opens in new tab)' to text |
| https://expresso.bradesco | Expresso | new tab | Add '(opens in new tab)' to text |
| https://financiamentos.bradesco/html/hom… | Financiamentos | new tab | Add '(opens in new tab)' to text |
| https://www.bradescofornecedores.com.br/… | Fornecedores | new tab | Add '(opens in new tab)' to text |
| https://fundacao.bradesco/ | Fundação Bradesco | new tab | Add '(opens in new tab)' to text |
| https://www.hospitaledmundovasconcelos.c… | Hospital Edmundo Vasconcelos | new tab | Add '(opens in new tab)' to text |
| https://www.inovabra.com.br | InovaBRA | new tab | Add '(opens in new tab)' to text |
| https://banco.bradesco/integridade/pt-br… | Integridade | new tab | Add '(opens in new tab)' to text |
| https://banco.bradesco/mei/ | MEI | new tab | Add '(opens in new tab)' to text |
| http://museubradesco.org.br/pages/capitu… | Museu Histórico | new tab | Add '(opens in new tab)' to text |
| https://next.me/ | Next | new tab | Add '(opens in new tab)' to text |
| https://banco.bradesco/html/pessoajuridi… | Órgãos Públicos - Extrato F… | new tab | Add '(opens in new tab)' to text |
| https://www.bradescori.com.br/ | Relação com Investidores | new tab | Add '(opens in new tab)' to text |
| https://banco.bradesco/bradesco-shop/ | Bradesco Shop | new tab | Add '(opens in new tab)' to text |
| https://banco.bradesco/seguranca/ | Segurança | new tab | Add '(opens in new tab)' to text |
| https://www.bradescoseguros.com.br/ | Seguros | new tab | Add '(opens in new tab)' to text |
| https://banco.bradesco/html/classic/pode… | Servidor Público | new tab | Add '(opens in new tab)' to text |
| https://www.unibrad.com.br/UniversidadeC… | Unibrad | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/bradesc… | new tab | Add '(opens in new tab)' to text | |
| https://www.facebook.com/bradesco | new tab | Add '(opens in new tab)' to text | |
| https://x.com/bradesco | X | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/bradesco | youtube | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/bradesco/ | new tab | Add '(opens in new tab)' to text | |
| https://www.tiktok.com/amp/tag/bradesco?… | tiktok | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
https://banco.bradesco/html/classic/atendimento/fale-conosco/ouvidoria/index.…
Links with no accessible text (empty <a></a>, image-only no alt, icon-only no aria-label) are unidentifiable to screen readers.
Source: WCAG 2.1 SC 2.4.4
Add '(opens in new tab)' to link text or aria-label.
/html/classic/produtos-servicos/renegociacao-de-dividas/index.shtm; https://vendaonline.bradescard.com.br/?canal=531&origem=913&tpopto=3&ptovda=1…; https://loja.bradescoseguros.com.br/page/public/pt/BR/process/enter/StartUIPr…; https://loja.bradescoseguros.com.br/page/public/pt/BR/process/enter/HOMEVitri…; https://cadastro.agorainvest.com.br/dados-acesso/?dataLayerOrigin=https://www…; https://renegocie.bradesco.com.br/?utm_source=BRA&utm_medium=IB&utm_campaign=…; https://www.bradescoseguros.com.br/clientes; https://bradesco.planejarconsorcio.com.br/onboard; https://bradesco.planejarconsorcio.com.br/onboard; https://bradesco.planejarconsorcio.com.br/onboard (+47 more)
Links with target="_blank" without rel="noopener" leak the originating page's window context — security and UX issue.
Learn more ▾ ▴
Without rel="noopener", the new tab can navigate the original tab via window.opener (tab-nabbing attack). Modern browsers default to noopener for target=_blank but only since recent versions. Always set rel="noopener noreferrer" explicitly.
Source: MDN target / OWASP
Icon-only buttons need an aria-label so screen readers can announce them.
button#search-button; button#voice-open-button; button (#407 on page); button (#415 on page); button (#423 on page); button (#430 on page); button (#438 on page)
Buttons with no accessible text (icon-only, no aria-label) can't be activated by voice control or understood by screen readers.
Source: WCAG 2.1 SC 4.1.2
BMobile-Readable Font Sizes98% of visible text renders at >= 12 CSS px (1 below threshold)REVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 15 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
1 contrast failures on background images/gradients
These failures are invisible to CSS-based accessibility tools like Lighthouse. The text may be fine on a solid background, but fails when rendered over an image or gradient.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h1 Mais buscados | 1.55:1 | 3.0:1 | #000000 | #2E2E2F | Fail |
| h1 Suas buscas recentes | 1.55:1 | 3.0:1 | #000000 | #2E2E2F | Fail |
| h1 Sugestões | 1.55:1 | 3.0:1 | #000000 | #2E2E2F | Fail |
| h1 Separamos para você | 1.55:1 | 3.0:1 | #000000 | #2E2E2F | Fail |
| h1 Selecione os cookies… | 1.55:1 | 3.0:1 | #000000 | #2E2E2F | Fail |
| h2 Produtos e serviços… | 1.55:1 | 3.0:1 | #000000 | #2E2E2F | Fail |
| h3 Acessibilidade | 3.83:1 | 3.0:1 | #000000 | #CF163B | Pass |
| h3 Talvez seja do seu i… | 1.55:1 | 3.0:1 | #000000 | #2E2E2F | Fail |
| h3 Confira algumas das … | 1.55:1 | 3.0:1 | #000000 | #2E2E2F | Fail |
| h3 Automóveis | 1.55:1 | 3.0:1 | #000000 | #2E2E2F | Fail |
| h3 Imóveis | 1.55:1 | 3.0:1 | #000000 | #2E2E2F | Fail |
| h3 Caminhões e tratore… | 1.55:1 | 3.0:1 | #000000 | #2E2E2F | Fail |
| h3 Moto | 1.55:1 | 3.0:1 | #000000 | #2E2E2F | Fail |
| span Acessar sua conta | 3.38:1 | 4.5:1 | #000000 | #B81570 | Fail |
| label Agência: | 4.37:1 | 4.5:1 | #000000 | #CF3372 | Fail |
| label Conta: | 6.20:1 | 4.5:1 | #000000 | #EE566F | Pass |
| label Dígito: | 5.60:1 | 4.5:1 | #000000 | #E84A65 | Pass |
| label Lembrar-me | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Como usar | 10.37:1 | 4.5:1 | #000000 | #ECA2B1 | Pass |
| span Acessibilidade | 3.83:1 | 4.5:1 | #000000 | #CF163B | Fail |
Methodology: The top 20 text elements by font size were checked. Background color was sampled from the desktop screenshot using a 5-point pattern. WCAG 2.1 AA requires 4.5:1 for normal text and 3:1 for large text.
AHeading Text Quality1 heading-text-quality issue(s) detectedPASS
A+Form Input Types9 form control(s) checked, no type mismatchesPASS
A+Form Input Quality9 form control(s) checked, no input-semantic issuesPASS
A+Mobile Keyboard & AutofillNo autofill-eligible form controlsPASS
A+Document LanguageLang attribute set to "PT-BR"PASS
A+Iframe AccessibilityAll 1 iframe(s) have descriptive titlesPASS
A+Tap Target AdequacyAll tap targets meet WCAG 2.5.5/2.5.8 sizingPASS
A+PWA DepthNo PWA depth issues detectedPASS
A+Mobile UX Depth1 mobile-depth signal(s) detectedPASS
ALighthouse Accessibility AuditsScore 92/100 — 4 failing, 27 passedPASS
Accessibility
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
ARIA
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
App Bradesco
Experimente uma
vida mais prática div.carrossel-destaques > div.slick-list > div.slick-track > div.destaque |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Names and labels
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
li#info-2 > ul.footer__info-atendimento > li > a li#info-2 > ul.footer__info-atendimento > li > a |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Best practices
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Ok body > header.header > div.header__mobile > a.header__mobile-button |
PREFERÊNCIA COOKIES nav > ul > li > a |