/* 
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 */

.autocomplete-suggestions {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: -1px;
    font-size: 14px;
    top: 100%;
    left: 0;
}

.autocomplete-suggestion {
    padding: 10px 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.autocomplete-suggestion:hover {
    background-color: var(--e-global-color-accent); /* dourado */
    color: #000;
}

.no-results {
    padding: 10px 14px;
    color: #666;
    font-style: italic;
    background-color: #f8f8f8;
}

/* Estilo do spinner opcional */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid #ccc;
    border-top: 3px solid #FFD700;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.grecaptcha-badge {
    display: none!important;
}