.widgetLine__1 {
    background-color: #2B1F17;
}


.contentHero_buttons {
    display: flex !important;
    justify-content: center !important;    
    text-align: center !important;
}


/*paginaçao dos produtos*/
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

*{
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    
}

.card-wrapper1{
    max-width: 100%;
    margin: 0px 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}

.card-list1 .card-item1 .card-link1 {
    user-select: none;
    display: block;
    background: #e2dcd6;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
    transition: 0.2s ease;
}


.card-list1 .card-item1 .card-link1:hover {
    border: 2px solid rgb(64, 44, 17);
}

.card-list1 .card-link1 .card-image1 {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}

.card-list1 .card-item1{
    list-style: none;
}

.card-list1 .card-link1 .badge1 {
    color: rgb(64, 44, 17);
    margin: 16px 0px 8px;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    background-color: rgb(255, 255, 255);
    width:fit-content;
    border-radius: 50px;
}

.card-list1 .card-link1 .badge1.designer {
    color:#B22485;
    background-color:#f7dff5;

}
.card-list1 .card-link1 .badge1.marketer {
    color:#b25a2b;
    background-color:#ffe3d2;

}
.card-list1 .card-link1 .badge1.gamer {
    color:#205c20;
    background-color:#d6f8d6;

}
.card-list1 .card-link1 .badge1.editor {
    color:#856404;
    background-color:#fff3cd;

}

.card-list1 .card-link1 .badge1.developer {
    color:#4a3f1d;
    background-color:#fff3cd;

}



.card-list1 .card-link1 .title1 {
    font-size: 1.19rem;
    color: black !important;
    font-weight: 600;
    overflow: hidden;
}

.card-list1 .card-link1 .card-button1 {
    height: 35px;
    width: 35px;
    color: rgb(64, 44, 17);
    border-radius: 50%;
    margin: 30px 0px 5px;
    background: none;
    cursor: pointer;
    border: 2px solid rgb(64, 44, 17);
    transform: rotate(-45deg);
    transition: 0.4s ease;
}

.card-list1 .card-link1:hover .card-button1{
    color: white;
    background: rgb(64, 44, 17);
}





/* botoes do swipper*/
/* Botões principais */
.swiper-button-next,
.swiper-button-prev {
  width: 60px;
  height: 40px;
  background-color: #c8c8c8;
  border-radius: 12px;
  color: #6c5028 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 18px;
  padding: 10px;
}

/* Remove setas padrão do Swiper */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
}

/* Adiciona setas personalizadas */
.swiper-button-next {
  right: 10px;
}
.swiper-button-prev {
  left: 10px;
}

/* Setas customizadas usando CSS puro */
.swiper-button-next::before {
  content: '→';
  font-size: 30px;
  color: #6c5028;
}
.swiper-button-prev::before {
  content: '←';
  font-size: 30px;
  color: #6c5028;
}

/* Efeito hover */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #617c98;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  color: #fff;
}






/*fim da paginaçao dos produtos*/





/*banner carrossel*/

.contentHero_carousel {
    position: relative;
    width: 100vw;
    aspect-ratio: 4 / 1;
    overflow: hidden;
}

@media (max-width: 518px) {
    .contentHero_carousel {
    position: relative;
    width: 100vw;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    }
    .contentHero_title {
    color: white;
    font-size: 2rem !important;
}

.contentHero_title {
    position: absolute;
    bottom: 0%;
    transform: translate(-30%, -100%);
    color: #fff;
    margin-bottom: 16px;
    width: 300px;
    text-align: center;
}
  }

/* slides */
.contentHero_slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.contentHero_slide.active {
    opacity: 1;
    z-index: 1;
}

/* image */
.contentHero_image1,
.contentHero_image1 picture,
.contentHero_image1 img {
    width: 100%;
    height: 100%;
}

.contentHero_image1 img {
    object-fit: cover;
}

/* overlay text */
.contentHero_wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.contentHero_title {
    color: white;
    font-size: 3rem;
}

/* buttons */
.carousel_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    z-index: 3;
    padding: 0 12px;
}

.carousel_btn.prev { left: 10px;
display: none; }
.carousel_btn.next { right: 10px;
display: none; }
/*fim do banner carrossel*/


/*sidebar*/

/* ===============================
   SIDEBAR
================================ */
.menu__panel {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 340px;
  max-width: 90%;
  height: 100vh;
  background: #ffffff !important;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 1001;
  overflow-y: auto;

  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #12151b;
}

/* Sidebar aberta */
.menu__panel.is-open {
  transform: translateX(0) !important;
}

/* ===============================
   OVERLAY
================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Bloquear scroll */
body.menu-open {
  overflow: hidden;
}

/* ===============================
   CONTEÚDO INTERNO
================================ */
.menu__panel * {
  visibility: visible !important;
  opacity: 1 !important;
}

