/* ---- Hero / topo ---- */
.produtos-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
.produtos-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 65%, rgba(0,0,0,0) 100%);
}
.produtos-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 10%;
    max-width: 800px;
}
.produtos-hero__content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 10px;
}
.produtos-hero__content p {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0;
    opacity: .95;
}

/* ---- Wrapper ---- */
.produtos-archive {
    padding: 80px 10%;
    background: #f9f9f9;
}

/* ---- Sidebar de filtro  ---- */
#filtroCategorias{
    position: sticky;
    top: 140px;
}
.filtro-categorias-container {
    border-radius: 15px;
}
.filtro-categorias {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    list-style: none;
    margin: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.filtro-categorias .nav-item {
    margin: 3px 0;
}
.filtro-link {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: #fff;
    cursor: pointer;
    padding: 15px 20px;
    color: #666;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 10px;
    transition: all .2s;
}
.filtro-link:hover {
    background-color: #f1f2f6;
    color: #0c4da3;
}
.filtro-link.active {
    background-color: var(--azulventex);
    color: #fff;
    font-weight: 600;
}

/* ---- Botão hambúrguer ---- */
.produtos-archive .botao-menu {
    display: none;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 20px 30px;
    background: var(--azulsecundario);
    color: #fff;
    font-weight: 300;
    line-height: 1;
    gap: 15px;
    border: 0;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
}
.produtos-archive .botao-menu i {
    color: #67a9ff;
    font-weight: 800;
    font-size: 1.4rem;
}
.produtos-titulo {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--azulventex);
    margin: 0 0 24px 30px; 
}
/* ---- Grid de cards ---- */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-left: 30px;
}
.produto-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
    position: relative;
}
.produto-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    transform: translateY(-3px);
}
.produto-card[hidden] {
    display: none !important;
}
.produto-card__media {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}
.produto-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 780 / 700;
}
.produto-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--azulventex);
    margin: 0 0 16px;
    line-height: 1.25;
}
.produto-card__btn {
    margin-top: auto;
    align-self: flex-start;
    display: inline-block;
    background: var(--azulventex);
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
}
.produto-card__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.produto-card__btn:hover {
    background: var(--azulsecundario);
    color: #fff;
}
.produtos-vazio {
    text-align: center;
    color: #666;
    font-size: 1rem;
    padding: 40px 0;
    margin-left: 30px;
}

/* ---- Responsivo ---- */
@media (max-width: 1560px) {
    .produtos-archive { padding: 60px; }
    .produtos-hero__content { padding: 0 15% 0 5%;}
}
@media (max-width: 1199.98px) {
    .produtos-archive .botao-menu { display: flex; }
    .filtro-categorias-container { margin-bottom: 20px; }
    .produtos-grid { margin-left: 0; grid-template-columns: repeat(2, 1fr); }
    .produtos-vazio { margin-left: 0; }
    .produtos-titulo { margin: 20px 0; }
}
@media (max-width: 767px) {
    .produtos-archive { padding: 0px; }
    .produtos-archive .botao-menu{border-radius: 0;}
    .produtos-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(0 0 0 / 67%) 100%, rgb(16 58 127) 65%, rgba(0, 0, 0, 0) 100%); }
    .produtos-hero { min-height: 260px; }
    .produtos-hero__content { padding: 0 30px; }
    .produtos-hero__content h1 { font-size: 2.1rem; margin: 0;}
    .produtos-hero__content p { font-size: 1rem; }
    .produtos-grid { grid-template-columns: 1fr; }
    .produtos-titulo { margin: 10px 30px; font-size: 1.6rem; }
    .produto-card{padding: 20px 30px;}
}