
/* ==========================================================================
    COMPONENTES DE ACESSIBILIDADE (WIDGET) - BOTÃO
   ========================================================================== */
.accessibility-wrapper {
    position: fixed;
    /* top: calc(50% - 70px); */
    top: 140px;
    right: 18px;
    z-index: 9999999999 !important;
}

#acc-trigger {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: white;
    border: none; cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#acc-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: white; padding: 10px;
    border-radius: 8px; border: 1px solid #ddd;
}

#acc-menu.hidden { display: none; }

#acc-menu button {
    padding: 8px; cursor: pointer;
    background: #eee; border: 1px solid #ccc; border-radius: 4px;
}

/* ==========================================================================
   ESTILOS MOBILE DO BOTÃO
   ========================================================================== */
@media screen and (max-width: 968px) {
    .accessibility-wrapper {
        top: auto !important;
        bottom: 20px !important;
        right: 10px !important;
    }

    #acc-trigger {
        width: 38px !important;  /* Tamanho reduzido para celular */
        height: 38px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.4) !important;
    }

    #acc-trigger svg, 
    #acc-trigger i {
        font-size: 18px !important; /* Ícone interno menor */
    }
    
    /* Diminuir um pouco o menu quando aberto no celular */
    #acc-menu {
        padding: 8px !important;
        gap: 5px !important;
    }
    
    #acc-menu button {
        padding: 6px !important;
        font-size: 14px !important;
    }
}