/* 1. VARIÁVEIS E CONFIGURAÇÕES GLOBAIS */
:root {
    --bralyx-green: #85bb2f;
    --bralyx-dark-green: #a5c12a;
    --dark-bg: #1a1a1a;
    --text-main: #333;
    --border-gray: rgba(189, 189, 189, 0.3);
    --bg-light: #f4f4f4;
    --bg-gray:#f4f3f3;
}

* { box-sizing: border-box; }

body { 
    margin: 0; 
    padding: 0; 
    background: #fff; 
    font-family: 'Inter', 'Roboto', 'Segoe UI', Tahoma, sans-serif; 
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container, .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container { display: flex; align-items: center; justify-content: space-between; }

/* 2. HEADER E BARRAS */
.top-bar { 
    background: var(--bralyx-green); 
    color: #000; 
    padding: 10px 0; 
    text-align: center; 
    font-size: 13px; 
    font-weight: bold; 
    text-transform: uppercase; 
}

.middle-bar { 
    background: #fff; 
    padding: 20px 0; 
    border-bottom: 1px solid var(--border-gray); 
    transition: background 0.3s;
}

/* Modificadores para Home */
.home .middle-bar, .home .main-nav { background: #00000042;}
.home .search-box input { color: #fff; border-bottom-color: #444; padding-left: 5%; }
.home .nav-list a { color: #fff; }
.home header {
    z-index: 999;
    position: relative;
}

/* 3. ELEMENTOS DO HEADER */
.logo img, .logo-sticky img { max-width: 138px; height: auto !important; }

.search-box {
    flex: 1;
    margin: 0 50px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input { 
    width: 100%; 
    background: transparent; 
    border: none; 
    border-bottom: 1px solid #ddd; 
    padding: 8px 0; 
    outline: none; 
    padding-left: 5%;
}

.search-box select {
    border: none;
    border-radius: 0;
    padding: 7px 14px;
    outline: none;
    border-bottom: 1px solid #ddd;
    color: #8c8c8c;
}





.home .sticky-search div#live-search-results-sticky {
    position: fixed;
    top: 50px;
    width: 500px;
    margin-left: -335px;
    right: 0px;
    background: #000;
}

.sticky-search div#live-search-results-sticky {
    position: fixed;
    top: 50px;
    width: 500px;
    margin-left: -335px;
    right: 0px;
    background: #fff;
}


.seta{color: #a2d050;font-size: 12px;padding-left: 100px;}
.boxhero{padding: 25px;width: 350px;}




.search-box { 
    position: relative; 
}

#live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff; /* Fundo Branco */
    border: 1px solid #dddddd; /* Borda Suave */
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Sombra mais leve para fundo claro */
}

.ajax-result-item {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
    text-decoration: none;
    border-bottom: 1px solid #eeeeee; /* Linha divisória clara */
    transition: 0.2s;
}

.ajax-result-item:hover { 
    background: #f8f8f8; /* Cinza bem claro no hover */
}

.ajax-result-item img { 
    width: 45px; 
    height: 45px; 
    object-fit: cover; 
    border-radius: 4px; 
    border: 1px solid #eee;
}

.ajax-result-item .title { 
    display: block; 
    color: #333333; /* Texto escuro para leitura */
    font-size: 13px; 
    font-weight: 600; 
    line-height: 1.2; 
}

.ajax-result-item .type { 
    color: #e31e24; /* Mudei para o vermelho Bralyx ou mantenha o #88d433 se preferir */
    font-size: 10px; 
    text-transform: uppercase; 
    font-weight: 700; 
    margin-top: 3px;
}

.view-all { 
    display: block; 
    padding: 12px; 
    text-align: center; 
    color: #e31e24; /* Texto em destaque */
    font-size: 11px; 
    background: #f9f9f9; 
    text-decoration: none; 
    font-weight: 700; 
    border-radius: 0 0 8px 8px;
}

.view-all:hover {
    background: #eeeeee;
}











.home .search-box { position: relative; }
  .home  #live-search-results {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        border: 1px solid #333;
        border-radius: 0 0 8px 8px;
        z-index: 9999;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
 .home    .ajax-result-item {
        display: flex;
        align-items: center;
        padding: 10px;
        gap: 12px;
        text-decoration: none;
        border-bottom: 1px solid #222;
        transition: 0.2s;
    }
 .home    .ajax-result-item:hover { background: #222; }
  .home   .ajax-result-item img { width: 45px; height: 45px; object-fit: cover; border-radius: 4px; }
  .home   .ajax-result-item .title { display: block; color: #fff; font-size: 13px; font-weight: 600; line-height: 1.2; }
 .home    .ajax-result-item .type { color: #88d433; font-size: 10px; text-transform: uppercase; font-weight: 700; }
  .home   .view-all { display: block; padding: 10px; text-align: center; color: #fff; font-size: 11px; background: #222; text-decoration: none; font-weight: 700; }






.lang-switcher a {
    font-weight: 600;
    font-size: 12px;
    padding: 7px;
    border: solid 1px #33333324;
    margin: 5px;
    color: #333;
    border-radius: 8px;
    text-decoration: none;
}

.home .lang-switcher a {
    font-weight: 600;
    font-size: 12px;
    padding: 7px;
    border: solid 1px #afafaf54;
    margin: 5px;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}

.lang-switcher .active {
    COLOR: #b9d14f!important;
}

/* 4. NAVEGAÇÃO E MENU FIXO (STICKY) */
.main-nav {
    background: #fff;
    width: 100%;
    z-index: 9990;
    position: relative;
    top: 0;
    border-bottom: 1px solid var(--border-gray);
    transition: all 0.4s ease-in-out;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
    justify-content: space-evenly;
}

.nav-list a { 
    color: #444; 
    text-decoration: none; 
    padding: 18px 15px; 
    font-size: 14px; 
    font-weight: 500; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.nav-list a:hover { color: #000; }
.home .nav-list a:hover { color: #999; }


.has-dropdown li:hover {
    background: #fff8f830;
}

.has-dropdown li {
    list-style: none;
}


/* Dropdown */
.has-dropdown { position: relative; }



.dropdown-menu { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: #b9d14f; 
    min-width: 200px; 
    padding: 10px;
    z-index: 1000;
}
.has-dropdown:hover .dropdown-menu { display: block; }

/* Estados do Menu Pinned (Sticky) */
.main-nav.pinned {
    position: fixed;
    background: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: slideDown 0.4s ease-out;
}

.main-nav.pinned .nav-wrapper { justify-content: space-between; padding: 5px 20px; max-width: fit-content;}
.main-nav.pinned .nav-list a { color: #fff; padding: 15px 10px; font-size: 13px; }
.main-nav.pinned .logo-sticky { display: block; margin-right: 5%; }
.main-nav.pinned .logo-sticky img { height: 35px; filter: brightness(0) invert(1); }
.main-nav.pinned .sticky-search, .main-nav.pinned .sticky-langs { display: flex; align-items: center; min-width: 180px; }

/* Escondidos por padrão, mostrados no pinned */
.logo-sticky, .sticky-search, .sticky-langs { display: none; }

.sticky-search { position: relative; margin: 0 20px; flex: 1; max-width: 200px; }
.sticky-search input { 
    width: 100%; background: rgba(255,255,255,0.1); border: 1px solid #444; 
    border-radius: 20px; padding: 5px 15px; color: #fff; outline: none; font-size: 13px; 
}
.sticky-search i { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--bralyx-green); }

.sticky-langs a { color: #fff; text-decoration: none; font-size: 12px; margin: 0 5px; font-weight: bold; }
.sticky-langs a.active { color: var(--bralyx-green); }

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* 5. ÁREA DE CONTEÚDO E BLOG */
.post-container {
    background: #fff;
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.article-title {     font-size: 38px;
    font-weight: 700;
    padding-bottom: 30px;
    line-height: 1.2;
    margin-bottom: 32px;
    border-bottom: solid 1px #e0e0e0f8; }
.featured-image-container img { width: 100%;
    max-height: 406px;
    border-radius: 8px;
    object-fit: cover;
    margin: 20px 0; }

/* 6. CATÁLOGO E PRODUTOS */
.category-title {
    font-size: 28px;
    color: var(--text-main);
    display: inline-block;
    padding: 40px 0 10px 0;
    
}

.category-section {
    padding: 6px 0 0px 0;
    border-top: solid 1px #dcdcdc;
    width: 100%;
    margin: 90px 0px 26px 0;
}

.category-section:nth-child(2) {
    margin: 0;
    padding: 0;
    border: none;
    margin-top: -70px;
}



.product-card { 
    background: var(--bg-light); 
    padding: 25px; 
    border-radius: 8px; 
    transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-5px); }

.card-inner { 
    border-radius: 5px; 
    text-align: center; 
    height: 100%; 
    display: flex; 
    flex-direction: column;
    padding-bottom: 20px;
}

.product-image { padding: 20px;
    flex-grow: 1;
    display: flex;
    background: #fff;
    border-radius: 12px;
    align-items: center;
    justify-content: center; 
    min-height: 300px;
}
.product-image img { max-width: 100%; height: auto; max-height: 200px; object-fit: contain; }
a {
    text-decoration: none;
}
.product-info h3 { min-height: 34px;
    text-align: center;
    font-weight: 500!important;
    text-decoration: none; }
.product-info p {
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 100;
    background: #fff;
    /* position: relative; */
    max-width: 130px;
    display: block;
    margin: 20px auto;
    margin-top: -20px;
    border-radius: 6px;
    padding: 10px;
}
.btn-bralyx { 
    background: var(--bralyx-dark-green);; 
    color: #000; 
    text-decoration: none; 
    text-align: center;
    margin: 0 20px;
    padding: 12px; 
    border-radius: 5px; 
    font-weight: 500; 
    transition: 0.2s;
    display: block;
}

a.btn-bralyx:hover {
    color: #fff;
}

.home .search-box select {
    border-bottom: solid 1px #fff3 !important;
    background: #ff00;
    color: #a0a0a0;
}

.hero-catalog { background: url(../img/bg-video.png); color: #fff; padding: 60px 0; text-align: center; }
.hero-catalog h1 { font-size: 45px; color: var(--bralyx-green)!important; margin-bottom: 10px; }

.hero-catalog p, span {
    color: #fff;
}

.overlayb {
    background: #0000008f;
    width: 100%;
    height: 100%;
    display: block;
    top: 0%;
    left: 0;
    z-index: 0;
    border-radius: 12px;
    position: absolute;
}

.imginstitucional{
height: 196px;
    margin-top: -80px;
    margin-bottom: -51px;
    object-fit: contain;
}




.result-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    background: #ffffff;
    /* padding: 15px; */
    border: solid 15px var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.result-card:hover { transform: translateY(-5px); }

.result-btn { 
        background: var(--bralyx-dark-green);; 
        color: #000; 
        text-decoration: none; 
        text-align: center; 
        padding: 12px; 
        border-radius: 5px; 
        font-weight: 900; 
        text-transform: uppercase; 
        font-size: 12px;
        transition: 0.3s;
    }
    .result-btn:hover { color: #fff; }
    
      .result-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 15px;
    display: block;
    line-height: 1.2;
    font-size: 18px;
    margin: 15px 0 5px 0;
    padding: 0 10px;
    font-size: 18px;
    margin: 15px 0 5px 0;
    padding: 0 10px; 
    color: #333;
}
.result-desc { color: #888; font-size: 14px; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }
.badge { font-size: 10px; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; font-weight: 800; margin-bottom: 10px; display: inline-block; width: fit-content; }
.badge-blog {
    background: #e5e5e5;
}
.badge-maquina{ background: #b9d14f;}

.pinned li {
    width: max-content;
}
.search-wrapper { padding: 60px 0; min-height: 80vh;}




/*Quem Somos /*


/* Estilos Gerais */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* Linha do Tempo */
.linha-tempo { padding: 50px 0; }
.img-box img { width: 100%; height: 200px; object-fit: cover; }
.text-box { padding: 15px; }
.year { color: #82bc00; font-size: 1.5rem; font-weight: bold; }

/* Certificações */
.certificacoes-black { padding: 50px 0; background: #111; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }
.cert-card { text-align: center; background: #1a1a1a; padding: 20px; border-radius: 10px; }
.cert-card img { height: 80px; margin-bottom: 15px; }

.video-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 30px; }
.btn-black { background: #000; color: #fff; padding: 15px 30px; text-decoration: none; border-radius: 5px; }
.btn-green { background: #82bc00; color: #fff; padding: 15px 30px; text-decoration: none; border-radius: 5px; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }



/* Estilo específico para os botões das instalações */
.instalacoes-bralyx .video-buttons { 
    display: flex; 
    gap: 10px; 
    margin-top: 20px; 
    flex-wrap: wrap; 
}
.btn-black { background: #000; color: #fff; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; }
.btn-green { background: #82bc00; color: #fff; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; }



/* Container dos Selos */
.secao-selos {
    padding: 50px 0;
    background-color: #1a1a1a; /* Ajuste conforme o fundo do seu site */
    color: #fff;
}

.selos-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none; /* Esconde scrollbar no Firefox */
}

.selos-wrapper::-webkit-scrollbar {
    display: none; /* Esconde scrollbar no Chrome/Safari */
}

/* Cartão do Selo */
.selo-item {
    min-width: 300px; /* Largura fixa para manter o padrão */
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.selo-item img {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.selo-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.selo-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* Ajuste dos botões de navegação */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.missao-visao { padding: 80px 0; background: #fff; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-top: 40px; }

/* Inverte a ordem na seção Visão para dar dinamismo */
.grid-2.reverse { direction: rtl; }
.grid-2.reverse > * { direction: ltr; }

.img-box img { width: 100%; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.text-box ul { list-style: none; padding: 0; }
.text-box ul li { 
    margin-bottom: 15px; 
    padding-left: 30px; 
    position: relative; 
}
/* Estilo do checkmark (ícone de lista) */
.text-box ul li::before { 
    content: '✓'; 
    position: absolute; left: 0; color: #76bc21; font-weight: bold; 
}



.lista-estabelecimentos {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas iguais */
    gap: 20px; /* espaço entre os cards */
}

.cardend {
   
    padding: 15px;
}

.cardend img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.timeline-nav button {
    background: #333;
    color: white;
    border: none;
    padding: 5px 18px 5px 9px!important;
    cursor: pointer;
    border-radius: 100%;
    font-size: 12px;
    height: 27px;
    width: 17px;
}


/* RESET PARA DESKTOP (Grid normal) */
.categorias-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23.3%, 1fr));
    gap: 25px;
    padding: 20px;
}

.categoria-card {
    position: relative; 
    border-radius: 20px; 
    overflow: hidden; 
    height: 350px; 
    background: #eee;
}

.categoria-card:hover a {
    background: var(--bralyx-green);
}

.pdtb8{
        padding: 80px 0;
}

.categoria-card img:hover {
    transform: scale(1.2);
    transition: ease 0.5s;
}

.categoria-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    transition: ease 0.5s;
}

/* Estilo do Botão Branco */
.cat-link-card {
    position: absolute; bottom: 20px; left: 15px; right: 15px; 
    background: #fff; color: #000; padding: 18px 25px; 
    border-radius: 15px; text-decoration: none; font-weight: 800; 
    display: flex; justify-content: space-between; align-items: center; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: 0.3s;
}

.cat-link-card:hover { background: var(--bralyx-green); }
.maqpro{
        text-align:left;
        align-items: left;
    }
    
    .maqproa{
        align-items: left;
    }
    
    
    .apps{background-size: cover; 
            background-position: center; 
            border-radius: 20px; 
            padding: 60px; 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            flex-wrap: wrap; 
            gap: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
            position: relative; 
            overflow: hidden;}

/* CONFIGURAÇÃO PARA MOBILE (Ativa o Swiper) */


/* DESKTOP: Grid fixo */
.blog-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pagination-blog { display: none; }

/* MOBILE: Comportamento de Slide */


/* DESKTOP: Grid 4 colunas */
.atendimento-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.atendimento-card {
    background: #fff; 
    padding: 30px; 
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.atendimento-card h4 { font-size: 16px; color: #333; margin-bottom: 15px; min-height: 40px; }
.atendimento-card p { font-size: 13px; color: #777; line-height: 1.6; margin: 0; }
.atendimento-card a { color: #e31e24; text-decoration: none; font-weight: bold; font-size: 13px; display: inline-block; margin-top: 15px; }

.pagination-atendimento { display: none; }



/* Estilos essenciais para o Acordeon e Footer */
.footer-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.social-circle {
    background: #000; color: #fff; width: 32px; height: 32px; 
    border-radius: 50%; display: flex; align-items: center; 
    justify-content: center; text-decoration: none; transition: 0.3s;
}

.social-circle:hover { background: var(--bralyx-green); }



.breadcrumb {
    font-size: 12px;
    color: #666;
    margin-bottom: 50px;
}



.home .search-box button {
    background: #0000;
    border: none;
    color: #ffffff8a;
    font-size: 18px;
    font-weight: 100;
}

.search-box button {
    background: #0000;
    border: none;
    color: #0000008a;
    font-size: 18px;
    padding: 5px;
    font-weight: 100;
    border-bottom: solid 1px #80808059;
}

.row {
    padding: 50px 0;
}

#bralyx-catalog-root { all: initial; display: block; font-family: sans-serif; max-width: 1100px; margin: 20px auto; }
        
        /* ABAS */
        .bx-tabs-nav { display: flex; border-bottom: 2px solid #ccc; margin-bottom: 20px; gap: 4px; overflow-x: auto; }
        .bx-tab-link { 
            padding: 12px 20px; cursor: pointer; border: none; background: #eee; 
            color: #333; font-weight: bold; text-transform: uppercase; font-size: 12px;
            transition: 0.3s; border-radius: 4px 4px 0 0;
        }
        .bx-tab-link.active { background: #e30613; color: #fff; }

        /* CONTEÚDO */
        .bx-h2 { color: #e30613; font-size: 18px; font-weight: bold; margin: 30px 0 10px; border-bottom: 1px solid #e30613; padding-bottom: 5px; text-transform: uppercase; }
        
        .bx-row { 
            display: flex; align-items: center; justify-content: space-between; 
            padding: 12px 15px; border-bottom: 1px solid #eee; background: #fff;
        }
        .bx-row:nth-child(even) { background: #f9f9f9; }
        .bx-row:hover { background: #f1f1f1; }

        .bx-col-name { flex: 2; font-weight: bold; font-size: 14px; color: #333; }
        .bx-col-actions { flex: 2; display: flex; gap: 15px; }
        .bx-col-social { flex: 1; display: flex; justify-content: flex-end; gap: 10px; }

        .bx-btn { text-decoration: none; color: #555; font-size: 12px; font-weight: bold; display: flex; align-items: center; gap: 5px; }
        .bx-btn:hover { color: #e30613; }

        .bx-social-img { width: 22px; height: 22px; filter: grayscale(1); opacity: 0.6; transition: 0.3s; }
        .bx-social-img:hover { filter: grayscale(0); opacity: 1; }
        
        #bralyx-root { all: initial; display: block; font-family: 'Arial', sans-serif; max-width: 1100px; margin: 20px auto; color: #333; }
        
        /* ABAS */
        .bx-nav { display: flex; border-bottom: 2px solid #ddd; margin-bottom: 25px; gap: 5px; overflow-x: auto; }
        .bx-tab { 
            padding: 12px 20px; cursor: pointer; border: none; background: #eee; 
            font-weight: bold; text-transform: uppercase; font-size: 12px; transition: 0.3s;
        }
        .bx-tab.active { background: #e30613; color: #fff; }

        /* TABELA */
        .bx-h2 { color: #e30613; font-size: 19px; font-weight: 800; margin: 35px 0 10px; border-bottom: 1px solid #e30613; padding-bottom: 5px; text-transform: uppercase; }
        .bx-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 15px; border-bottom: 1px solid #eee; }
        .bx-row:nth-child(even) { background: #f9f9f9; }
        .bx-row:hover { background: #f1f1f1; }

        .bx-col-name { flex: 2; font-weight: bold; font-size: 14px; }
        .bx-col-links { flex: 2; display: flex; gap: 15px; }
        .bx-col-social { flex: 1.5; display: flex; justify-content: flex-end; gap: 12px; }

        .bx-btn { text-decoration: none; color: #666; font-size: 12px; font-weight: bold; display: flex; align-items: center; gap: 5px; }
        .bx-btn:hover { color: #e30613; }
        .bx-ico { width: 22px; height: 22px; filter: grayscale(1); opacity: 0.5; transition: 0.3s; }
        .bx-ico:hover { filter: grayscale(0); opacity: 1; }
        
        
        
        
        .bralypedia {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    font-family: Arial;
    color: #222;
}

/* breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* header */
.bralypedia-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.bralypedia-header h1 {
    font-size: 28px;
}

.bralypedia-header p {
    max-width: 500px;
    font-size: 14px;
    color: #666;
}

/* hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}


.home .hero {
    margin: -164px 0 0px;
    padding: 12% 0 5%;
}
.hero-image img {
    width: 100%;
    border-radius: 10px;
}

.hero-text h2 {
    font-size: 26px;
    margin: 10px 0;
}

.read-more {
    color: red;
    font-weight: bold;
}

/* mini cards */
.mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mini-card {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: #000;
}

.mini-card .line {
    width: 4px;
    background: #8bc34a;
    border-radius: 2px;
}

/* tabs */
.tabs {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    border-bottom: 1px solid #ddd;
}

.tabs span {
    padding-bottom: 10px;
    cursor: pointer;
    color: #777;
}

.tabs .active {
    color: #000;
    border-bottom: 2px solid #8bc34a;
}

/* header listagem */
.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filters {
    display: flex;
    gap: 10px;
}

.filters input,
.filters select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* grid */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h4 {
    margin: 10px 0;
}

/* tag */
.tag.green {
    background: #8bc34a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
}

/* botão */
.btn {
    display: inline-block;
    margin-top: 10px;
    background: #000;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
}


.meta-info {
    display: flex;
    justify-content: space-between; /* Empurra os grupos para as extremidades */
    align-items: center;           /* Alinha verticalmente ao centro */
    padding: 15px 0;
    border-top: 0px solid #333;    /* Ajuste a cor conforme seu tema dark */
    border-bottom: 0px solid #333;
}

.meta-left {
    display: flex;
    gap: 20px; /* Espaçamento entre a data e o tempo de leitura */
    align-items: center;
}

.social-share {
    display: flex;
    gap: 15px; /* Espaçamento entre os ícones sociais */
}

.social-share i {
    cursor: pointer;
    transition: color 0.3s;
    font-size: 1.1rem;
}

/* Efeito de hover opcional para os ícones */
.social-share i:hover {
    color: #e82535;
}

nav.breadcrumb-nav {
    padding: 40px 0;
    font-size: 12px;
}

section.author-section {
    border: solid 1px #ededed;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 60px;
}


/* ===== HAMBURGER ===== */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}


.menu-close {
    display:none;
}


/* ===== MOBILE FULLSCREEN MENU ===== */
@media (max-width: 1024px) {

    .menu-toggle {
        display: block;
    }

   .nav-list {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px;
    gap: 0;
    transition: 0.4s;
    z-index: 9999;
}

    .nav-list.active {
        left: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #222;
    }

    .nav-list a {
        display: flex;
        justify-content: space-between;
        padding: 18px 10px;
        font-size: 18px;
        color: #fff;
    }

    /* DROPDOWN MOBILE */
    .dropdown-menu {
        position: static;
        background: #111;
        display: none;
    }

    .dropdown-menu.active {
        display: block;
    }

    .dropdown-menu li {
        padding-left: 20px;
    }

    .dropdown-menu a {
        font-size: 14px;
        color: #ccc;
    }

    /* ESCONDER ITENS LATERAIS */
    .sticky-search,
    .sticky-langs {
        display: none;
    }

    /* BOTÃO FECHAR */
    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 26px;
        color: #fff;
        cursor: pointer;
        display:block;
    }
}


/* SEÇÃO DE CARDS DE CONTATO */
.footer-contact-section {
    max-width: 1200px;
    margin: 0px auto 45px;
    padding: 0px 15px 45px;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #dcdcdc;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas no desktop */
    gap: 20px;
}

.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    border-bottom: 1px solid #eee;
}

.contact-card h3 {
    font-size: 16px;
    color: #111;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-card-content {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.contact-card-link {
    color: #ed1c24;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.contact-card-link:hover {
    gap: 10px;
    color: #000;
}

/* Responsividade para os cards */
@media (max-width: 1024px) {
    .footer-contact-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
}



/* CSS EXCLUSIVO DO FOOTER */
.site-footer {
    background-color: #f4f4f4;
    padding: 80px 0 0;
    color: #555;
    font-size: 13px;
    font-family: sans-serif;
    border-top:1px solid #dcdcdc;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr; /* 4 Colunas no Desktop */
    gap: 30px;
}
.footer-col h4 {
    font-size: 15px;
    color: #111;
    margin-bottom: 15px;
    font-weight: bold;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .col-institucional-links a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}
.footer-col ul li a:hover, .col-institucional-links a:hover { color: #ed1c24; }

/* Grid de links soltos da primeira coluna */
.col-institucional-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 30px; }

/* Redes Sociais */
.social-wrapper { display: flex; gap: 10px; }
.social-circle {
    background: #000; color: #fff; width: 35px; height: 35px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 16px; transition: 0.3s;
}
.social-circle:hover { background: #ed1c24; }
.title-redes { font-weight: bold; margin-bottom: 10px; color: #333; display: block; }

/* Estrutura de sub-blocos (Para Col 2 e 3 que tem mais de um menu) */
.footer-sub-block { margin-bottom: 30px; }

.sub-footer { background-color: #000; color: #fff; padding: 20px 0; margin-top: 40px; font-size: 12px; }
.sub-footer-flex { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sub-footer a { color: #fff; text-decoration: none; }




span.date {
    color: #696969;
    font-size: 12px;
}

.author-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
    border-left: 5px solid #e30613; /* Cor de destaque da SpectralInk */
}

.author-container {
    display: flex;
    align-items: center; /* Centraliza verticalmente a foto com o texto */
    gap: 25px; /* Espaço entre a foto e o texto */
}

.author-img {
    width: 100px;
    height: 100px;
    border-radius: 13%;
    object-fit: contain;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.author-text {
    flex: 1;
}

.author-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.author-name {
    display: block;
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.author-bio {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}



.post-navigation {
    display: flex;
    justify-content: space-between;
    
    margin: 40px 0;
    padding: 25px 0;
}

.nav-box { width: 48%; }
.nav-box.next { text-align: right; }

.nav-content {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-box.next .nav-content {
    justify-content: flex-end;
}

.nav-thumb {
    width: 113px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    background: #eee;
}

.nav-text {
    display: flex;
    flex-direction: column;
}

.nav-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #e82535;
    font-weight: bold;
    margin-bottom: 3px;
}

.nav-title {
    font-size: 14px;
    color: #333;
    line-height: 1.2;
    max-width: 200px; /* Evita que o título empurre a imagem muito longe */
}


.nav-box.prev, .nav-box.next {
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 21px;
}

.nav-box a {
    text-decoration: none !important; /* Remove o sublinhado do link pai */
}

.nav-title {
    text-decoration: none; /* Garante que o título não tenha decoração */
    display: block; /* Ajuda a manter o layout consistente */
}


/* Container da lista */
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Cada item do menu */
.nav-list li {
    position: relative;
    display: flex;
    align-items: center;
}

/* A barrinha cinza vertical */
.nav-list li::after {
    content: "";
    width: 1px;          /* Largura da barrinha */
    height: 15px;        /* Altura da barrinha (ajuste conforme o design) */
    background-color: #ccc; /* Cor cinza da imagem */
    display: inline-block;
    margin-left: 10px;   /* Espaço entre o texto e a barra */
    margin-right: 10px;  /* Espaço entre a barra e o próximo texto */
}

/* Remove a barrinha do último item (Contato) */
.nav-list li:last-child::after {
    display: none;
}

/* Remove a barrinha também do botão de fechar (X) se ele estiver dentro da lista */
.nav-list .menu-close::after {
    display: none;
}

/* Ajuste do Link para não ter padding exagerado que empurre a barra */
.nav-list li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px; /* Espaço para o ícone do chevron */
}

/* Remove as barrinhas dentro do dropdown (submenu) */
.dropdown-menu li::after {
    display: none !important;
}

.nav-list li:nth-last-child(2)::after {
    display: none; 
}


.boxheroint {
    position: relative;
    margin: 15px 0;
    padding: 15px;
    z-index: 1;
    overflow: hidden;
    /* Fundo inicial */
    background: linear-gradient(to bottom, #0f0f0f00, #ffffff00);
}

/* Criamos a camada do Hover */
.boxheroint::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #00000000, #ffffff1f);
    z-index: -1;
    opacity: 0;
    transition: opacity 1s ease;
}

.boxheroint:hover::before {
    opacity: 1; /* Revela o novo fundo suavemente */
}

/* Layout Principal */
.catalog-main { padding: 40px 0; }

.filter-bar {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    font-size: 13px;
    color: #888;
}

.catalog .filter-bar{
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: none;
    margin: 30px 0 30px 0;
    font-size: 13px;
    color: #888;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr; /* Sidebar fixa em 280px */
    gap: 40px;
}

/* Sidebar */
.catalog-sidebar h3 { font-size: 18px; margin-bottom: 15px; }
.filter-tag {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
}

.accordion-item { border-bottom: 1px solid #eee; }
.accordion-btn {
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    text-align: left;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.accordion-panel { display: none; padding-bottom: 15px; }
.accordion-item.active .accordion-panel { display: block; }

/* Grid e Cards (Igual ao layout da foto) */




.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.product-image img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    min-height: 40px;
}

.btn-detalhes {
    background: #bed652; /* Verde limão da Bralyx */
    color: #000;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-detalhes:hover { background: #acc24a; }


.product-card img {
    border-radius: 12px;
    padding: 12px;
    min-height: 356px;
    object-fit: contain;
    background: #fff;
}



.filter-group {
    margin-bottom: 25px;
}

.filter-group h5 {
    border-left: 4px solid #bed652;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.filter-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    cursor: pointer;
    color: #666;
}

.filter-group label:hover {
    color: #bed652;
}

.filter-group input {
    margin-right: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(349px, 1fr));
    gap: 20px;
}

.product-grid-filter {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(33%, 1fr));
    gap: 20px;
    padding: 20px 0 40px 0;
}

.filter-group {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.filter-header h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.filter-header .arrow {
    font-size: 18px;
    color: #999;
    transition: 0.3s;
}

.filter-group.active .arrow {
    transform: rotate(45deg);
}

.filter-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.filter-group.active .filter-content {
    max-height: 300px;
    margin-top: 10px;
}

.filter-content label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    cursor: pointer;
    color: #666;
}

.filter-content label:hover {
    color: #bed652;
}
.arrow-mobile { display: none; }
.cardend h2, .cardend h4, .cardend p {
    padding: 0!important;
    margin: 15px 0px;
}

.cardend a {
    background: #000;
    color: #fff;
    padding: 15px;
    display: block;
    text-align: center;
    border-radius: 12px;
}

/* Responsividade */
@media (max-width: 992px) {
    
    .product-grid-filter {
    display: grid;
    grid-template-columns: auto;
    gap: 20px;
    padding: 20px 0 40px 0;
}
.sideprod {
    flex-direction: column;
}
    
    .lista-estabelecimentos {
    display: grid;
    grid-template-columns: auto;
    gap: 20px;
}
    
    
  .arrow-mobile { display: block; }  
    .pdtb6 {
    padding: 25px 25px!Important;
}
img {
    max-width: 100%;
}
.form-step.active {
    grid-template-columns: 1fr!important;
}

/* =====================================
   MOBILE = CARROSSEL
===================================== */

.pinned .menu-toggle {
    right: 11%!important;
}

main.post-main-wrapper {
    padding: 20px;
}

    .mobile-carousel {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 10px;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-carousel::-webkit-scrollbar {
        display: none;
    }

    .mobile-carousel .product-card {
        min-width: 99%;
        flex: 0 0 auto;

        scroll-snap-align: start;
    }


    .category-section {
        position: relative;
    }

    .category-section::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 40px;
        height: 100%;
        background: linear-gradient(to left, #fff, transparent);
        pointer-events: none;
    }
    
    
    
   .home .hero {
    margin: -212px 0 0px;
    padding: 12% 0 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0px;
}
    .home .middle-bar, .home .main-nav {
    background: #00000000;
}
.category-section {
    padding: 0px 21px;
}

.filter-info {
    display: none;
}

.filter-select {
    display: block;
    margin: 0 auto;
}

.category-title {
    font-size: 20px;
    text-align: center;
    display: block;
}
    
    .pdtb8 {
    padding: 50px 20px;
}
.tdblogs {
    display: none!important;
}
.blog-item h3 {
    min-height: 110px!important;
}
.hero iframe {
    width: 447vw!important;
    height: 296.25vw!important;
}
     /* Mudamos o comportamento das classes para aceitar o Swiper */
    .categorias-container { overflow: hidden; position: relative; padding-bottom: 30px; }
    
    .categorias-wrapper {
        display: flex; /* Vira linha para o slide */
        grid-template-columns: none;
        gap: 0;
        padding: 0;
    }

    .categoria-item {
        flex-shrink: 0;
        padding: 0 10px; /* Espaçamento entre slides */
    }
    
    .maqpro{
        text-align:center;
        align-items: center;
    }
    .maqproa{
       text-align:left;
        align-items: left;
    }
    
    .macroproicon{margin: 36px auto;}
    
    .apps {
   
    align-items: center;
    justify-content: center;
   
    text-align: center;
}

    .grid-2 { grid-template-columns: 1fr; }
    .grid-2.reverse { direction: ltr; } /* Remove inversão no mobile */
    .header-container { flex-direction: column; gap: 20px; }
    .search-box { margin: 0; width: 100%; }
    .product-grid { grid-template-columns: 1fr; }
    .article-title { font-size: 28px; }
    
    .bannerinstitucional {
    flex-direction: column;
    text-align: center;
}


.imginstitucional{height: 220px;
    margin-top: 26px;
    margin-bottom: -30px;
    object-fit: contain;}
    
    .titlephero {
    text-align: center;
    margin-top: 160px;
}


.menu-toggle {
    
    color: #8e8e8e;
    right: 24%;
    position: absolute;
}

.home .menu-toggle {
    color: #fff;
    right: 24%;
    position: absolute;
}

.top-bar{
    padding: 10px 20px;
}
    
    .search-box, .lang-switcher {
    display: none;
}

.topodesmob {
     display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;

    border-bottom: #39393933 solid 1px;
}

.home .topodesmob {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    border-bottom: #393939 solid 1px;
}

.main-nav, .middle-bar{
    border-bottom: 1px solid rgb(189 189 189 / 0%);
}
   
    
    
    .blog-container.swiper {
        padding-bottom: 40px;
    }

    .blog-container.swiper .blog-wrapper {
        display: flex; /* Muda de grid para linha para o slide funcionar */
        grid-template-columns: none;
        gap: 0;
    }

    .blog-item {
        padding: 0 15px;
        flex-shrink: 0;
        width: 85% !important; /* Mostra uma pontinha do próximo post */
    }

    .pagination-blog { 
        display: block;
        bottom: 0 !important;
    }
    
    .pagination-blog .swiper-pagination-bullet-active {
        background: #a2d050;
    }
    .atendimento-container.swiper { padding-bottom: 40px; }
    
    .atendimento-container.swiper .atendimento-wrapper {
        display: flex;
        grid-template-columns: none;
        gap: 0;
    }

    .atendimento-item {
        padding: 0 10px;
        flex-shrink: 0;
        width: 80% !important; /* Mostra um pouco dos cards laterais */
    }

    .pagination-atendimento { 
        display: block; 
        bottom: 0 !important; 
    }
    
    .pagination-atendimento .swiper-pagination-bullet-active {
        background: #e31e24; /* Cor vermelha para combinar com os links desta seção */
    }
    
    
    
    
    .accordion-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid #ddd; cursor: pointer; }
    .accordion-content { display: none; padding: 15px 0; }
    .accordion-item.active .accordion-content { display: block; }
    .accordion-item.active .arrow-mobile { transform: rotate(180deg); color: var(--bralyx-green); }
    .footer-col h4 { margin: 0; font-size: 15px; }
    
    
    .footer-contact-grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
    }
    .footer-contact-section {
        margin-top: 20px;
    }
    
    
    .footer-container { display: flex; flex-direction: column; gap: 0; }
    
    /* Coluna 1 Centralizada (Logo, Redes, Links) */
    .coluna-logo {
        display: flex; flex-direction: column; align-items: center; text-align: center;
        margin-bottom: 30px; border-bottom: none !important;
    }
    .coluna-logo img { margin-bottom: 20px; order: 1; }
    .coluna-logo .social-wrapper { order: 2; margin-bottom: 20px; } /* Redes sobem no mobile */
    .coluna-logo .col-institucional-links { order: 3; align-items: center; margin-bottom: 0; }
    .coluna-logo .title-redes { display: none; } /* Esconde texto "Siga nossas redes" no mobile */

    /* Transformando as outras colunas em Accordion */
    .accordion-item { border-bottom: 1px solid #ddd; }
    .accordion-item:first-of-type { border-top: 1px solid #ddd; }
    
    .footer-sub-block { margin-bottom: 0; }
    
    .accordion-header {
        display: flex; justify-content: space-between; align-items: center;
        padding: 15px 0; cursor: pointer;
    }
    .accordion-header h4 { margin: 0; }
    .accordion-content { display: none; padding-bottom: 15px; }
    .accordion-item.active .accordion-content { display: block; }
    .accordion-item.active .arrow-mobile { transform: rotate(180deg); color: #ed1c24; }
    
    /* Loja Bralyx no mobile como accordion falso (só link) */
    .link-loja-mobile {
        display: flex; justify-content: space-between; align-items: center;
        padding: 15px 0; border-bottom: 1px solid #ddd; color: #111; font-weight: bold; text-decoration: none;
    }
    .sub-footer-flex { flex-direction: column; gap: 10px; text-align: center; }
    
     .link-loja-mobile { display: none; } 
    
    
    .author-container {
        flex-direction: column;
        text-align: center;
    }
    .author-section {
        padding: 20px;
    }
    .post-navigation { flex-direction: column; gap: 30px; }
    .nav-box { width: 100%; }
    .nav-box.next .nav-content { justify-content: flex-start; text-align: left; flex-direction: row-reverse; }
    
    
    
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-sidebar { display: none; } /* Opcional: esconder filtros no mobile ou transformar em modal */
    .sticky-search.search-box {
    display: none!important;
}



}

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.carousel-dots span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    transition: 0.3s;
}

.carousel-dots span.active {
    background: #b9d14f;
    transform: scale(1.2);
}

/* Só aparece no mobile */
@media (max-width: 768px) {
    
    
    .numbers {
    display: flex;
    gap: 24px;
    flex-direction: column;
}
    .carousel-dots {
        display: flex;
    }
    .main-nav.pinned{
        background:#000;
        left: 0px;
    }
}
.conteudo-pagina .row {
    padding: 0;
}


/* Escondido por padrão no Desktop */
.mobile-filter-trigger, .sidebar-header-mobile { display: none; }

@media (max-width: 991px) {
    /* Botão Flutuante ou fixo para abrir filtros */
    .mobile-filter-trigger {
    display: block;
    background: #f9f9f9;
    color: #767676;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    margin-bottom: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.countdesk{display:none;}

    /* Sidebar vira um Menu Lateral (Drawer) */
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -300px; /* Escondido à esquerda */
        width: 280px;
        height: 100%;
        background: #fff;
        z-index: 9999;
        overflow-y: auto;
        transition: 0.3s;
        padding: 20px;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    }
    
    div#count-prod {
    position: absolute;
    top: 309px;
    display: block;
    text-align: center;
    left: 25%;
    margin: 0 auto;
    align-content: center;
    /* display: block; */
}

    .filter-sidebar.open {
        left: 0; /* Desliza para dentro */
    }

    /* Cabeçalho interno da sidebar no mobile */
    .sidebar-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    
    .sidebar-header-mobile button {
        background: none;
        border: none;
        font-size: 20px;
    }

    /* Overlay escuro */
    #filter-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
    }

    #filter-overlay.active {
        display: block;
    }

    /* Ajuste da grid para não quebrar no mobile */
    .sideprod {
        flex-direction: column;
    }
}


/* ===== BRALYX MOBILE MENU RE-DESIGN ===== */
@media (max-width: 1024px) {

    /* Botão Hambúrguer */
    .menu-toggle {
        display: block;
        font-size: 24px;
        color: #333; /* Cor visível no fundo claro */
        cursor: pointer;
    }

    /* Container Principal do Menu */
    .nav-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff; /* Fundo Branco Clean */
        flex-direction: column;
        padding: 100px 0 40px; /* Espaço para o topo */
        gap: 0;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 9999;
        overflow-y: auto;
        display: flex !important;
    }

    .nav-list.active {
        left: 0;
    }

    /* Itens do Menu */
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0; /* Divisão sutil */
        display: block;
    }
    
    /* Remove as barrinhas verticais (::after) no mobile que você usa no desktop */
    .nav-list li::after {
        display: none !important;
    }

    .nav-list a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        font-size: 16px;
        font-weight: 600;
        color: #111 !important; /* Texto escuro para ler no branco */
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: none;
    }

    /* Destaque ao clicar/toque */
    .nav-list a:active {
        background-color: #f9f9f9;
        color: #ed1c24 !important; /* Vermelho Bralyx no toque */
    }

   

    .has-dropdown.active > a::after {
        transform: rotate(180deg);
        color: #bed652; /* Verde Bralyx quando aberto */
    }

    /* DROPDOWN MOBILE (Submenu) */
    .dropdown-menu {
        position: static;
        background: #fcfcfc; /* Fundo levemente cinza para diferenciar */
        display: none;
        width: 100% !important;
        border-top: 1px solid #eee;
    }

    .dropdown-menu.active {
        display: block;
    }

    .dropdown-menu li {
        border-bottom: 1px solid #f5f5f5;
    }

    .dropdown-menu a {
        padding: 15px 40px; /* Recuo maior para subitens */
        font-size: 14px;
        color: #666 !important;
        text-transform: none;
        font-weight: 400;
    }

    /* BOTÃO FECHAR */
    .menu-close {
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 28px;
        color: #333;
        cursor: pointer;
        display: block;
        padding: 10px;
        line-height: 1;
    }

    /* Ajuste para o Top Bar no Mobile */
    .topodesmob {
        padding: 15px 20px;
        justify-content: space-between;
    }
}
.fa-solid, .fas {
    font-weight: 900;
    color: var(--bralyx-green);
}

/* Ajuste para o gradiente de sumiço */
.description-container {
    position: relative;
}

.resumo-wp.collapsed {
    max-height: 150px; /* Altura máxima antes de esconder */
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.resumo-wp.expanded {
    max-height: 2000px; /* Um valor alto o suficiente */
    mask-image: none;
    -webkit-mask-image: none;
}
#extraContent {
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

#extraContent.collapsed {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

#extraContent.expanded {
    max-height: 2000px; /* Um valor alto apenas para permitir a animação */
    opacity: 1;
    margin-top: 10px;
}