* {
  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;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-imagem-site {
  display: block;
  width: auto;
  max-width: 190px;
  height: 54px;
  object-fit: contain;
}

.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: none;
  border-radius: 18px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: 0.3s;
}

.categoria:hover {
  transform: translateY(-4px);
  color: #6c3df4;
  box-shadow: 0 12px 26px rgba(108, 61, 244, 0.13);
}

.grid-produtos {
  grid-template-columns: repeat(3, 1fr);
}

.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-link-imagem {
  display: block;
  overflow: hidden;
  border-radius: 22px;
}

.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);
}

.produto-botoes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.produto .btn-detalhes {
  background: #6c3df4;
  color: #fff;
}

.produto .btn-detalhes:hover {
  background: #5630d2;
}

.produto .btn-comprar {
  background: #25d366;
  color: #fff;
}

.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;
}

.informacoes-loja {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.contato-box .informacoes-loja p {
  margin-bottom: 10px;
  font-size: 15px;
}

.contato-box .informacoes-loja a {
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: #fff;
  text-decoration: underline;
}

.redes-sociais-loja {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.contato-box .redes-sociais-loja a {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  text-decoration: none;
}

.rodape {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 30px;
}

/* ==========================================
   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: 2px solid #e7e7e7;
  background: #fff;
  border-radius: 40px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: 0.35s;
}

.filtro:hover {
  background: #6c3df4;
  color: #fff;
  border-color: #6c3df4;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(108, 61, 244, 0.2);
}

.filtro.ativo {
  background: #6c3df4;
  color: #fff;
  border-color: #6c3df4;
  box-shadow: 0 10px 25px rgba(108, 61, 244, 0.25);
}

.mensagem-produtos {
  grid-column: 1 / -1;
  text-align: center;
  padding: 35px;
  color: #777;
}

/* ==========================================
   PÁGINA INDIVIDUAL DO PRODUTO
========================================== */

.pagina-produto {
  padding: 70px 8%;
}

.produto-carregando {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.produto-carregando p {
  padding: 18px 24px;
  background: #fff;
  border-radius: 20px;
  color: #666;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.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);
}

.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;
}

.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;
  text-align: left;
}

.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,
.btn-detalhes,
.produto-nao-encontrado a {
  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);
}

.btn-detalhes {
  background: #6c3df4;
}

.produto-nao-encontrado {
  text-align: center;
  padding: 80px 8%;
}

.produto-nao-encontrado h1 {
  margin-bottom: 15px;
}

.produto-nao-encontrado p {
  margin-bottom: 25px;
  color: #666;
}

.produto-nao-encontrado a {
  display: inline-block;
  width: auto;
  padding-left: 28px;
  padding-right: 28px;
}

/* ==========================================
   FORMULÁRIO DE PEDIDO PELO WHATSAPP
========================================== */

.pedido-whatsapp-box {
  margin-top: 30px;
  padding: 26px;
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.pedido-whatsapp-box h3 {
  margin-bottom: 8px;
  color: #222;
  font-size: 25px;
}

.produto-detalhe-info .pedido-whatsapp-introducao {
  margin-bottom: 22px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.pedido-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pedido-campo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pedido-campo-grande {
  grid-column: 1 / -1;
}

.pedido-campo label {
  color: #333;
  font-size: 15px;
  font-weight: bold;
}

.pedido-campo input,
.pedido-campo select,
.pedido-campo textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d9d9df;
  border-radius: 14px;
  background: #fff;
  color: #222;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pedido-campo textarea {
  min-height: 120px;
  resize: vertical;
}

.pedido-campo input:focus,
.pedido-campo select:focus,
.pedido-campo textarea:focus {
  border-color: #6c3df4;
  box-shadow: 0 0 0 4px rgba(108, 61, 244, 0.12);
}

.pedido-pagamento-aviso {
  margin-top: 20px;
  padding: 17px 18px;
  background: #f2fff6;
  border: 1px solid #c9efd5;
  border-radius: 16px;
}

.pedido-pagamento-aviso strong {
  display: block;
  margin-bottom: 5px;
  color: #188442;
  font-size: 16px;
}

.produto-detalhe-info .pedido-pagamento-aviso p {
  margin: 0;
  color: #4c6755;
  font-size: 14px;
  line-height: 1.5;
}

.pedido-whatsapp-box .comprar-produto {
  margin-top: 22px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
}

/* ==========================================
   PAINEL ADMINISTRATIVO
========================================== */

.admin-container {
  padding: 60px 8%;
  max-width: 900px;
  margin: auto;
}

.admin-container h1 {
  margin-bottom: 10px;
}

.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;
  overflow-y: auto;
}

