/**
 * Floating Bot Icon - Estilos
 *
 * Posicionado ao lado esquerdo do botão scroll-to-top do tema Astra.
 * O Astra posiciona .ast-scroll-top em: bottom: 20px; right: 20px (~50px de largura).
 * Este ícone fica em: bottom: 20px; right: 75px (5px de margem + 50px do botão Astra + 20px offset).
 */

.floating-bot-icon {
    position: fixed;
    bottom: 20px;
    right: 75px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width e height são definidos via inline style pelo painel admin */
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.floating-bot-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.floating-bot-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-bot-icon:hover {
    transform: scale(1.1);
    opacity: 0.95;
}

/* Ajuste responsivo para mobile: reduz tamanho e garante que não
   sobreponha nenhum elemento nativo do Astra em telas menores. */
@media (max-width: 544px) {
    .floating-bot-icon {
        width: 60px;
        height: 60px;
        bottom: 16px;
        right: 70px;
    }
}
