/*
Theme Name: DREAMONE
Theme URI: https://dreamone.com.br/
Author: DreamOne
Author URI: https://dreamone.com.br/
Description: MARKETING INTEGRADO
Version: 2025
*/
/* GERAL */
.grecaptcha-badge, .recaptcha_v3-inline {
    display: none !important;
}
.jet-engine-frontend-query-editor-buttons {
    display: none !important;
}
:focus {
	outline: 0 !important;
}
.elementor-search-form--skin-minimal:focus-within {
	outline: 0 !important;
}
.comments-area a,.page-content a {
	text-decoration: inherit !important;
}
/* Estilo base do botão */
.whatsapp-button {
   position: fixed;
   bottom: 20px;
   right: 20px;
   z-index: 9999;
   background: none;
   border: none;
   padding: 0;
   display: flex;
   justify-content: center;
   align-items: center;
}

/* Imagem base */
.whatsapp-icon {
   height: auto;
   display: block;
   box-shadow: none;
   border: none;
   background: none;
   transition: transform 0.3s ease;
}

/* Hover opcional */
.whatsapp-button:hover .whatsapp-icon {
   transform: scale(1.05);
}

/* Mostra imagem desktop */
.whatsapp-icon.desktop {
   display: block;
}

/* Oculta no mobile */
.whatsapp-icon.mobile {
   display: none;
}

/* ======= TAMANHOS POR DISPOSITIVO ======= */

/* Desktop (padrão) */
.whatsapp-icon.desktop {
   width: 200px; /* ajuste aqui o tamanho no desktop */
}

/* Mobile */
@media (max-width: 768px) {
   .whatsapp-icon.desktop {
      display: none;
   }
   .whatsapp-icon.mobile {
      display: block;
      width: 80px; /* ajuste aqui o tamanho no mobile */
   }
}

/* FINAL DA PERSONALIZAÇÃO */