.admin-sidebar h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.admin-sidebar h2 span {
  color: #6c3df4;
}

.admin-usuario-logado {
  margin-bottom: 25px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
}

.admin-usuario-logado strong {
  color: #fff;
}

.admin-sidebar a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.25s;
}

.admin-sidebar a:hover {
  background: rgba(108, 61, 244, 0.65);
}

.admin-sidebar .admin-link-sair {
  background: rgba(217, 48, 37, 0.35);
}

.admin-sidebar .admin-link-sair:hover {
  background: #d93025;
}

.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-card > h2 {
  text-align: left;
  margin-bottom: 10px;
}

.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;
}

.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: 25px;
}

.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;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 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;
}

.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;
}

.pesquisa-admin {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.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;
}

.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 {
  display: block;
  margin-top: 4px;
  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;
}

.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;
}

.tag-neutra {
  background: #ededed !important;
  color: #666 !important;
}

.mensagem-lista-vazia {
  display: none;
  text-align: center;
  padding: 35px;
  color: #777;
}

/* ==========================================
   FORMULÁRIOS DO PAINEL
========================================== */

.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;
}

.admin-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  background: #f8f8fb;
  padding: 15px;
  border-radius: 16px;
}

.admin-checks label {
  font-weight: bold;
  color: #444;
}

.admin-checks input {
  width: auto;
  margin-right: 6px;
}

.admin-form-acoes {
  display: flex;
  gap: 15px;
}

.btn-cancelar {
  background: #555 !important;
}

/* ==========================================
   UPLOADS E GALERIA DO PAINEL
========================================== */

.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;
}

.upload-box {
  display: block;
  border: 2px dashed #bbb;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  cursor: pointer;
  background: #fafafa;
  font-weight: bold;
  color: #555;
  transition: 0.25s;
}

.upload-box:hover {
  border-color: #6c3df4;
  color: #6c3df4;
  background: #f8f5ff;
}

.upload-box input {
  display: none;
}

.ajuda-upload {
  margin-top: 10px;
  color: #777;
  font-size: 14px;
  line-height: 1.5;
}

.preview-imagem {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  display: none;
  margin-top: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.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;
}

/* ==========================================
   SEO DO PAINEL
========================================== */

.admin-seo-bloco {
  padding: 24px;
  background: #f8f8fb;
  border: 1px solid #ececf2;
  border-radius: 20px;
}

.admin-seo-titulo {
  margin-bottom: 20px;
}

.admin-seo-titulo h3 {
  margin-bottom: 6px;
}

.admin-seo-titulo p {
  color: #666;
}

.admin-ajuda-campo {
  color: #777;
  font-size: 13px;
  line-height: 1.5;
}

.preview-url-seo {
  margin-top: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 12px;
  overflow-wrap: anywhere;
}

.preview-url-seo span {
  color: #777;
}

.contador-seo {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #777;
  font-size: 13px;
}

.contador-seo .contador-limite,
.contador-limite {
  color: #d93025;
}

.preview-google {
  margin-top: 22px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 16px;
}

.preview-google-endereco {
  display: block;
  margin-bottom: 7px;
  color: #238636;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.preview-google strong {
  display: block;
  margin-bottom: 8px;
  color: #1a0dab;
  font-size: 20px;
  font-weight: 500;
}

.preview-google p {
  color: #555;
  line-height: 1.5;
}

/* ==========================================
   CONFIGURAÇÕES DA LOJA
========================================== */

.configuracoes-bloco {
  padding: 24px;
  background: #f8f8fb;
  border: 1px solid #ececf2;
  border-radius: 20px;
}

.configuracoes-bloco h3 {
  margin-bottom: 18px;
  font-size: 21px;
}

