:root {
    --a10e-primary-color: #005de9;
    --a10e-background-color: #ffffff;
    --a10e-text-color: #1d2327;
    --a10e-border-color: #e0e0e0;
    --a10e-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Estilos do Widget (sem alterações) */
.a10e-widget-container {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2147483646;
}

/* ESTE É O BLOCO DE CSS RESPONSÁVEL POR FAZER O BOTÃO SUMIR VISUALMENTE */

#a10e-widget-container.a10e-widget-hidden {
    opacity: 0; /* Deixa transparente */
    visibility: hidden; /* Esconde e impede o clique */
    transform: scale(0.8); /* Efeito de encolher */
    transition: all 0.3s ease;
}

.a10e-trigger-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--a10e-primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--a10e-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.a10e-trigger-button:hover {
    transform: scale(1.1);
}

#a10e-trigger-button i {
    font-size: 28px;
    color: white;
    line-height: 1;
}

.a10e-toolbar-button i {
    font-size: 24px;
    color: #444;
    line-height: 1;
}

.a10e-options-panel {
    position: absolute;
    bottom: -150px;
    left: calc(100% + 15px);
    width: 320px;
    background-color: var(--a10e-background-color);
    border-radius: 12px;
    box-shadow: var(--a10e-shadow);
    border: 1px solid var(--a10e-border-color);
    overflow: hidden;
    transform-origin: left center;
    transform: scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s;
}

.a10e-widget-container.a10e-is-open .a10e-options-panel {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.a10e-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--a10e-border-color);
    background-color: #f9f9f9;
}

.a10e-panel-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--a10e-text-color);
}

.a10e-close-button {
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    padding: 0 5px;
}

.a10e-panel-body {
    padding: 20px;
}

.a10e-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.a10e-option-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.a10e-toolbar-button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--a10e-border-color);
    border-radius: 8px;
    background: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.a10e-toolbar-button:hover {
    background-color: #f0f0f1;
    border-color: var(--a10e-primary-color);
}

