/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* Foco de acessibilidade */
a:focus-visible, button:focus-visible, input:focus, input:focus-visible, 
textarea:focus, select:focus, div.jet-filters-pagination__link:focus-visible, div.jet-filters-pagination__link:focus {
  outline: none !important; /* Remove o outline padrão */
  border-color: #007BFF !important; /* Azul para o foco */
  box-shadow: 0 0 0 5px #007BFF !important; /* Sombra azul sem borrão */
  position: relative; /* Necessário para usar z-index */
  z-index: 9999; /* Garante que esteja acima de outros elementos */
}

/* Overlay */
a:focus-visible::before, button:focus-visible::before, 
input:focus::before, input:focus-visible::before, 
textarea:focus::before, select:focus::before  {
  content: ''; /* Adiciona o pseudo-elemento */
  position: absolute; /* Permite posicionamento relativo ao elemento */
  top: 0; left: 0; right: 0; bottom: 0; /* Cobre toda a área do elemento */
  background-color: rgba(0, 123, 255, 0.2); /* Cor azul claro com transparência */
  z-index: -1; /* Coloca atrás do conteúdo do elemento */
  border-radius: inherit; /* Segue o raio de borda do elemento */
}



/*  Animação dos popups */
.dialog-widget {
    opacity: 0; /* Invisível no início */
    animation: fadeIn 0.5s ease-in forwards; /* Define a animação */
}

/* Animação de fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}