 
      html,body {
         width: 100%;
         margin: auto;
      }
  header {
    width: 100%;
    padding: 10px;
    background: rgb(0, 0, 0);
    
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s;
    color: white;
}

.cart {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s;
    color: white;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: left 0.3s ease;
}

.mobile-menu-content {
    background: white;
    width: 280px;
    height: 100%;
    padding: 20px;
    position: relative;
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}


.mobile-menu ul {
    list-style: none;
    margin-top: 60px;
}

.mobile-menu li {
    margin-bottom: 20px;
}



#slideTexto {
    background-color: #ff3131;
    text-align: center;
    padding: 20px 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    background: white;
    width: 280px;
    height: 100%;
    padding: 20px;
    position: relative;
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 60px;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

 .product-badge

 {
    background: linear-gradient(135deg, #70f488, #70f488);
    color: white;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    
}

   /* Container do carrossel */
.andes-carousel-snapped__wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* Slides */
.andes-carousel-snapped__slide {
  min-width: 90%; /* diminui o tamanho do slide */
  margin: 0 5px;  /* espaço entre slides */
  box-sizing: border-box;
  text-align: center;
}


.andes-carousel-snapped__slide img,
.andes-carousel-snapped__slide video {
  width: 100%;
  max-width: 450px;  
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
}


.carousel-dots {
  text-align: center;
  margin-top: 10px;
  
}

.carousel-dots button {
  width: 8px;  /* menor bolinha */
  height: 8px;
  margin: 0 3px;
  border-radius: 50%;
  border: none;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dots button.active {
  background-color: #007bff;
}


.carousel-dots {
  text-align: center;
  margin-top: 10px;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border-radius: 50%;
  border: none;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}
.carousel-dots button.active {
  background-color: #007bff;
}




.thumbnail-images {
    display: grid
;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.thumbnail

 {
    width: 100%;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}



.thumbnail.active {
    border-color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.thumbnail:hover {
    border-color: #000;
    transform: translateY(-2px);
}
.thumbnail:hover img {
    transform: scale(1.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}


@media (max-width: 480px) {
    .thumbnail {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .thumbnail {
        height: 60px;
    }
}


.andes-button.andes-button--loud {
          background: black;
   }


body {
      background: white;
   }

   .containerSelect {
      width: 300px;
      display: flex;
   }

.containerSelect > img {
    object-fit: contain;
    width: 70px;
    
    border: 1px solid rgba(7, 7, 7, 0.826);
    border-radius: 5px;
}

.containerSelect > img:nth-child(2) {
   margin-left: 10px;
}

    .custom-select {
      position: relative;
      width: 70px;
      font-family: Arial, sans-serif;
      border: 2px solid #3483fa;
      border-radius: 4px;
    }

    .custom-select select {
      display: none; /* escondemos o select padrão */
    }

    .select-selected {
      background-color: #fff;
      border: 1px solid #ccc;
      padding: 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .select-selected img {
      width: 40px;
      height: 40px;
      margin-right: 10px;
      border-radius: 5px;
    }

    .select-items {
      position: absolute;
      background-color: #fff;
      border: 1px solid #ccc;
      width: 100%;
      z-index: 99;
      display: none;
    }

    .select-items div {
      padding: 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .select-items div:hover {
      background-color: #f0f0f0;
    }

    .select-items img {
      width: 40px;
      height: 40px;
      margin-right: 10px;
      border-radius: 5px;
    }

.ui-pdp-price__subtitles {
                     margin-top: 10px;
                  }
.andes-carousel-snapped__wrapper {
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  overflow-y: hidden;
  width: 100%;
  align-items: center;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
}

.andes-carousel-snapped__slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
}

.andes-carousel-snapped__slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.dots-navigation li span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc; /* cor padrão cinza */
  transition: background-color 0.3s;
  cursor: pointer;
}

/* Dot ativo */
.dots-navigation li span.dots-navigation--active {
  background-color: #007bff; /* azul */
}

/* Ajuste para triangles, se quiser igualar visualmente */
.dots-navigation__triangle span {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 10px solid #ccc;
}

.dots-navigation__triangle span.dots-navigation--active {
  border-bottom-color: #007bff;
}

.dots-navigation li.dots-navigation__triangle {
   height: 9px;
}

 @media (max-width: 768px) {
    .product-section, #MainContent, .box-site-pdp, .reviews-list, .faq-section {
        padding: 0 0;
    }
}

.reviews-list {
    display: flex
;
    flex-direction: column;
    gap: 20px;
}
.reviews-list {
    margin: 20px auto;
    padding: 0 20px;
}

.review {
    border: 1px solid #ddd;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
}

.review {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 16px;
    background: white;
    transition: all 0.3s;
}

.imgs {
    width: 100%;
    display: flex
;
}

.imgs > img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.review-header {
    display: flex
;
    justify-content: space-between;
    font-weight: bold;
}

.review-header {
    display: flex
;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-stars {
    color: gold;
}

.review-stars {
    color: #ffc107;
    font-size: 16px;
}

.review-author {
    font-weight: 600;
    color: #000;
}

.review-time {
    color: #858585;
    font-size: 14px;
    font-weight: 400;
    margin-left: auto;
}

.review-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-actions {
    margin-top: 5px;
}

.review-actions {
    display: flex
;
    gap: 15px;
}

.review-action {
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 10px;
}

.review-action {
    display: flex
;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid #eee;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
    font-size: 14px;
}

 .comment-box {
            position: fixed;
            right: 30px;
            bottom: 30px;
            background: white;
            border-radius: 12px;
            padding: 16px 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #3bf64b;
            max-width: 400px;
            width: 80%;
            z-index: 1111;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .comment-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        .comment-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3bf664, #40ca00);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
            flex-shrink: 0;
        }

        .comment-text {
            flex: 1;
        }

        .comment-message {
            color: #374151;
            font-size: 15px;
            line-height: 1.4;
        }

        .username {
            font-weight: 600;
            color: #1f2937;
        }

        .timestamp {
            color: #6b7280;
            font-size: 13px;
            margin-top: 4px;
        }

        .comment-icon {
            width: 20px;
            height: 20px;
            color: #13ce2c;
            flex-shrink: 0;
        }

      
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .comment-box {
            animation: slideIn 0.3s ease-out;
        }

       
        @media (max-width: 480px) {
            .comment-box {
                margin: 0 10px;
                padding: 14px 16px;
            }
            
            .avatar {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }
            
            .comment-message {
                font-size: 14px;
            }
        }

.comment_none {
    display: none;
}


.imgs {
    width: 100%;
    display: flex;
}

.imgs > img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.imgs > img:nth-child(2) {
  margin-left: 20px;
  
}

@media (max-width: 768px) {
    .product-section, #MainContent, .box-site-pdp, .reviews-list, .faq-section {
        padding: 0 0;
    }
}

.faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}
.faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-section h2

 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}


.faq-list

 {
    display: flex
;
    flex-direction: column;
    gap: 15px;
}



.faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-align: left;
    transition: background-color 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.6;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question .material-icons {
    transition: transform 0.3s;
}

.faq-item.active .faq-question .material-icons {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}



.star.active {
  color: gold;
}

.guarantees {
    margin-bottom: 30px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.guarantee-item .material-icons {
    color: #28a745;
    font-size: 20px;
    margin-top: 2px;
}

.guarantee-item span:last-child {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}



  .andes-modal__overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* mostrar modal */
.andes-modal__overlay.active {
  display: flex;
}

.andes-modal__scroll {
 
  
  width: 100%;
  
  max-height: 80%;
  overflow-y: auto;
  
  
}

.andes-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.andes-modal__title {
  font-size: 18px;
  font-weight: bold;
}

.andes-modal__close-button {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

.ui-pdp-specs {
   margin-top: 10px;
}

main[role=main] {
   padding: 20px;
}

#productModal {
   padding: 10px;
}

@media screen and (min-width: 768px) {
            .header-wrapper.header-wrapper--modern .nav-modern-header .nav-modern-header-bound .nav-modern-header-bound-separation .nav-modern-header__categories {
                
                display: none
        ;
                
            }
        }