/* =========================================================
   DESKTOP — Estilos principais do tema BrinquedoKids Oficial
   ========================================================= */

/* ------------------------------
   Geral
   ------------------------------ */
body {
    background: #f5f5f5;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.bk-desktop-main {
    min-height: 70vh;
}

/* ------------------------------
   Cabeçalho (header)
   ------------------------------ */

.bk-desktop-header {
    background: #fff;
    padding: 15px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e1e1e1;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.bk-desktop-logo img {
    height: 45px;
}

/* Menu */
.bk-desktop-menu ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.bk-desktop-menu a {
    font-size: 17px;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    transition: 0.2s ease;
}

.bk-desktop-menu a:hover {
    color: #007bff;
}

/* ------------------------------
   Cards – Listagem de Brinquedos
   ------------------------------ */
.bk-lista-desktop {
    max-width: 1100px;
    margin: 30px auto;
}

.bk-card-desktop {
    display: flex;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    transition: 0.2s ease;
}

.bk-card-desktop:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 14px rgba(0,0,0,0.12);
}

.bk-card-img img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
}

.bk-card-info {
    flex: 1;
    padding-left: 20px;
}

.bk-card-titulo {
    font-size: 24px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 700;
}

.bk-card-categoria {
    color: #6a2cd8;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: bold;
}

.bk-card-desc {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.bk-card-btn a {
    background: #007bff;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.bk-card-btn a:hover {
    background: #005fcc;
}

/* ------------------------------
   Página Individual do Brinquedo
   ------------------------------ */
.bk-single-container {
    max-width: 110px;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e1e1e1;
}

.bk-single-titulo {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
}

.bk-single-categoria {
    font-size: 18px;
    font-weight: bold;
    color: #6a2cd8;
    margin-bottom: 20px;
}

.bk-single-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.55;
}

/* ------------------------------
   Blocos (Galeria, preços, ficha)
   ------------------------------ */
.bk-single-bloco {
    margin-top: 30px;
    padding: 20px;
    border-radius: 12px;
    background: #fafafa;
    border: 1px solid #e1e1e1;
}

.bk-single-bloco h3 {
    margin-top: 0;
    font-size: 22px;
}

/* ------------------------------
   Galeria estilo Instagram
   ------------------------------ */
.bk-galeria-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bk-galeria-item img {
    width: 80px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.2s;
}

.bk-galeria-item img:hover {
    transform: scale(1.06);
}

/* Modal */
.bk-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#bkModalImg {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

/* ------------------------------
   Vídeo
   ------------------------------ */
.bk-video-container iframe {
    border-radius: 12px;
}

/* ------------------------------
   Rodapé
   ------------------------------ */
.bk-desktop-footer {
    margin-top: 40px;
    background: #fff;
    text-align: center;
    padding: 25px;
    border-top: 1px solid #e1e1e1;
}
/* Corrige tamanho do logo no desktop */
.bk-desktop-logo img {
    height: 45px;
    width: 55px;
}
/* HEADER COM FUNDO CINZA LEVE E ALTURA MAIS BAIXA */
.bk-desktop-header {
    background: #e8e8e8; /* cinza leve */
    padding: 6px 25px !important;
    border-bottom: 1px solid #dcdcdc;
}

/* logo menor e proporcional */
.bk-desktop-logo img {
    height: 45px !important;
    width: 55px !important;
}
/* REDUZ TAMANHO DOS ITENS NO DESKTOP */
.bk-brinquedos-grid-desktop {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px 30px;
}

.bk-thumb-desktop img {
    height: 100px !important;
}

.bk-title-desktop {
    font-size: 15px !important;
    padding: 8px !important;
}
/* ======== AJUSTE PROFISSIONAL DA GALERIA DESKTOP ========= */

/* limita a largura total para não ficar fino */
.bk-brinquedos-grid-desktop {
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr) !important; /* 4 por linha */
    gap: 20px !important;
    padding: 25px 20px !important;
}

/* imagens mais proporcionais */
.bk-thumb-desktop img {
    height: 210px !important;
    object-fit: cover;
    border-radius: 10px;
}

/* card mais encorpado e bonito */
.bk-item-desktop {
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.14);
    transition: 0.25s;
}

.bk-item-desktop:hover {
    transform: scale(1.04);
}

/* título mais bonito */
.bk-title-desktop {
    font-size: 16px !important;
    padding: 10px !important;
    font-weight: 700 !important;
    text-align: center;
}
/* ======== GRID MAIS ENCUSTADO E ROBUSTO ========= */

.bk-brinquedos-grid-desktop {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    padding: 25px 20px !important;
}

/* imagens mais proporcionais */
.bk-thumb-desktop img {
    width: 100% !important;
    height: 210px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

/* cards mais encorpados */
.bk-item-desktop {
    border-radius: 14px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.14) !important;
    overflow: hidden;
}

.bk-title-desktop {
    font-size: 16px !important;
    padding: 10px !important;
    font-weight: 700 !important;
    text-align: center;
}
/* WHATSAPP DESKTOP SOBRE O MENU */
.bk-whatsapp-desktop {
    z-index: 1000001 !important;
}
