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

/* Estilo da etiqueta da Bodega nos cards */
.etiqueta-bodega {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #b1945c; /* Tom dourado/bronze para elegância */
    margin-bottom: 8px;
    font-family: inherit;
}

/* Ajuste opcional para centralizar se o seu card for centralizado */
.elementor-widget-container {
    text-align: center;
}




/* Container do Menu */
.menu-container {
    position: relative;
    width: 100%;
}

/* Botão Mobile */
.menu-toggle {
    display: none;
    background: #333;
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
}

.menu-toggle .menu-icon {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #fff;
    position: relative;
    margin-right: 10px;
}

.menu-toggle .menu-icon:before,
.menu-toggle .menu-icon:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    left: 0;
}

.menu-toggle .menu-icon:before {
    top: -6px;
}

.menu-toggle .menu-icon:after {
    bottom: -6px;
}

.menu-toggle.active .menu-icon {
    background: transparent;
}

.menu-toggle.active .menu-icon:before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .menu-icon:after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Menu Desktop */
.responsive-menu {
    background: #f5f5f5;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.menu-list li {
    position: relative;
}

.menu-list a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.menu-list a:hover {
    background: #e0e0e0;
}

/* Submenu */
.menu-list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    min-width: 200px;
    z-index: 1000;
}

.menu-list li:hover > .sub-menu {
    display: block;
}

.menu-list .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

/* Responsivo - Mobile */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .responsive-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f5f5f5;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .responsive-menu.active {
        display: block;
    }
    
    .menu-list {
        flex-direction: column;
    }
    
    .menu-list li {
        width: 100%;
    }
    
    .menu-list .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .menu-list li.active > .sub-menu {
        display: block;
    }
}