/* WhatsApp Floating Button consolidated in stylewhats.css */	





/* Estilo para a galeria */

.galeria {

    display: grid; /* Layout em grid */

    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Define as colunas */

    gap: 1px; /* Espaçamento entre os itens */

}



/* Estilo para as imagens */

.galeria img {

    width: 100%; /* Preenche completamente o elemento pai */

    height: 200px; /* Altura fixa para padronizar */

    object-fit: cover; /* Ajusta a imagem, cortando para preencher sem distorcer */

    border-radius: 5px; /* Cantos arredondados (opcional) */

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra leve (opcional) */

    transition: transform 0.3s ease; /* Animação ao passar o mouse */

}



/* Efeito ao passar o mouse */

.galeria img:hover {

    transform: scale(1.05); /* Aumenta levemente ao passar o mouse */

}



/* Custom styles from index.html */

#aviso-container {

    position: fixed;

    top: 70px;

    left: 10px;

    background-color: #f28c28;

    color: #000;

    font-weight: bold;

    padding: 12px 18px;

    border-radius: 8px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);

    display: none;

    z-index: 9999;

    max-width: 320px;

}



#aviso-container button {

    position: absolute;

    top: 4px;

    right: 6px;

    background: none;

    border: none;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    color: #000;

    text-align: center;

}



body input::-webkit-input-placeholder {

    color: #3e4d5c ;

}

body input::-moz-placeholder {

    color: #3e4d5c ;

}

body input:-ms-input-placeholder {

    color: #3e4d5c ;

}

input::-ms-input-placeholder {

    color: #3e4d5c ;

}



select {

    width: 100%;

    padding: 10px;

    margin-bottom: 12px;

    border: 1px solid #ccc;

    border-radius: 4px;

    font-size: 15px;

    box-sizing: border-box;

    background-color: #fff;

    appearance: none;

    -webkit-appearance: none;

    -moz-appearance: none;

}



@media (max-width: 767px) {

    body .background-image-wrapper {

        background-image: none ;

    }

}



/* Contrast Fixes */
.text-color-light, .text-color-dark { filter: contrast(1.2); }
body .btn.btn-secondary { background-color: #c85a00; border-color: #c85a00; }

/* Extracted from index.html inline styles */
.gtm-iframe { display: none; visibility: hidden; }
.success-msg-container { display: none; text-align: center; padding: 20px; position: relative; }
.success-icon { font-size: 4em; color: #25D366; margin-bottom: 20px; }
.whatsapp-icon-large { font-size: 1.2em; }
.whatsapp-icon-xl { font-size: 1.5em; }
.bg-hero-container { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../imgs/container-fundo.webp') center/cover no-repeat !important; }
.h-800px { height: 800px; }
.img-fluid-auto { max-width: 100%; height: auto; }
.img-fluid-max { max-width: 100%; }
.text-white-custom { color: white; }
.text-orange-custom { color: #fd8a23; }
.bg-gray-custom { background-color: #d1d4d7; }
.text-dark-semibold { color: #444; font-weight: 600; }
.text-brown-custom { color: #c85a00; }
.text-brown-bold { color: #c85a00; font-weight: bold; }
.list-item-desc { margin-left: 7%; font-size: .8em; }
.trust-box { background: #fff7ef; padding: 20px 25px; border-radius: 12px; border-left: 6px solid #fd8a23; color: #c85a00; font-size: 1.2rem; line-height: 1.5; max-width: 900px; }
.title-products { color: #fd8a23; font-size: 3.2em; line-height: normal; }
.text-gray-desc { color: #555; }
.bg-white-custom { background-color: #ffff; }
.img-cover-300 { width: 100%; height: 300px; object-fit: cover; object-position: center; }
.text-none-transform { text-transform: none; }
.img-contain-4-3 { aspect-ratio: 4/3; object-fit: contain; }
.aviso-msg { text-align: center; color: #000; margin-top: 10px; }


/* Centralizar imagens de parceiros no carrossel */
.custom-testimonial-style-1 img {
    margin: 0 auto;
    display: block;
}


/* Padronizar tamanho das miniaturas das galerias dos produtos */
.galeria img {
    aspect-ratio: 4/3;
    object-fit: cover;
}
