/* ============================
   Reset básico e corpo
============================ */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  color: white;
  text-align: center;
  transition: all 0.3s ease;
}

h1, h2, p {
  transition: color 0.3s ease;
}

h1 {
  font-size: 28px;
  font-weight: bold;
}
 .servicos {
  text-align: center;          /* Centraliza todo o bloco */
  color: white;                /* Ajuste de cor opcional */
}

/* Remove os marcadores padrão e centraliza */
.servicos ul {
  list-style: none;            /* Remove os pontos padrão */
  padding: 0;
  display: block;       /* Faz a lista ficar centralizada */
  text-align: left;            /* Alinha o texto à esquerda internamente */
}

.servicos li {
  margin: 5px 0;               /* Espaçamento entre os itens */
  font-size: 18px;             /* Ajuste do tamanho da fonte */
}

.content {
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================
   Ícones sociais
============================ */
.icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.icons i {
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.3s;
}

.icons i:hover,
.icons i:focus {
  transform: scale(1.2);
  outline: none;
}

/* ============================
   Botões Pix e Contato
============================ */
.pix-btn,
.contato-btn-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-weight: bold;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pix-btn {
  background: linear-gradient(135deg, #4ffe58, #0c1f20);
  width: 300px;
  padding: 12px 18px;
  height: 40px;
  font-size: 16px;
  margin: 8px 0;
}

.pix-btn:hover,
.pix-btn:focus {
  transform: scale(1.05);
  outline: none;
}

.contato-btn-mobile {
  display: none;
  background: linear-gradient(135deg, #572ccd, #000000);
  width: 300px;
  height: 40px;
  padding: 12px 18px;
  font-size: 16px;
  margin: 8px 0;
}

/* ============================
   Mensagem copiada
============================ */
#copiedMsg {
  display: none;
  color: rgb(47, 223, 24);
  font-weight: bold;
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
}

/* ============================
   SnapWidget container
============================ */
.snap-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1 / 1;
  margin: 20px auto;
  border: 2px solid #5564d6;
  border-radius: 20px;
  overflow: hidden;
}

.snap-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* ============================
   Overlay futurista
============================ */
.overlay-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: all;
  display: flex;
  align-items: end;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  border-radius: 20px;
  text-align: center;
  animation: neonPulse 2s infinite alternate;
}
body {
  position: relative;  /* Garante referência para o absolute */
  min-height: 150vh;   /* Força o corpo a ocupar toda a altura */
  margin: 0;           /* Remove margens padrão */
}

footer {
  position: absolute;  /* Posicionado em relação ao body */
  bottom: 0;
  right: 0;
  background: transparent;
  color: rgb(214, 200, 200);
  font-size: 14px;
  padding: 5px 10px;
}

@keyframes neonPulse {
  0% { box-shadow: 0 0 5px #00f2fe, 0 0 10px #00f2fe, 0 0 20px #00f2fe; }
  50% { box-shadow: 0 0 10px #00f2fe, 0 0 20px #00f2fe, 0 0 30px #00f2fe; }
  100% { box-shadow: 0 0 5px #00f2fe, 0 0 10px #00f2fe, 0 0 20px #00f2fe; }
}

/* ============================
   Instruções de contato
============================ */
#instrucoesContato {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #000000cc;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
  z-index: 1002;
  max-width: 250px;
  text-align: left;
}

#instrucoesContato button {
  background: #fff;
  color: #000;
  border: none;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

/* ============================
   Menu de cores (topo direito)
============================ */
.menu-toggle {
  position: fixed;
  top: 20px;          
  right: 15px;
  background: rgba(72, 41, 195, 0.597);
  color: white;
  padding: 10px 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 2000;          /* bem acima do iframe */
  pointer-events: auto;
  display: none; /* Remove completamente do layout */
}

.menu-toggle:hover {
  /*background: rgba(0, 0, 0, 0.9);*/
  background: transparent;
}

.color-menu {
  position: fixed;
  top: 70px;              /* acompanha o botão no topo */
  right: 20px;
  background: rgba(77, 77, 77, 0.95);
  border-radius: 15px;
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1999;
  padding: 10px;
  pointer-events: auto;
}

.color-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: white;
}

.color-item input[type="color"] {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}

.reset-btn {
  background: hsl(233, 81%, 60%);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  padding: 5px 8px;
  cursor: pointer;
  font-size: 12px;
}

.reset-btn:hover {
  background: #777;
}

/* ============================
   Responsividade
============================ */
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  .icons i { font-size: 2.5rem; }
  .pix-btn, .contato-btn-mobile { width: 90%; }
  p { font-size: 1.1rem; }
  .contato-btn-mobile { display: flex; }

  /* ⬇️ Aqui está o ajuste da imagem */
  .snap-container {
    max-width: 300px;
  }
}

@media (min-width: 481px) and (max-width: 1024px) {
  h1 { font-size: 2.2rem; }
  p { font-size: 1.2rem; }
  .icons i { font-size: 2.2rem; }
  .pix-btn, .contato-btn-mobile { padding: 12px 28px; font-size: 1.3rem; }

  .snap-container {
    max-width: 300px;
  }
  
}

@media (min-width: 1025px) {
  body { max-width: 1000px; margin: 0 auto; }
  h1 { font-size: 2.5rem; }
  p { font-size: 1.5rem; }
  .icons i { font-size: 2.5rem; margin: 0 10px; }
  .pix-btn, .contato-btn-mobile { padding: 14px 32px; font-size: 1.1rem; }
  ul { font-size: 18px; line-height: 1.6; }
}