.preview-logo-loja {
  display: none;
  width: auto;
  max-width: 280px;
  max-height: 140px;
  margin-top: 18px;
  padding: 12px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 16px;
}

.mensagem-configuracoes {
  display: none;
  padding: 15px 18px;
  border-radius: 14px;
  font-weight: bold;
}

.mensagem-configuracoes.sucesso {
  background: #e9f9ef;
  color: #16723a;
  border: 1px solid #bce8cc;
}

.mensagem-configuracoes.erro {
  background: #fff0ef;
  color: #a9251e;
  border: 1px solid #f0c4c0;
}

/* ==========================================
   RESPONSIVIDADE
========================================== */

@media (max-width: 1100px) {
  .grid-categorias {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .admin-filtros {
    grid-template-columns: 1fr;
  }

  .admin-titulo-linha {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }

  .logo-imagem-site {
    max-width: 170px;
    height: 48px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .grid-produtos,
  .grid-vantagens,
  .grid-passos {
    grid-template-columns: 1fr;
  }

  .produto-detalhe {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .produto-imagem-principal img {
    height: 420px;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  .admin-content {
    padding: 25px;
  }

  .admin-form.linha {
    grid-template-columns: 1fr;
  }

  .admin-form-acoes {
    flex-direction: column;
  }

  .preview-galeria {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

@media (max-width: 700px) {
  .grid-categorias {
    grid-template-columns: 1fr;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-campo-grande {
    grid-column: auto;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .pedido-whatsapp-box {
    padding: 20px;
    border-radius: 20px;
  }

  .pedido-form-grid {
    grid-template-columns: 1fr;
  }

  .pedido-campo-grande {
    grid-column: auto;
  }

  .pedido-whatsapp-box h3 {
    font-size: 22px;
  }

  .configuracoes-bloco,
  .admin-seo-bloco {
    padding: 18px;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 210px;
  }

  section {
    padding: 50px 5%;
  }

  .pagina-produto {
    padding: 45px 5%;
  }

  .hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-imagem {
    width: 260px;
    height: 260px;
  }

  .card-3d {
    font-size: 72px;
  }

  .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);
  }

  .admin-content {
    padding: 15px;
  }

  .admin-card {
    padding: 20px;
  }
}

@media (max-width: 500px) {
  .logo-imagem-site {
    max-width: 145px;
    height: 43px;
  }

  .pedido-whatsapp-box {
    padding: 17px;
  }

  .pedido-campo input,
  .pedido-campo select,
  .pedido-campo textarea {
    font-size: 16px;
  }

  .hero-botoes a {
    display: block;
    width: 100%;
    margin: 10px 0 0;
  }

  .btn-whatsapp {
    width: 100%;
    text-align: center;
  }
}
/* ==========================================
   PÁGINAS INSTITUCIONAIS
========================================== */

.pagina-institucional {
  min-height: 70vh;
  padding-bottom: 70px;
}

.institucional-cabecalho {
  padding: 75px 8% 55px;
  background: linear-gradient(
    135deg,
    #ffffff,
    #eee8ff
  );
  text-align: center;
}

.institucional-etiqueta {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  background: #ffffff;
  color: #6c3df4;
  border: 1px solid #ddd4ff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
}

.institucional-cabecalho h1 {
  margin-bottom: 18px;
  color: #222;
  font-size: 46px;
  line-height: 1.15;
}

.institucional-cabecalho p {
  max-width: 750px;
  margin: auto;
  color: #666;
  font-size: 19px;
  line-height: 1.6;
}

.institucional-conteudo {
  display: grid;
  gap: 25px;
  max-width: 1050px;
  margin: auto;
  padding: 55px 6% 0;
}

.institucional-card {
  padding: 30px;
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.institucional-card h2 {
  margin-bottom: 18px;
  color: #222;
  font-size: 27px;
  text-align: left;
}

.institucional-card h3 {
  margin-bottom: 8px;
  color: #333;
  font-size: 18px;
}

.institucional-card p {
  margin-bottom: 15px;
  color: #5d5d65;
  font-size: 16px;
  line-height: 1.75;
}

.institucional-card p:last-child {
  margin-bottom: 0;
}

.institucional-card a {
  color: #5630d2;
  font-weight: bold;
}

.institucional-lista,
.institucional-passos {
  margin: 0 0 18px 22px;
  color: #5d5d65;
}

.institucional-lista li,
.institucional-passos li {
  margin-bottom: 11px;
  padding-left: 5px;
  font-size: 16px;
  line-height: 1.65;
}

.institucional-lista-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.institucional-lista-cards > div {
  padding: 22px;
  background: #f8f8fb;
  border: 1px solid #ececf2;
  border-radius: 18px;
}

.institucional-lista-cards p {
  margin: 0;
  font-size: 15px;
}

.institucional-destaque {
  background: #f2fff6;
  border-color: #c8ecd4;
}

.institucional-contato-card {
  background: linear-gradient(
    135deg,
    #6c3df4,
    #3b1ea8
  );
  color: #fff;
  text-align: center;
}

.institucional-contato-card h2,
.institucional-contato-card p,
.institucional-contato-card a {
  color: #fff;
}

.institucional-botao {
  display: inline-block;
  margin-top: 10px;
  padding: 15px 26px;
  background: #25d366;
  color: #fff !important;
  border-radius: 35px;
  text-decoration: none;
  transition: 0.3s;
}

.institucional-botao:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.institucional-contato-email {
  margin-top: 20px;
}

.rodape-institucional {
  display: grid;
  gap: 20px;
}

.rodape-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.rodape-links a {
  color: #fff;
  text-decoration: none;
}

.rodape-links a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .institucional-cabecalho {
    padding: 55px 5% 40px;
  }

  .institucional-cabecalho h1 {
    font-size: 34px;
  }

  .institucional-cabecalho p {
    font-size: 17px;
  }

  .institucional-conteudo {
    padding: 38px 5% 0;
  }

  .institucional-card {
    padding: 22px;
    border-radius: 20px;
  }

  .institucional-card h2 {
    font-size: 23px;
  }

  .institucional-lista-cards {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
   NOVA PÁGINA INICIAL KUBO3D
================================================== */

/* Evita que âncoras fiquem escondidas pelo menu fixo */

#inicio,
#categorias,
#produtos,
#como-funciona,
#faq,
#contato {
  scroll-margin-top: 100px;
}

/* ==================================================
   ELEMENTOS GERAIS DA HOME
================================================== */

.secao-home {
  padding: 85px 8%;
}

.secao-cabecalho {
  max-width: 780px;
  margin: 0 auto 45px;
  text-align: center;
}

.secao-cabecalho h2 {
  margin: 12px 0 16px;
  color: #1c1c22;
  font-size: 38px;
  line-height: 1.2;
}

.secao-cabecalho p {
  color: #666673;
  font-size: 18px;
  line-height: 1.65;
}

.secao-etiqueta {
  display: inline-block;
  padding: 8px 16px;
  background: #eee8ff;
  color: #6c3df4;
  border: 1px solid #ded4ff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==================================================
   HERO PROFISSIONAL
================================================== */

.hero-profissional {
  position: relative;
  min-height: 650px;
  padding: 90px 8%;
  gap: 60px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 25%,
      rgba(108, 61, 244, 0.17),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f7f4ff 55%,
      #eee8ff 100%
    );
}

.hero-profissional::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -130px;
  width: 360px;
  height: 360px;
  border: 60px solid rgba(108, 61, 244, 0.05);
  border-radius: 50%;
}

.hero-profissional::after {
  content: "";
  position: absolute;
  bottom: -170px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: rgba(108, 61, 244, 0.04);
  border-radius: 50%;
}

.hero-profissional > * {
  position: relative;
  z-index: 1;
}

.hero-profissional .hero-texto {
  max-width: 650px;
}

.hero-etiqueta {
  display: inline-block;
  margin-bottom: 20px;
  padding: 9px 17px;
  background: #ffffff;
  color: #6c3df4;
  border: 1px solid #ddd3ff;
  border-radius: 30px;
  box-shadow: 0 8px 22px rgba(108, 61, 244, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.hero-profissional h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: #18181d;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-profissional .hero-texto > p {
  max-width: 590px;
  margin-bottom: 28px;
  color: #5e5e68;
  font-size: 20px;
  line-height: 1.65;
}

.hero-beneficios {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px 18px;
  max-width: 590px;
  margin-bottom: 32px;
}

.hero-beneficios span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #393940;
  font-size: 15px;
  font-weight: 600;
}

.hero-beneficios span::first-letter {
  color: #6c3df4;
}

.hero-profissional .hero-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-profissional .hero-botoes a {
  margin: 0;
  padding: 15px 25px;
  transition: 0.3s;
}

.hero-profissional .btn-principal {
  box-shadow: 0 12px 28px rgba(108, 61, 244, 0.27);
}

.hero-profissional .btn-principal:hover {
  background: #5930d8;
  transform: translateY(-3px);
}

.hero-profissional .btn-secundario:hover {
  background: #6c3df4;
  color: #ffffff;
  transform: translateY(-3px);
}

.hero-profissional .hero-observacao {
  max-width: 580px;
  margin-top: 20px;
  margin-bottom: 0;
  color: #777782;
  font-size: 13px;
  line-height: 1.5;
}

.hero-profissional .hero-imagem {
  width: min(420px, 100%);
  height: 430px;
  padding: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.95),
      rgba(238, 232, 255, 0.95)
    );
  border: 1px solid rgba(108, 61, 244, 0.13);
  border-radius: 52px;
  box-shadow:
    0 35px 70px rgba(49, 28, 112, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-objeto-visual {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 35px;
  background:
    radial-gradient(
      circle at center,
      #ffffff 0%,
      #f5f1ff 65%,
      #e8dfff 100%
    );
}

.hero-objeto-visual::before,
.hero-objeto-visual::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  transform: rotate(25deg);
}

.hero-objeto-visual::before {
  top: 40px;
  left: 35px;
  width: 85px;
  height: 85px;
  border: 2px solid rgba(108, 61, 244, 0.16);
}

.hero-objeto-visual::after {
  right: 35px;
  bottom: 45px;
  width: 110px;
  height: 110px;
  background: rgba(108, 61, 244, 0.07);
}

.hero-objeto-visual .card-3d {
  position: relative;
  z-index: 1;
  font-size: 110px;
  line-height: 1;
  text-shadow: 0 16px 30px rgba(108, 61, 244, 0.22);
}

.hero-objeto-visual > span {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 10px 18px;
  background: #ffffff;
  color: #575761;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  font-size: 14px;
  font-weight: 700;
}

/* ==================================================
   FAIXA DE BENEFÍCIOS
================================================== */

.faixa-beneficios {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 8%;
  background: #17171c;
}

.faixa-beneficio {
  display: flex;
  min-height: 145px;
  gap: 15px;
  align-items: center;
  padding: 28px 24px;
  background: #17171c;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.faixa-beneficio:last-child {
  border-right: 0;
}

.faixa-beneficio-icone {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  background: rgba(108, 61, 244, 0.19);
  color: #bca8ff;
  border: 1px solid rgba(188, 168, 255, 0.2);
  border-radius: 14px;
  font-size: 21px;
  font-weight: bold;
}

.faixa-beneficio strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 16px;
}

.faixa-beneficio p {
  margin: 0;
  color: #ababaf;
  font-size: 13px;
  line-height: 1.45;
}

/* ==================================================
   CATEGORIAS
================================================== */

.categorias.secao-home {
  background: #f8f8fa;
}

.categorias .grid-categorias {
  grid-template-columns: repeat(
    auto-fit,
    minmax(150px, 1fr)
  );
  max-width: 1250px;
  margin: auto;
}

.categorias .categoria {
  position: relative;
  min-height: 125px;
  padding: 26px 18px;
  overflow: hidden;
  border: 1px solid #ececf2;
  cursor: pointer;
  transition: 0.3s;
}

.categorias .categoria::before {
  content: "3D";
  display: flex;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  align-items: center;
  justify-content: center;
  background: #eee8ff;
  color: #6c3df4;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
}

.categorias .categoria:hover {
  color: #6c3df4;
  border-color: #d7ccff;
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(58, 37, 123, 0.11);
}

/* ==================================================
   PRODUTOS DA HOME
================================================== */

.produtos.secao-home {
  background: #ffffff;
}

.produtos .grid-produtos {
  max-width: 1250px;
  margin: auto;
}

.produto-link-imagem {
  display: block;
  overflow: hidden;
  border-radius: 22px;
}

.produto-link-imagem .produto-foto {
  margin-bottom: 0;
}

.produto-link-imagem + .produto-categoria {
  margin-top: 18px;
}

.mensagem-produtos {
  grid-column: 1 / -1;
  padding: 35px;
  color: #777;
  text-align: center;
}

/* ==================================================
   PERSONALIZAÇÃO
================================================== */

.personalizacao-home {
  padding: 90px 8%;
  background:
    linear-gradient(
      135deg,
      #17171c 0%,
      #252033 54%,
      #3d2687 100%
    );
  color: #ffffff;
}

.personalizacao-home-conteudo {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  max-width: 1250px;
  margin: auto;
  gap: 70px;
  align-items: center;
}

.personalizacao-home .secao-etiqueta {
  background: rgba(255, 255, 255, 0.09);
  color: #d0c3ff;
  border-color: rgba(255, 255, 255, 0.13);
}

.personalizacao-home-texto h2 {
  max-width: 650px;
  margin: 16px 0 22px;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.15;
}

.personalizacao-home-texto > p {
  max-width: 650px;
  margin-bottom: 25px;
  color: #c8c6cf;
  font-size: 18px;
  line-height: 1.7;
}

.personalizacao-home-texto ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  list-style: none;
}

.personalizacao-home-texto li {
  position: relative;
  padding-left: 28px;
  color: #f0eff4;
  line-height: 1.5;
}

.personalizacao-home-texto li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a98dff;
  font-weight: bold;
}

.btn-personalizacao {
  display: inline-block;
  padding: 15px 27px;
  background: #6c3df4;
  color: #ffffff;
  border-radius: 35px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-personalizacao:hover {
  background: #7d53fa;
  transform: translateY(-3px);
  box-shadow: 0 13px 30px rgba(108, 61, 244, 0.32);
}

.personalizacao-home-visual {
  display: grid;
  gap: 17px;
}

.personalizacao-visual-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 3px 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.personalizacao-visual-card > span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  grid-row: 1 / 3;
  align-items: center;
  justify-content: center;
  background: #6c3df4;
  color: #ffffff;
  border-radius: 17px;
  font-size: 20px;
  font-weight: 800;
}

.personalizacao-visual-card strong {
  align-self: end;
  color: #ffffff;
  font-size: 18px;
}

.personalizacao-visual-card p {
  margin: 4px 0 0;
  color: #c8c6cf;
  font-size: 14px;
  line-height: 1.5;
}

/* ==================================================
   COMO FUNCIONA
================================================== */

.como-funciona.secao-home {
  background: #f8f8fa;
}

.grid-passos-completo {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1250px;
  margin: auto;
}

.grid-passos-completo .passo {
  position: relative;
  min-height: 230px;
  padding: 32px 27px;
  border: 1px solid #ececf2;
  text-align: left;
  transition: 0.3s;
}

.grid-passos-completo .passo:hover {
  border-color: #d9ceff;
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(52, 34, 112, 0.1);
}

.grid-passos-completo .passo span {
  margin-bottom: 22px;
}

.grid-passos-completo .passo h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.grid-passos-completo .passo p {
  line-height: 1.6;
}

/* ==================================================
   VANTAGENS
================================================== */

.vantagens.secao-home {
  background: #ffffff;
}

.grid-vantagens-profissional {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1250px;
  margin: auto;
}

.grid-vantagens-profissional .vantagem-card {
  padding: 30px 25px;
  background: #ffffff;
  border: 1px solid #ececf2;
  border-radius: 23px;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: 0.3s;
}

.grid-vantagens-profissional .vantagem-card:hover {
  border-color: #d7ccff;
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(58, 37, 123, 0.1);
}

.vantagem-card > span {
  display: inline-flex;
  width: 45px;
  height: 45px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  background: #eee8ff;
  color: #6c3df4;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
}

.vantagem-card h3 {
  margin-bottom: 12px;
  color: #25252b;
  font-size: 20px;
}

.vantagem-card p {
  color: #686873;
  font-size: 15px;
  line-height: 1.65;
}

/* ==================================================
   INFORMAÇÕES DA COMPRA
================================================== */

.informacoes-compra-home {
  padding: 75px 8%;
  background: #eee8ff;
}

.informacoes-compra-conteudo {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  max-width: 1250px;
  margin: auto;
  gap: 55px;
  align-items: center;
}

.informacoes-compra-conteudo h2 {
  margin: 16px 0 16px;
  color: #24232a;
  font-size: 36px;
  line-height: 1.2;
}

.informacoes-compra-conteudo p {
  color: #646370;
  font-size: 17px;
  line-height: 1.65;
}

.informacoes-compra-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.informacoes-compra-links a {
  position: relative;
  padding: 18px 46px 18px 19px;
  background: #ffffff;
  color: #36343e;
  border: 1px solid #ded5f9;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.informacoes-compra-links a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 18px;
  color: #6c3df4;
  transform: translateY(-50%);
}

.informacoes-compra-links a:hover {
  color: #6c3df4;
  border-color: #bba9ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(108, 61, 244, 0.11);
}

/* ==================================================
   FAQ
================================================== */

.faq-home {
  background: #f8f8fa;
}

.faq-lista {
  display: grid;
  max-width: 900px;
  margin: auto;
  gap: 13px;
}

.faq-item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e8e8ee;
  border-radius: 18px;
  transition: 0.25s;
}

.faq-item[open] {
  border-color: #d1c4ff;
  box-shadow: 0 13px 30px rgba(52, 34, 112, 0.08);
}

.faq-item summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  color: #29282f;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: #eee8ff;
  color: #6c3df4;
  border-radius: 50%;
  font-size: 21px;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-resposta {
  padding: 0 22px 22px;
}

.faq-resposta p {
  color: #686873;
  font-size: 16px;
  line-height: 1.7;
}

/* ==================================================
   CONTATO PROFISSIONAL
================================================== */

.contato-profissional {
  position: relative;
  overflow: hidden;
  padding: 95px 8%;
}

.contato-profissional::before,
.contato-profissional::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.contato-profissional::before {
  top: -120px;
  left: -100px;
  width: 330px;
  height: 330px;
}

.contato-profissional::after {
  right: -100px;
  bottom: -150px;
  width: 400px;
  height: 400px;
}

.contato-profissional .contato-box {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.contato-etiqueta {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}

.contato-profissional h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.2;
}

.contato-profissional .contato-box > p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.informacoes-loja {
  display: grid;
  max-width: 700px;
  margin: 35px auto 0;
  gap: 10px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
}

.informacoes-loja[hidden] {
  display: none;
}

.informacoes-loja p {
  margin: 0;
  font-size: 15px;
}

.informacoes-loja a {
  color: #ffffff;
}

.redes-sociais-loja {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ==================================================
   RODAPÉ COMPLETO
================================================== */

.rodape-completo {
  padding: 0;
  background: #111116;
  text-align: left;
}

.rodape-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  max-width: 1300px;
  margin: auto;
  gap: 50px;
  padding: 65px 8%;
}

.rodape-coluna {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.rodape-coluna h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 17px;
}

.rodape-coluna p {
  color: #aaaab1;
  font-size: 14px;
  line-height: 1.65;
}

.rodape-coluna a {
  color: #c6c6cb;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: 0.2s;
}

.rodape-coluna a:hover {
  color: #bca8ff;
}

.rodape-logo {
  margin-bottom: 8px;
  color: #ffffff !important;
  font-size: 29px !important;
  font-weight: 800;
}

.rodape-logo span {
  color: #8e6cff;
}

.rodape-marca p {
  max-width: 310px;
}

.rodape-whatsapp {
  display: inline-block;
  margin-top: 8px;
  padding: 11px 18px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 30px;
  font-weight: bold;
}

.rodape-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.rodape-final {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 8%;
  background: #09090c;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.rodape-final p {
  color: #929299;
  font-size: 13px;
  line-height: 1.5;
}

/* ==================================================
   RESPONSIVIDADE DA NOVA HOME
================================================== */

@media (max-width: 1100px) {
  .faixa-beneficios {
    grid-template-columns: repeat(2, 1fr);
  }

  .faixa-beneficio:nth-child(2) {
    border-right: 0;
  }

  .faixa-beneficio:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .grid-vantagens-profissional {
    grid-template-columns: repeat(2, 1fr);
  }

  .rodape-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-profissional {
    padding-top: 65px;
    text-align: center;
  }

  .hero-profissional .hero-texto,
  .hero-profissional .hero-texto > p,
  .hero-profissional .hero-observacao {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-beneficios {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .hero-profissional .hero-botoes {
    justify-content: center;
  }

  .hero-profissional .hero-imagem {
    height: 380px;
  }

  .personalizacao-home-conteudo,
  .informacoes-compra-conteudo {
    grid-template-columns: 1fr;
  }

  .personalizacao-home-texto {
    text-align: center;
  }

  .personalizacao-home-texto > p {
    margin-right: auto;
    margin-left: auto;
  }

  .personalizacao-home-texto ul {
    display: inline-grid;
    text-align: left;
  }

  .grid-passos-completo {
    grid-template-columns: repeat(2, 1fr);
  }

  .informacoes-compra-conteudo {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .secao-home {
    padding: 65px 5%;
  }

  .secao-cabecalho {
    margin-bottom: 35px;
  }

  .secao-cabecalho h2 {
    font-size: 31px;
  }

  .secao-cabecalho p {
    font-size: 16px;
  }

  .hero-profissional {
    min-height: auto;
    padding: 55px 5%;
  }

  .hero-profissional h1 {
    font-size: 40px;
  }

  .hero-profissional .hero-texto > p {
    font-size: 17px;
  }

  .hero-beneficios {
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .hero-profissional .hero-botoes {
    flex-direction: column;
  }

  .hero-profissional .hero-botoes a {
    display: block;
    width: 100%;
  }

  .hero-profissional .hero-imagem {
    height: 310px;
    padding: 20px;
    border-radius: 35px;
  }

  .hero-objeto-visual .card-3d {
    font-size: 85px;
  }

  .faixa-beneficios {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .faixa-beneficio {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .faixa-beneficio:last-child {
    border-bottom: 0;
  }

  .personalizacao-home {
    padding: 70px 5%;
  }

  .personalizacao-home-conteudo {
    gap: 45px;
  }

  .personalizacao-home-texto h2 {
    font-size: 33px;
  }

  .personalizacao-visual-card {
    grid-template-columns: 50px 1fr;
    padding: 18px;
  }

  .personalizacao-visual-card > span {
    width: 45px;
    height: 45px;
  }

  .grid-passos-completo,
  .grid-vantagens-profissional {
    grid-template-columns: 1fr;
  }

  .informacoes-compra-home {
    padding: 65px 5%;
  }

  .informacoes-compra-conteudo h2 {
    font-size: 31px;
  }

  .informacoes-compra-links {
    grid-template-columns: 1fr;
  }

  .contato-profissional {
    padding: 75px 5%;
  }

  .contato-profissional h2 {
    font-size: 33px;
  }

  .rodape-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 55px 7%;
  }

  .rodape-final {
    flex-direction: column;
    padding: 22px 7%;
    text-align: center;
  }

  .rodape-coluna {
    align-items: center;
    text-align: center;
  }

  .rodape-marca p {
    margin: auto;
  }
}
/* ==========================================
   REMOVER IMAGENS DA GALERIA
========================================== */

.preview-galeria-item {
  position: relative;
}

.preview-galeria-remover {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 10;

  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: 2px solid #ffffff;
  border-radius: 50%;

  background: #d93025;
  color: #ffffff;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.28);

  cursor: pointer;
  font-size: 23px;
  font-weight: bold;
  line-height: 1;

  transition: 0.2s;
}

.preview-galeria-remover:hover {
  background: #a91f18;
  transform: scale(1.08);
}

.preview-galeria-remover:focus-visible {
  outline: 3px solid rgba(217, 48, 37, 0.35);
  outline-offset: 2px;
}