/* Estilos para o VLibras */
.vw-plugin-top-wrapper {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .vw-plugin-top-wrapper {
        right: 10px;
        bottom: 10px;
    }
}

/* Estilo do botão de acesso */
.vw-access-button {
    background-color: #0056b3 !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
}

.vw-access-button:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Estilo do ícone */
.vw-access-button::before {
    content: "👋" !important;
    font-size: 24px !important;
}

/* Ajuste para modo de alto contraste */
.contrast .vw-access-button {
    background-color: #000 !important;
    border: 2px solid #fff !important;
} 