/* ============================================================
   BAZZIN EQUIPAMENTOS - PRODUTOS (UNIFICADO COM SERVIÇOS)
   ============================================================ */

:root {
    --grafite-bazzin: #1a1a1a;
    --laranja-bazzin: #E77B2D;
    --cinza-card-glass: rgba(36, 36, 36, 0.4); 
    --barra-admin-clara: #f1f1f1;
}

/* 1. O CONTAINER (GRID) - 3 Colunas Fixas */
#produtos-galeria.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* 2. O CARD (ESTILO GLASS - IGUAL SERVIÇOS) */
.produto-card-interativo {
    background-color: var(--cinza-card-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
    height: 600px; /* Altura fixa para manter o grid simétrico */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.produto-card-interativo:hover {
    transform: translateY(-5px);
    border-color: rgba(231, 123, 45, 0.4);
}

/* 3. A IMAGEM PRINCIPAL */
.card-image {
    height: 280px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    flex-shrink: 0;
    position: relative;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 4. CONTEÚDO (TEXTO E SCROLLBAR BRANCA) */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-top: 4px solid var(--laranja-bazzin);
    overflow: hidden;
}

.card-content h3 {
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
}

.card-description {
    flex: 1;
    overflow-y: auto !important;
    padding-right: 12px;
    margin-bottom: 10px;
}

/* SCROLLBAR BRANCA (ESTILO CLEAN) */
.card-description::-webkit-scrollbar {
    width: 4px;
}

.card-description::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.card-description::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.card-description::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

/* Lista interna */
.card-description ul { 
    list-style: none !important; 
    padding: 0 !important; 
    margin: 0 !important; 
}
.card-description li {
    font-size: 0.92rem;
    color: #ccc;
    line-height: 1.6; /* Aumentei um pouco para o texto corrido ficar mais legível */
    margin-bottom: 10px;
    padding-left: 0 !important; /* Remove o espaço que era da bolinha */
    position: relative;
}
.card-description li::before {
    display: none !important; /* Esconde a bolinha laranja */
}




/* 5. SETAS DE NAVEGAÇÃO (DENTRO DA IMAGEM) */
.btn-swipe-prod {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3); 
    color: rgba(255, 255, 255, 0.7); 
    border: none; 
    width: 35px; 
    height: 50px; 
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-swipe-prod:hover { 
    color: #fff;
    background: var(--laranja-bazzin);
}

.btn-swipe-prod.prev { left: 0; border-radius: 0 8px 8px 0; }
.btn-swipe-prod.next { right: 0; border-radius: 8px 0 0 8px; }

/* 6. MINIATURAS (RODAPÉ DO CARD) */
.produto-galeria-miniaturas {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow-x: auto;
}

.mini-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: 0.3s;
}

.mini-thumb.active, .mini-thumb:hover {
    opacity: 1;
    border-color: var(--laranja-bazzin);
}
.btn-interessado {
    width: 100%;
    padding: 12px;
    margin: 10px 0 15px 0; /* Espaçamento superior e inferior */
    background-color: #E77B2D;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-interessado:hover {
    background-color: #fff;
    color: #E77B2D;
    transform: scale(1.02);
}
/* 7. RESPONSIVIDADE */
@media (max-width: 1024px) {
    #produtos-galeria.services-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
    #produtos-galeria.services-grid { grid-template-columns: 1fr !important; }
}


