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

#collection_product_filter .elementor-field-type-submit,
.none { display: none; }

#collection_product_filter .elementor-field-group {
    flex-wrap: nowrap;
    width: auto;
}

#collection_product_filter select {
    width: 150px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin: 20px 0;
}

.collection-item {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 450px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.collection-item-image {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
    padding: 30px;
	background-color: #494949;
}

.collection-item-image h1 {
    font-family: "Vanila Compressed", sans-serif;
    font-size: 42px;
    font-weight: 800;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    color: #000;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0,0,0,1);
    text-align: center;
    background-color: #FFFFFFB5;
    padding: 30px;
    transition: .2s ease-in-out;
    opacity: 0;
}

.collection-item:hover .collection-item-image {
    filter: brightness(1);
}

.collection-item:hover .collection-item-image h1 {
    opacity: 1;
}

.title-text-shadow h1 {
    stroke: #000;
    -webkit-text-stroke-color: #000;
    text-shadow: 0 1px 3px rgba(0,0,0,1);
}

.product-item-loop-title {
    transition: .4s ease-in-out;
}

.e-loop-item.product:hover .product-item-loop-title {
    bottom: 0 !important;
}

.collection-container-res .elementor-pagination,
.collection-pagination {
    display: flex;
    justify-content: space-between;
}

.collection-pagination button:hover,
.collection-pagination button {
    border: none;
    padding: 0;
    color: #fff;
    background-color: transparent;

/*     font-family: 'Vanila Compressed', sans-serif; */
	font-family: 'Montserrat';
    font-weight: 700;
}

.hf-studio-slider .elementor-swiper-button,
.hf-lab-slider .elementor-swiper-button {
    background-color: #ffffff75;
    border-radius: 1000px;
    padding: 5px;
    opacity: 0.5;
}

.hf-studio-slider .elementor-swiper-button:hover,
.hf-lab-slider .elementor-swiper-button:hover {
    background-color: #ffffff;
    opacity: 1;
}

.single-product-page-collection-title a {
    color: #fff;
}

.single-product-page-fabricante img {
    margin-top: 10px;
    width: min-content;
    max-width: 150px;
}

.single-product-page-origem img {
    margin-top: 10px;
    width: 50px;
}

.diretores-container::before{
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle,
        rgba(200,200,200,0.35) 0%,
        rgba(120,120,120,0.2) 30%,
        rgba(0,0,0,0) 70%
    );

    filter: blur(30px);
    z-index: 0;
}

.collection-bg-header-recoil,
.collection-bg-header {
	background-repeat: no-repeat !important;
    background-size: cover !important;
	background-position: center !important;
}

/* .video-bg-home {
	pointer-events: none;
} */

@media screen and (max-width: 768px) {
    .collection-grid {
        grid-template-columns: 1fr; /* 1 coluna em telas pequenas */
    }
    .collection-item {
        height: 350px;
    }
}