  
  
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; margin: 0; }
        .produto-container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .produto-detalhes { display: flex; gap: 30px; align-items: flex-start; }
        .produto-imagem { flex: 1; }
        .produto-info { flex: 1; }
        @media (max-width: 768px) { .produto-detalhes { flex-direction: column; } }

      
        .galeria-produto {
            margin-bottom: 20px;
        }

        .imagem-container {
            position: relative;
            margin-bottom: 10px;
        }

        .zoom-button {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .miniaturas-container {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .miniaturas-container img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s;
        }

        .miniaturas-container img.ativa {
            border-color: var(--cor-primaria);
        }
       
        .modal-galeria {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            overflow: auto;
        }

        .conteudo-modal {
            display: block;
            margin: auto;
            max-width: 90%;
            max-height: 90%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .fechar-modal {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }

        .anterior, .proxima {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 20px;
            transition: 0.3s;
            user-select: none;
        }

        .anterior {
            left: 0;
            border-radius: 0 3px 3px 0;
        }

        .proxima {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .anterior:hover, .proxima:hover {
            background-color: rgba(0,0,0,0.8);
        }
  

  .miniatura {
    width: 70px !important;
    height: 70px !important;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .miniatura:hover {
    border-color: #a82e03;
    transform: scale(1.05);
  }

  .miniatura.ativa {
    border-color: #a82e03;
    opacity: 0.9;
  }

  /* Estilos do Lightbox */
  #lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  #lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
  }
         
.prazo-destaque {
    color: #a82e03;
    font-weight: bold;
}
  .footer-copy {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid rgba(68, 59, 59, 0.08);
  font-size: 0.85rem;
  color: rgba(17, 16, 16, 0.7);
}
@media (max-width: 768px) {
  .produto-detalhes {
    display: flex ;
    flex-direction: column ;
    align-items: center ;
  }

  .produto-imagem {
    width: 100% ;
    display: flex ;
    justify-content: center;
    padding: 0 ;
    margin: 0 auto ;
  }

  .imagem-principal-container {
    width: 100% ;
    max-width: 100%;
    display: flex ;
    justify-content: center ;
  }

  .imagem-principal {
    width: 100% ;
    height: auto;
    max-width: 100%;
    max-height: 320px ;
    object-fit: contain ;
    margin: 0 auto ;
    display: block ;
  }

  .miniaturas-container {
    display: flex ;
    justify-content: center ;
    gap: 10px ;
    flex-wrap: wrap ;
    width: 100% ;
    margin-top: 12px;
    padding-bottom: 10px;
  }

  .miniatura {
    width: 60px ;
    height: 60px ;
    object-fit: cover ;
    border-radius: 5px ;
  }
}