.a10e-option-group {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.a10e-option-label {
    font-size: 13px;
    color: #50575e;
    margin-top: 8px;
}

.a10e-option-group .a10e-option-label {
    margin: 0 10px;
    text-align: center;
    flex-grow: 1;
}

.a10e-reset-button {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dcdcde;
    background: #f6f7f7;
    color: #50575e;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.a10e-reset-button:hover {
    background-color: #f0f0f1;
}

/* --- SEÇÃO DE ACESSIBILIDADE GERAL --- */

html.a10e-grayscale {
    filter: grayscale(100%);
}

body.a10e-readable-font {
    font-family: 'Lexend', sans-serif !important;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

body.a10e-underline-links a {
    text-decoration: underline !important;
}

body.a10e-text-spacing-active {
    letter-spacing: 0.1em !important;
    word-spacing: 0.2em !important;
    line-height: 1.8 !important;
}


/* =========================================================
   MODO DE ALTO CONTRASTE — ACESSIBILIDADE WCAG 2.1 AA/AAA
========================================================= */

/* 1. Variáveis principais */
body.a10e-high-contrast {
  --hc-bg: #000000;
  --hc-surface: #1f1f1f;
  --hc-text: #ffffff;
  --hc-accent: #ffff00;
  --hc-border: #777777;
  --hc-focus: #00ffff;
}

/* 2. Base da página */
body.a10e-high-contrast {
  background-color: var(--hc-bg) !important;
  color: var(--hc-text) !important;
  line-height: 1.6 !important;
  letter-spacing: 0.02em !important;
}

/* 3. Remoção de efeitos visuais */
body.a10e-high-contrast *,
body.a10e-high-contrast *::before,
body.a10e-high-contrast *::after {
  box-shadow: none !important;
  text-shadow: none !important;
  background-image: none !important;
  transition: none !important;
}

/* 4. Estrutura Elementor */
body.a10e-high-contrast .elementor-section,
body.a10e-high-contrast .elementor-container,
body.a10e-high-contrast .elementor-column,
body.a10e-high-contrast .elementor-widget,
body.a10e-high-contrast .elementor-widget-wrap,
body.a10e-high-contrast .elementor-column-wrap {
  background-color: var(--hc-surface) !important;
  border: 1px solid var(--hc-border) !important;
}

/* 5. Motion Effects e camadas */
body.a10e-high-contrast .elementor-element > .elementor-motion-effects-container > .elementor-motion-effects-layer,
body.a10e-high-contrast .elementor-element:not(.elementor-motion-effects-element-type-background) {
  background-color: var(--hc-bg) !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  transform: none !important;
}

/* 6. Texto e títulos */
body.a10e-high-contrast p,
body.a10e-high-contrast span,
body.a10e-high-contrast li,
body.a10e-high-contrast h1,
body.a10e-high-contrast h2,
body.a10e-high-contrast h3,
body.a10e-high-contrast h4,
body.a10e-high-contrast h5,
body.a10e-high-contrast h6 {
  background-color: transparent !important;
  color: var(--hc-text) !important;
}

/* 7. Links padrão */
body.a10e-high-contrast a {
  color: var(--hc-accent) !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
}

/* 8. Links em hover/focus — corrigido */
body.a10e-high-contrast a:hover,
body.a10e-high-contrast a:focus {
  background-color: var(--hc-accent) !important;
  color: var(--hc-bg) !important;
  text-decoration: underline !important;
  font-weight: 700 !important;
}

/* 9. Spans dentro de links — corrigido */
body.a10e-high-contrast a:hover span,
body.a10e-high-contrast a:focus span {
  color: var(--hc-bg) !important;
}

/* 10. Submenus — corrigido */
body.a10e-high-contrast .sub-menu.elementor-nav-menu--dropdown,
body.a10e-high-contrast .elementor-sub-item.menu-link {
  background-color: var(--hc-surface) !important;
  color: var(--hc-text) !important;
  border: none !important;
}
body.a10e-high-contrast .elementor-sub-item.menu-link:hover,
body.a10e-high-contrast .elementor-sub-item.menu-link:focus {
  background-color: var(--hc-accent) !important;
  color: var(--hc-bg) !important;
}

/* 11. Imagens dentro de links — fundo amarelo */
body.a10e-high-contrast a img,
body.a10e-high-contrast .elementor-widget-image a img {
  background-color: var(--hc-accent) !important;
  padding: 4px !important;
  border: 2px solid var(--hc-border) !important;
  box-sizing: border-box !important;
  display: inline-block !important;
}

/* 12. Imagens específicas — reforço */
body.a10e-high-contrast .elementor-element.elementor-element-6d841ab img,
body.a10e-high-contrast .elementor-element.elementor-element-5db06ed img,
body.a10e-high-contrast .elementor-element.elementor-element-1a4dc30 img,
body.a10e-high-contrast .elementor-element.elementor-element-bf65519 img {
  background-color: var(--hc-accent) !important;
  padding: 4px !important;
  border: 2px solid var(--hc-border) !important;
  box-sizing: border-box !important;
}

/* 13. Ícones SVG interativos */
body.a10e-high-contrast .elementor-icon-list-icon svg:hover {
  background-color: red!important;
  padding: 6px !important;
  border-radius: 4px !important;
  fill: var(--hc-bg) !important;
  stroke: var(--hc-bg) !important;
}

/* 14. Hover e foco em imagens e ícones */
body.a10e-high-contrast a:hover img,
body.a10e-high-contrast a:focus img,
body.a10e-high-contrast .elementor-icon-list-icon:hover svg,
body.a10e-high-contrast .elementor-icon-list-icon:focus svg {
  outline: 3px solid var(--hc-focus) !important;
  outline-offset: 2px !important;
}

/* 15. Texto dentro de ícones */
body.a10e-high-contrast .elementor-icon-list-text {
  color: var(--hc-text) !important;
}
body.a10e-high-contrast a:hover .elementor-icon-list-text,
body.a10e-high-contrast a:focus .elementor-icon-list-text {
  color: var(--hc-bg) !important;
  background-color: var(--hc-accent) !important;
}

/* 16. Botões e campos */
body.a10e-high-contrast .elementor-button,
body.a10e-high-contrast button,
body.a10e-high-contrast input,
body.a10e-high-contrast textarea,
body.a10e-high-contrast select {
  background-color: var(--hc-surface) !important;
  border: 2px solid var(--hc-accent) !important;
  color: var(--hc-text) !important;
  border-radius: 4px !important;
  padding: 0.6em 1.2em !important;
  font-weight: 600 !important;
}
body.a10e-high-contrast .elementor-button:hover,
body.a10e-high-contrast button:hover {
  background-color: var(--hc-accent) !important;
  color: var(--hc-bg) !important;
}

/* 17. Foco visível */
body.a10e-high-contrast :focus-visible {
  outline: 3px solid var(--hc-focus) !important;
  outline-offset: 2px !important;
  border-radius: 4px !important;
}

/* 18. Tabelas */
body.a10e-high-contrast table {
  border-collapse: collapse !important;
  background-color: var(--hc-surface) !important;
  color: var(--hc-text) !important;
}
body.a10e-high-contrast th,
body.a10e-high-contrast td {
  border: 1px solid var(--hc-border) !important;
  padding: 8px 10px !important;
}

/* 19. Mídia */
body.a10e-high-contrast img,
body.a10e-high-contrast video,
body.a10e-high-contrast svg {
  filter: grayscale(100%) contrast(100%) brightness(110%) !important;
}

/* 20. Ícones SVG genéricos */
body.a10e-high-contrast svg path,
body.a10e-high-contrast svg rect,
body.a10e-high-contrast svg circle {
  fill: var(--hc-text) !important;
  stroke: var(--hc-text) !important;
}

/* 21. Alertas */
body.a10e-high-contrast .elementor-alert,
body.a10e-high-contrast .alert,
body.a10e-high-contrast .notice {
  background-color: var(--hc-bg) !important;
  border-left: 4px solid var(--hc-accent) !important;
  padding: 1em !important;
  color: var(--hc-text) !important;
}

/* 


