/*okta neue thin 100*/
@font-face {
    font-family: 'Okta Neue';
    src: url('fonts/OktaNeue-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/*okta neue extralight 200*/
@font-face {
    font-family: 'Okta Neue';
    src: url('fonts/OktaNeue-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/*okta neue light 300*/
@font-face {
    font-family: 'Okta Neue';
    src: url('fonts/OktaNeue-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/*okta neue regular 400*/
@font-face {
    font-family: 'Okta Neue';
    src: url('fonts/OktaNeue-Regular.woff2') format('woff2');
    font-weight: 400; /*normal*/
    font-style: normal;
    font-display: swap;
}

/*okta neue medium 500*/
@font-face {
    font-family: 'Okta Neue';
    src: url('fonts/OktaNeue-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/*okta neue semibold 600*/
@font-face {
    font-family: 'Okta Neue';
    src: url('fonts/OktaNeue-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/*okta neue bold 700*/
@font-face {
    font-family: 'Okta Neue';
    src: url('fonts/OktaNeue-Bold.woff2') format('woff2');
    font-weight: 700; /*bold*/
    font-style: normal;
    font-display: swap;
}

/*okta neue heavy 800*/
@font-face {
    font-family: 'Okta Neue';
    src: url('fonts/OktaNeue-Heavy.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/*okta neue black 900*/
@font-face {
    font-family: 'Okta Neue';
    src: url('fonts/OktaNeue-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}



/*variaveis de cor*/
:root {
    --cor-destaque: #FFDD02; 
    --cor-secundaria: #1a5131; 
    --cor-terciaria: #b7e001;
    --cor-texto: #333333;
    --cor-fundo: white; 

}


html {
    /*deixa a rolagem suave, fica mais elegante*/
    scroll-behavior: smooth; 
}

section {
    /*isso cria uma margem invisivel no topo de cada secao ao rolar*/
    /*ajuste o valor 100px para o tamanho exato do seu menu*/
    scroll-margin-top: 100px; 
}
        
/*caso queira garantir para todos os ids especificamente*/
#lojas, #catalogo, #quem-somos, #fale-conosco {
    scroll-margin-top: 110px; /*um pouco mais de espaco para respiro*/
}

/*reset e base*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Okta Neue', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    
    color: var(--cor-texto); 
    background: var(--cor-fundo);
    overflow-x: hidden;
}

img { 
    max-width: 100%;
}

a {
    text-decoration: none;
}

span{
    color: var(--cor-secundaria);
    font-weight: 700;
}

/*cabecalho*/
header {
    background: var(--cor-fundo);
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.div-btn-header-pagina{
    display: none;
}
.logo img{
    width: 20dvw;
}
.botoes-contato {
    display: flex;
    gap:1rem;
    position: relative;
    }

    .botoes-contato a {
    background: var(--cor-fundo);
    color: var(--cor-secundaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s;
    }

/*hero section*/
.hero {
    background-image: url('../images/banner-mobile-chips-ouro-verde.png');
    background-size: cover;    /* Faz a imagem cobrir tudo */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Impede que a imagem se repita */
    height: 80vh;             /* Garante que o corpo tenha a altura da tela */
    margin: 0;    
}
.logo-hero {
    display: flex;
    justify-content: center;
    margin: 0 auto 0px auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}
.logo-hero img{
    height: 30dvh;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

.hero-title span{
    color: var(--cor-destaque);
}

.hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
}
.hero h2{
    color: var(--cor-destaque);
    font-size: 1.3rem;
    gap: 0;
}
.hero p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.bt-1compra{
    display:none;
}
.div-btn-cta{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    height: 100%;
    flex-direction: column;
    padding-bottom: 30px;
    gap: 1rem;
}

.btn-cta {
    background: var(--cor-destaque);
    color: rgb(46, 35, 0);
    padding: 9px 12px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 195, 1, 0.4);
    transition: all 0.3s ease;
    line-height: 1.3;
    text-align: center;
    width: 85dvw;
}
.btn-cta:active { transform: scale(0.95); }
.btn-cta:hover { 
    background: #ffcd2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 195, 1, 0.6);
}

/*beneficios estilo mobile first*/
/*beneficios estilo mobile first lado a lado*/
.benefits {
    padding: 10px 15px; /*padding lateral menor pra ganhar espaco*/
    text-align: center;
    background: white;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.benefits-grid {
    display: grid;
    /*mudanca aqui 2 colunas no celular*/
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; /*espaco menor entre eles*/
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*opcional fundo leve pra delimitar o item no celular*/
    padding: 10px; 
}

/*estilo do icone*/
.icon-box {
    font-size: 2rem; /*icone um pouco menor no mobile*/
    color: var(--cor-secundaria);
    margin-bottom: 10px;
    background: var(--creme);
    width: 60px; /*bolinha um pouco menor*/
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.benefit-item h3 {
    font-size: 1rem; /*titulo ajustado*/
    margin-bottom: 5px;
    color: var(--texto);
    line-height: 1.2;
}

.benefit-item p { 
    font-size: 0.8rem; /*texto descritivo menor*/
    color: #666;
    line-height: 1.3;
}

/*computador vira 4 colunas mantido*/
@media (min-width: 1024px) {
    .benefits {
        border-radius: 30px;
        margin-left: 40px;
        margin-right: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        padding: 50px 20px;
        margin: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .icon-box {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .benefit-item h3 { font-size: 1.1rem; }
    .benefit-item p { font-size: 0.9rem; }
}



/*secao quem somos*/
.about-us {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 20px;
    background: #fff; /*fundo branco para contraste com secoes cremes*/
    text-align: center;
}

.about-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
    margin-top: -5px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--cor-texto);
    margin-bottom: 20px;
    text-align: justify; /*texto justificado para visual de jornallivro*/
}

/*destaques no texto*/
.about-text strong {
    color: var(--cor-secundaria);
    font-weight: 700;
}

/*grid de estatisticas*/
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: 'Okta Neue';
    font-size: 2.5rem;
    color: var(--cor-destaque); /*amarelo*/
    font-weight: 700;
    line-height: 1;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

.stat-desc {
    font-size: 12px;
    font-weight: 600;
    color: var(--cor-secundaria); /*verde*/
    text-transform: uppercase;
    margin-top: 5px;
    line-height: 1.2;
}

/*ajuste mobile se a tela for muito pequena*/
@media (max-width: 350px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/*produtos*/
.products {
    background: var(--cor-fundo);
    padding: 40px 20px;
    text-align: center;
}

.span{
    color: var(--cor-terciaria);
    font-weight: 700;
}
.section-title {
    color: var(--cor-secundaria);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Okta Neue';
    font-weight: 700;
    text-align: center;
}
.catalog-box {
    background: white;
    padding: 20px 10px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.btn-cta-catalogo{
    text-decoration: none;
    color: var(--cor-texto);
    background-color: var(--cor-destaque);
    padding: 20px 40px;
    border-radius: 40px;
    text-align: center;
    font-size: 1.3rem;
    font-weight:700;
    transition: transform 0.5s ease;
}

.btn-cta-catalogo:hover { 
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.div-btn-catalogo{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-outline {
    border: 2px solid var(--cor-secundaria);
    color: var(--cor-secundaria);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.2s;
}
.btn-outline:hover {
    background: var(--cor-secundaria);
    color: white;
}


/*mapa*/
.store-locator {
    padding: 40px 20px;
    background: white;
}
.map-wrapper {
    position: relative;
    height: 100dvh; /*altura dinamica*/
    max-height: 500px; /*limite para nao ficar gigante em tabletpc*/
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
#map { height: 100%; width: 100%; }

.map-search {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    z-index: 500;
    display: flex;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    border-radius: 30px;
    background: white;
}
.map-search input {
    flex: 1;
    border: none;
    padding: 10px 10px 10px 20px;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}
.map-search button {
    background: var(--cor-secundaria);
    border: none;
    width: auto;
    border-radius: 0 30px 30px 0;
    color: white !important;
    cursor: pointer;
    padding: .7rem;
}
.map-search button i{
    font-size: 1.3rem;
}
.result-card {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px;
    border-radius: 15px;
    width: 90%;
    text-align: center;
    z-index: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: none;
}

/*autocomplete css*/
.sugestoes-dropdown {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 50px;
    background: white;
    list-style: none;
    padding: 0;
    display: none; 
    margin: 5px 0 0 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 260px;
    overflow-y: auto;
    scroll-behavior: smooth;
}
.sugestoes-dropdown[style*="block"] {
    padding: 5px 0;
}
.sugestoes-dropdown::-webkit-scrollbar { width: 6px; }
.sugestoes-dropdown::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

.sugestoes-dropdown li {
    padding: 12px 15px;
    cursor: pointer;
    font-size: 13px;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sugestoes-dropdown li:hover {
    background-color: #f0f9f4;
    color: var(--cor-secundaria);
}

/*secao fale conosco b2b style*/

.contact-section {
    padding: 40px 20px;
    background-color: var(--cor-fundo);
    position: relative;
}

.contact-section .section-title {
    text-align: center;
    color: var(--cor-secundaria);
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 700;
}

/*o container principal a caixa que segura tudo*/
.contact-wrapper {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08); /*sombra elegante*/
    overflow: hidden; /*arredonda os filhos*/
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /*mobile um em cima do outro*/
}

/*coluna esquerda verde*/
/*coluna esquerda verde renovada*/
.contact-info {
    background-color: var(--cor-secundaria); /*verde da marca*/
    color: var(--cor-texto);
    padding: 30px 20px;
    position: relative;
    display: flex;
    align-items: center; /*centraliza verticalmente*/
}

.info-text span{
    color: white;
}

/*padrao de fundo sutil opcional, da um charme*/
.contact-info::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.info-content {
    position: relative;

    width: 100%;
}

.contact-info h3 {
    font-family: 'Okta Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 800; /*bem grosso*/
    color: var(--cor-destaque);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 90%;
    color:rgb(254, 249, 231)
}

/*lista de contatos*/
.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

/*efeito ao passar o mouse no item*/
.info-item:hover {
    transform: translateX(10px);
}

/*bolinha do icone*/
.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15); /*branco transparente*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}


/*destaque para o whatsapp ao passar mouse*/
.info-item:hover .icon-circle {
    color: var(--verde);
}
.info-item:hover .icon-circle i {
    color: var(--verde);
}

/*textos do item*/
.info-text {
    display: flex;
    flex-direction: column;
}

.info-text small {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.info-text span {
    font-size: 1rem;
    font-weight: 600;
}

/*area social no final*/
.contact-social {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-social span {
    font-size: 0.9rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 60px; 
    height: 60px;
    background: rgba(0,0,0,0.2);
    padding: 10px;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: var(--amarelo);
    color: black;
}

/*lista de icones e textos*/
.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.3s;
}

.info-item:hover { transform: translateX(10px); }

.info-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--cor-destaque); /*icone amarelo*/
}

/*redes sociais internas*/
.contact-social {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    position: relative;
    
}
.contact-social a {
    background: white;
    color: var(--cor-secundaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.contact-social a:hover {
    background: var(--cor-destaque);
    color: black;
    transform: translateY(-3px);
}

/*coluna direita formulario*/
.contact-form {
    padding: 50px 40px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-title {
    color: var(--cor-secundaria);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: none; /*esconde titulo duplicado no mobile*/
}

/*inputs e labels*/
.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cor-texto);
}

.input-group input, 
.input-group textarea {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #f8f9fa;
    font-family: inherit;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: all 0.3s;
    width: 100%;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--cor-secundaria);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(22, 145, 82, 0.1);
}

/*grid para inputs lado a lado*/
.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*botao enviar*/
.btn-submit {
    margin-top: 10px;
    background: var(--cor-destaque);
    color: black;
    border: none;
    padding: 18px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 195, 1, 0.3);
}

.btn-submit:hover {
    background: #ffcd2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 195, 1, 0.5);
}

/*media queries tablet desktop*/
@media (min-width: 900px) {
    .contact-wrapper {
        flex-direction: row; /*coloca lado a lado no pc*/
        min-height: 600px; /*altura minima para ficar bonito*/
    }

    .contact-info {
        flex: 1; /*ocupa 40*/
        padding: 60px;
    }

    .contact-form {
        flex: 1.4; /*ocupa 60*/
        padding: 60px;
        justify-content: center;
    }

    .form-title { display: block; }

    .form-row {
        flex-direction: row; /*inputs na mesma linha*/
    }
    
    /*faz os inputs dentro da row dividirem o espaco*/
    .form-row .input-group {
        flex: 1; 
    }
}

/*secao prova social*/
.social-proof {
    padding: 60px 20px;
    background: #f9f9f9; /*fundo levemente diferente pra separar*/
    text-align: center;
}

.social-proof .section-title {
    color: var(--verde);
    margin-bottom: 40px;
}

/*grid das avaliacoes*/
.reviews-grid {
    display: grid;
    /*comeca com 1 coluna no mobile*/
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/*cartao da avaliacao onde fica o print*/
.review-card {
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px); /*efeito de subir ao passar mouse*/
}

/*ajuste da imagem do print*/
.review-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain; /*garante que o print nao distorca*/
}

/*rodape da secao badge google*/
.google-badge {
    margin-top: 40px;
    display: inline-block;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid #eee;
}

.google-badge p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

.google-badge .stars {
    color: var(--amarelo);
    font-size: 1.2rem;
    letter-spacing: 3px;
}

/*versao desktop*/
@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr); /*3 colunas lado a lado*/
    }
}

/*footer*/
footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 30px 20px 80px 20px;
    font-size: 14px;
}

/*estilo base para todos os botoes flutuantes*/
.float-btn {
    right: 20px;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 2000;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.botoes-contato {
    display: flex;
    flex-direction: row;
    gap: 10px;
    
}

.botoes-contato a:hover {
    background: var(--cor-destaque);
    color: black;
    transform: translateY(-3px);
}

/*animacao de pulsacao*/
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/*alteracoes para telas grandes*/

/*telas 1024*/
@media (min-width: 1024px) {
    
    header {
        padding: 15px 40px;
    }

    a{
        text-decoration: none;
        font-family: 'Okta Neue';
        font-size: 1.3rem;
        font-weight: 900;
        color: #50551D;
    }

    .logo img {
        width: auto;  
        height: 60px;   
    }


    .div-btn-header-pagina{
        display: flex;
        gap:50px;
    }

    .btn-header {
        font-size: 1rem;
        cursor: pointer;
    }

    .hero {
        background-image: url(../images/banner-oficial.png);
        height: fit-content;
        background-position: top center;
        position: relative;
        padding: 80px 20px;
        border-radius: 0 0 50px 50px; 
        min-height: 500px; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        aspect-ratio: 3168/1344;
    }

    .hero h1, .hero span{
        display:none;
    }

    .logo-hero{
        display: none;
    }

    .hero-title{
        display: none;
    }

    .div-btn-catalogo{
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .btn-cta{
        font-size: 1.5rem;
        width: auto;
    }

    .bt-1compra{
        display:block;
    }

    .div-btn-cta {
        display: flex;
        left: 4%;
        bottom: 15%;
        position: absolute;
        gap: 1.5rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    .benefits {
        margin-left: 60px;
        margin-right: 60px;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr); 
        gap: 30px;
    }

    .icon-box {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    /**nossos sabores*/
    #catalogo img{
        width: 50dvw;
    }

    
    .about-content {
        max-width: 900px; 
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        
    }

    
    .contact-section {
        padding: 80px 40px;
        background-color: var(--cor-fundo);
    }

    .contact-wrapper {
        flex-direction: row;
        max-width: 1200px; 
        margin: 0 auto;
        min-height: 550px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

    
    .contact-info {
        flex: 1;
        padding: 60px;
        justify-content: center;
    }

    .contact-info h3 {
        font-size: 2rem;
    }

   
    .contact-form {
        flex: 1.5; 
        padding: 60px;
        justify-content: center;
    }

    .form-title {
        display: block;
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    
    .form-row {
        flex-direction: row;
        gap: 20px;
    }

    .form-row .input-group {
        flex: 1; 
    }

    
    .botoes-contato {
    display: flex;
    gap: 15px;
    position: relative;
    }

    .botoes-contato a {
    background: white;
    color: var(--cor-secundaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s;
    width: 45px;
    height: 45px;
    }

    

    .products{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 1400px) {
    .catalog-container, 
    .contact-wrapper,
    .reviews-grid,
    .benefits-grid {
        max-width: 1400px;
    }

    .hero h1 { font-size: 3.5rem; }
    .hero p { font-size: 1.3rem; }

    .products {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }



#map img,
.leaflet-pane img,
.leaflet-tile-container img,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile {
    max-width: none !important;
    max-height: none !important;
    width: auto;
    padding: 0;
    margin: 0;
    
    display: inline-block !important; 
    
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

.leaflet-container {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}
}