* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
  padding-top: 90px;
}

.topo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 8%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

.logo span {
  color: #6c3df4;
}

.menu {
  display: flex;
  gap: 35px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: #6c3df4;
  transition: 0.35s;
  border-radius: 20px;
}

.menu a:hover {
  color: #6c3df4;
}

.menu a:hover::after {
  width: 100%;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 13px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37,211,102,0.35);
}

.hero {
  min-height: 520px;
  padding: 70px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ffffff, #eee8ff);
}

.hero-texto {
  max-width: 560px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #555;
}

.hero-botoes a {
  display: inline-block;
  margin-right: 12px;
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.btn-principal {
  background: #6c3df4;
  color: #fff;
}

.btn-secundario {
  background: #fff;
  color: #6c3df4;
  border: 2px solid #6c3df4;
}

.hero-imagem {
  width: 320px;
  height: 320px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-3d {
  font-size: 90px;
  font-weight: bold;
  color: #6c3df4;
}

section {
  padding: 70px 8%;
}

section h2 {
  font-size: 34px;
  margin-bottom: 30px;
  text-align: center;
}

.grid-categorias,
.grid-produtos,
.grid-vantagens {
  display: grid;
  gap: 20px;
}

.grid-categorias {
  grid-template-columns: repeat(6, 1fr);
}

.categoria {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.grid-produtos {
  grid-template-columns: repeat(3, 1fr);
}

.produto {
  background: #fff;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.produto-foto {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  background: #eee8ff;
}

.produto-categoria {
  display: inline-block;
  margin-bottom: 10px;
  color: #6c3df4;
  font-weight: bold;
  font-size: 14px;
}

.produto h3 {
  margin-bottom: 10px;
}

.produto p {
  color: #666;
  margin-bottom: 12px;
}

.produto strong {
  display: block;
  font-size: 22px;
  margin-bottom: 15px;
}

.produto a {
  display: block;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.grid-passos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.passo {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  text-align: center;
}

.passo span {
  width: 48px;
  height: 48px;
  background: #6c3df4;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.passo h3 {
  margin-bottom: 10px;
}

.passo p {
  color: #666;
}

.grid-vantagens {
  grid-template-columns: repeat(4, 1fr);
}

.grid-vantagens div {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  font-weight: bold;
}

.contato {
  background: linear-gradient(135deg, #6c3df4, #3b1ea8);
  color: #fff;
}

.contato-box {
  max-width: 780px;
  margin: auto;
  text-align: center;
}

.contato-box h2 {
  color: #fff;
}

.contato-box p {
  font-size: 20px;
  margin-bottom: 28px;
}

.contato-box a {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 15px 28px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: bold;
}

.rodape {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 30px;
}

@media (max-width: 900px) {
  body {
    padding-top: 160px;
  }

  .topo {
    flex-direction: column;
    gap: 18px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .grid-categorias,
  .grid-produtos,
  .grid-vantagens,
  .grid-passos {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
   FILTROS DOS PRODUTOS
========================================== */

.filtros-produtos{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:45px;
}

.filtro{

    padding:12px 24px;

    border:none;

    background:white;

    border:2px solid #e7e7e7;

    border-radius:40px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.filtro:hover{

    background:#6c3df4;

    color:white;

    border-color:#6c3df4;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(108,61,244,.20);

}

.filtro.ativo{

    background:#6c3df4;

    color:white;

    border-color:#6c3df4;

    box-shadow:0 10px 25px rgba(108,61,244,.25);

}
/* ==========================================
   CARDS DOS PRODUTOS - VERSÃO PROFISSIONAL
========================================== */

.produto {
  background: #fff;
  padding: 18px;
  border-radius: 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
  transition: 0.35s;
  overflow: hidden;
}

.produto:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.produto-foto {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
  background: #eee8ff;
  transition: 0.4s;
}

.produto:hover .produto-foto {
  transform: scale(1.04);
}

.produto-categoria {
  display: inline-block;
  background: #eee8ff;
  color: #6c3df4;
  padding: 7px 14px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 12px;
}

.produto h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.produto p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
}

.produto strong {
  display: block;
  font-size: 26px;
  color: #111;
  margin-bottom: 18px;
}

.produto a {
  display: block;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.produto a:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37,211,102,0.28);
}
.pagina-produto {
  padding: 70px 8%;
}

.produto-detalhe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.produto-detalhe-img img {
  width: 100%;
  border-radius: 30px;
  background: #eee8ff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.produto-detalhe-info span {
  display: inline-block;
  background: #eee8ff;
  color: #6c3df4;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 18px;
}

.produto-detalhe-info h1 {
  font-size: 42px;
  margin-bottom: 18px;
}

.produto-detalhe-info p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.produto-detalhe-info h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.produto-detalhe-info ul {
  list-style: none;
  margin-bottom: 25px;
}

.produto-detalhe-info li {
  margin-bottom: 10px;
  font-size: 17px;
}

.comprar-produto,
.btn-detalhes,
.produto-nao-encontrado a {
  display: block;
  text-align: center;
  background: #25d366;
  color: #fff;
  padding: 14px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 12px;
}

.btn-detalhes {
  background: #6c3df4;
}

.produto-nao-encontrado {
  text-align: center;
  padding: 80px 8%;
}

@media (max-width: 900px) {
  .produto-detalhe {
    grid-template-columns: 1fr;
  }

  .produto-detalhe-info h1 {
    font-size: 34px;
  }
}
.produto-botoes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.produto .btn-detalhes {
  background: #6c3df4;
  color: #fff;
}

.produto .btn-comprar {
  background: #25d366;
  color: #fff;
}
.admin-container {
  padding: 60px 8%;
  max-width: 900px;
  margin: auto;
}

.admin-container h1 {
  margin-bottom: 10px;
}

.admin-form {
  display: grid;
  gap: 15px;
  margin: 30px 0;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.admin-form textarea {
  min-height: 120px;
}

.admin-form button,
.admin-botoes a,
.admin-botoes button,
.admin-produto button {
  background: #6c3df4;
  color: #fff;
  border: none;
  padding: 13px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.admin-produto {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 15px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.admin-botoes {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
/* ==============================
   PAINEL ADMINISTRATIVO
============================== */

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: #f4f4f8;
}

.admin-sidebar {
  background: #111;
  color: #fff;
  padding: 30px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.admin-sidebar h2 {
  font-size: 30px;
  margin-bottom: 35px;
}

.admin-sidebar h2 span {
  color: #6c3df4;
}

.admin-sidebar a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
}

.admin-content {
  padding: 40px;
}

.admin-content h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.admin-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  margin-top: 30px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.admin-form {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.admin-form.linha {
  grid-template-columns: 1fr auto;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.admin-form textarea {
  min-height: 120px;
}

.admin-form button,
.admin-botoes button,
.admin-categoria button,
.admin-produto-card button {
  background: #6c3df4;
  color: #fff;
  border: none;
  padding: 13px 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

.lista-categorias-admin {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.admin-categoria {
  background: #eee8ff;
  color: #6c3df4;
  padding: 10px 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.admin-categoria button {
  padding: 7px 12px;
  font-size: 12px;
}

.upload-box {
  border: 2px dashed #bbb;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  cursor: pointer;
  background: #fafafa;
  font-weight: bold;
  color: #555;
}

.upload-box input {
  display: none;
}

.preview-imagem {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  display: none;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.lista-admin {
  margin-top: 20px;
}

.admin-produto-card {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  align-items: center;
  background: #f8f8fb;
  padding: 15px;
  border-radius: 18px;
  margin-bottom: 15px;
}

.admin-produto-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  background: #eee8ff;
}

.admin-produto-card h3 {
  margin-bottom: 5px;
}

.admin-produto-card p {
  color: #666;
  margin-bottom: 5px;
}

.admin-botoes {
  margin-top: 25px;
}

@media (max-width: 900px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  .admin-form.linha,
  .admin-produto-card {
    grid-template-columns: 1fr;
  }
}
/* ==============================
   CMS KUBO3D - DASHBOARD
============================== */

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.dashboard-card {
  background: linear-gradient(135deg, #ffffff, #eee8ff);
  padding: 25px;
  border-radius: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.dashboard-card span {
  display: block;
  color: #666;
  font-weight: bold;
  margin-bottom: 10px;
}

.dashboard-card strong {
  font-size: 38px;
  color: #6c3df4;
}

/* ==============================
   FORMULÁRIO PRODUTO
============================== */

.admin-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  background: #f8f8fb;
  padding: 15px;
  border-radius: 16px;
}

.admin-checks label {
  font-weight: bold;
  color: #444;
}

/* ==============================
   AÇÕES DO FORMULÁRIO
============================== */

.admin-form-acoes {
  display: flex;
  gap: 15px;
}

.admin-form-acoes button:nth-child(2) {
  background: #555;
}

/* ==============================
   PESQUISA ADMIN
============================== */

.pesquisa-admin {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 16px;
  margin: 20px 0;
}

/* ==============================
   PRODUTOS ADMIN
============================== */

.admin-produto-acoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.admin-tags span {
  background: #eee8ff;
  color: #6c3df4;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.admin-produto-acoes button:nth-child(2) {
  background: #d93025;
}

/* ==============================
   RESPONSIVO
============================== */

@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-acoes {
    flex-direction: column;
  }

  .admin-produto-acoes {
    flex-direction: row;
  }
}
.status-btn{

    border:none;

    padding:8px 14px;

    border-radius:25px;

    cursor:pointer;

    font-weight:bold;

}

.status-btn.ativo{

    background:#2ecc71;

    color:white;

}

.status-btn.inativo{

    background:#e74c3c;

    color:white;

}
/* ==========================================
   GERENCIADOR PROFISSIONAL DE PRODUTOS
========================================== */

.admin-titulo-linha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.btn-novo-produto {
  display: inline-block;
  background: #6c3df4;
  color: #fff;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 30px;
  font-weight: bold;
  white-space: nowrap;
}

.admin-filtros {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px 220px;
  gap: 15px;
  margin: 25px 0;
}

.admin-filtros input,
.admin-filtros select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fff;
  font-size: 15px;
}

.tabela-admin-wrapper {
  width: 100%;
  overflow-x: auto;
}

.tabela-produtos-admin {
  width: 100%;
  border-collapse: collapse;
  min-width: 1050px;
}

.tabela-produtos-admin th,
.tabela-produtos-admin td {
  padding: 15px;
  border-bottom: 1px solid #ececf2;
  text-align: left;
  vertical-align: middle;
}

.tabela-produtos-admin th {
  background: #f7f7fb;
  color: #555;
  font-size: 13px;
  text-transform: uppercase;
}

.tabela-produtos-admin tbody tr {
  transition: 0.2s;
}

.tabela-produtos-admin tbody tr:hover {
  background: #fafaff;
}

.tabela-produto-imagem {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 14px;
  background: #eee8ff;
}

.tabela-produto-nome {
  display: block;
  margin-bottom: 6px;
}

.tabela-produtos-admin small {
  color: #777;
}

.acoes-tabela-produto {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-acao {
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.btn-acao.editar {
  background: #6c3df4;
}

.btn-acao.duplicar {
  background: #3478f6;
}

.btn-acao.excluir {
  background: #d93025;
}

.status-btn {
  border: none;
  padding: 8px 14px;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.status-btn.ativo {
  background: #209b50;
}

.status-btn.inativo {
  background: #d93025;
}

.tag-neutra {
  background: #ededed !important;
  color: #666 !important;
}

.mensagem-lista-vazia {
  display: none;
  text-align: center;
  padding: 35px;
  color: #777;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.admin-campo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-campo label {
  font-weight: bold;
  color: #444;
}

.admin-campo-grande {
  grid-column: 1 / -1;
}

.admin-campo input,
.admin-campo select,
.admin-campo textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-size: 16px;
}

.admin-campo textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-cancelar {
  background: #555 !important;
}

@media (max-width: 1000px) {
  .admin-filtros {
    grid-template-columns: 1fr;
  }

  .admin-titulo-linha {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-campo-grande {
    grid-column: auto;
  }
}
/* ==========================================
   UPLOADS E GALERIA DO PAINEL ADMINISTRATIVO
========================================== */

.admin-upload-bloco {
  margin-top: 10px;
  padding: 24px;
  background: #f8f8fb;
  border: 1px solid #ececf2;
  border-radius: 20px;
}

.admin-upload-bloco h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #222;
}

.ajuda-upload {
  margin-top: 10px;
  color: #777;
  font-size: 14px;
  line-height: 1.5;
}

.preview-galeria {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(120px, 1fr)
  );
  gap: 15px;
  margin-top: 20px;
}

.preview-galeria-item {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #eee8ff;
  border: 2px solid #e4e0f5;
  border-radius: 16px;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.08);
}

.preview-galeria-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-galeria-marcador {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 5px 9px;
  background: #6c3df4;
  color: #fff;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
}

/* ==========================================
   GALERIA NA PÁGINA INDIVIDUAL DO PRODUTO
========================================== */

.produto-detalhe {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 55px;
  align-items: start;
}

.produto-galeria {
  min-width: 0;
}

.produto-imagem-principal {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.11);
}

.produto-imagem-principal img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #f4f4f7;
  transition: opacity 0.2s ease;
}

.produto-miniaturas {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 4px 2px 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.produto-miniatura {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  padding: 4px;
  border: 2px solid transparent;
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
  transition: 0.25s;
}

.produto-miniatura img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.produto-miniatura:hover {
  transform: translateY(-3px);
  border-color: #bba9ff;
  box-shadow: 0 8px 18px rgba(108, 61, 244, 0.15);
}

.produto-miniatura.ativa {
  border-color: #6c3df4;
  box-shadow: 0 8px 20px rgba(108, 61, 244, 0.24);
}

/* ==========================================
   INFORMAÇÕES E SELOS DO PRODUTO
========================================== */

.produto-detalhe-info {
  padding-top: 10px;
}

.produto-detalhe-info .produto-detalhe-categoria {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  background: #eee8ff;
  color: #6c3df4;
  border-radius: 30px;
  font-weight: bold;
}

.produto-selos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 16px;
}

/*
  Esta regra é mais específica para impedir que os
  selos recebam o estilo geral dos spans da categoria.
*/

.produto-detalhe-info .selo-produto {
  display: inline-block;
  margin: 0;
  padding: 7px 13px;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.produto-detalhe-info .selo-novo {
  background: #3478f6;
}

.produto-detalhe-info .selo-promocao {
  background: #d93025;
}

.produto-detalhe-info .selo-destaque {
  background: #f59f00;
}

.produto-detalhe-info h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.produto-detalhe-info p {
  margin-bottom: 22px;
  color: #666;
  font-size: 18px;
  line-height: 1.65;
}

.produto-detalhe-info h2 {
  margin-bottom: 22px;
  color: #111;
  font-size: 34px;
}

.produto-detalhe-info ul {
  list-style: none;
  margin-bottom: 26px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.produto-detalhe-info li {
  padding: 8px 0;
  border-bottom: 1px solid #eeeeef;
  font-size: 17px;
}

.produto-detalhe-info li:last-child {
  border-bottom: none;
}

.comprar-produto {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.comprar-produto:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* ==========================================
   RESPONSIVIDADE DA GALERIA
========================================== */

@media (max-width: 900px) {
  .produto-detalhe {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .produto-imagem-principal img {
    height: 420px;
  }

  .preview-galeria {
    grid-template-columns: repeat(
      auto-fill,
      minmax(100px, 1fr)
    );
  }
}

@media (max-width: 600px) {
  .pagina-produto {
    padding: 45px 5%;
  }

  .produto-imagem-principal {
    border-radius: 20px;
  }

  .produto-imagem-principal img {
    height: 310px;
  }

  .produto-miniatura {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .produto-detalhe-info h1 {
    font-size: 31px;
  }

  .produto-detalhe-info h2 {
    font-size: 28px;
  }

  .admin-upload-bloco {
    padding: 18px;
  }

  .preview-galeria {
    grid-template-columns: repeat(2, 1fr);
  }
}