.menu__listWrapper {
  padding: 20px;
}

/* ===============================
   BOTÃO UNIVERSO (100% LARGURA)
================================ */
#menuUniverseSelection {
  width: 100%;
  display: block;
  padding: 0;
  margin-bottom: 16px;
  border: none;
  background: transparent;
}

/* Tab interna */
#menuUniverseSelection .segmentedPart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;

  width: 100%;
  padding: 14px 20px;

  box-sizing: border-box;
  cursor: pointer;

  font-size: 15px;
  font-weight: 600;
  color: #12151b;

  background: #f3f4f6;
  border-radius: 14px;

  transition: background 0.2s ease;
}

/* Hover */
#menuUniverseSelection .segmentedPart:hover {
  background: #e5e7eb;
}

/* Ativo */
#menuUniverseSelection .segmentedPart.selected {
  background: #12151b;
  color: #ffffff;
}

/* Ícone */
#menuUniverseSelection img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===============================
   TÍTULOS
================================ */
.titleBlock.title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin: 24px 0 12px;
}

/* ===============================
   LISTAS
================================ */
.menu__panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menuSelectionList {
  margin-bottom: 10px;
}

/* ===============================
   LINKS DO MENU
================================ */
.menuSelectionList a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #12151b;
  background: #f8f8f8;
  transition: background 0.2s ease, transform 0.15s ease;
}

.menuSelectionList a:hover {
  background: #ececec;
  transform: translateX(2px);
}

/* ===============================
   ÍCONES
================================ */
.menu_icon {
  flex-shrink: 0;
}

.menu_icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ===============================
   ITEM ESPECIAL (EVENTO)
================================ */
.menuSelectionList.event a {
  background: #d23948 !important;
  color: #ffffff !important;
  font-weight: 700;
}

.menuSelectionList.event a:hover {
  background: #b82f3d !important;
}

/* ===============================
   MARCAS
================================ */
.menuBrandCarousel {
  margin: 20px 0;
}

.menuBrandCarousel_wrapper {
  display: flex;
  gap: 12px;
}

.menuBrandCarousel_wrapper a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.menuBrandCarousel_wrapper img {
  max-width: 140px;
  border-radius: 14px;
}

/* ===============================
   FOOTER
================================ */
.menu__listFooter {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.menu__listFooter a {
  background: transparent;
  padding: 10px 0;
}

.menu__listFooter .menu_label {
  font-size: 13px;
  font-weight: 500;
}

/* ===============================
   SCROLL
================================ */
.menu__panel::-webkit-scrollbar {
  width: 6px;
}

.menu__panel::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 6px;
}

/* Imagem NORMAL */
#menuUniverseSelection img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: filter 0.2s ease;
}

/* Imagem BRANCA quando ativo */
#menuUniverseSelection .segmentedPart.selected img {
  filter: brightness(0) invert(1);
}





/*resposividade pelo produto*/

/* Sticky apenas para desktop */
.lateral-product-info .position-sticky {
  position: sticky;
  top: 120px;
  will-change: transform;
}

/* Ajuste do sticky em telas menores */
@media (max-width: 1200px) {
  .lateral-product-info .position-sticky {
    top: 80px; /* menos espaço para telas menores */
  }
}

@media (max-width: 992px) { /* tablet */
  .lateral-product-info .position-sticky {
    position: relative; /* deixa scroll normal */
    top: auto;
  }
}

/* Grid mobile: canvas 3D em cima, info abaixo */
@media (max-width: 768px) {
  .lateral-product-images,
  .lateral-product-info {
    display: block;
    width: 100%;
  }
  .lateral-product-images {
    margin-bottom: 20px; /* espaço entre canvas e info */
  }
}

/*Canvas 3D responsivo */
#meuCanvas {
  width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 8px;
}


/* Botões/material options adaptáveis */
.material-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.material-options .material-btn {
  flex: 1 1 48%; /* 2 por linha no mobile */
  min-width: 100px;
}

/* Ajustes de tipografia para mobile */
@media (max-width: 768px) {
  .dz-content h1 {
    font-size: 24px !important;
    line-height: 28px !important;
  }
  .meta-content .font-40 {
    font-size: 32px !important;
  }
}










/*estilização do produto*/
/* Container */


.custom-select1 {
  position: relative;
  min-width: 350px;
}

/* Select base */
.custom-select1 select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  
  
  width: 100%;
  
  font-size: 1.1rem;
  font-weight: 500;

  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  color: #111827;
  cursor: pointer;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

/* Hover */
.custom-select1 select:hover {
  border-color: #6366f1;
}

/* Focus */
.custom-select1 select:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

/* Seta personalizada */
.custom-select1::after {
  content: "▾";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #6b7280;
  pointer-events: none;
}




