@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #181818;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

body, img, p, h1, h2, h3, h4, h5, h6 {
  user-select: none;      /* bloqueia seleção */
  -webkit-user-drag: none; /* bloqueia arrastar imagens no Safari */
  pointer-events: auto;
}

.img-protegida {
  position: relative;
  display: inline-block;
}

.img-protegida::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 22;       /* fica por cima da imagem */
}


/* 🔹 Fundo animado Vanta.js (cobre o site todo) */
#vanta-bg {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* z-index: -2; */
}

.logo {
  width: 800px;
  max-width: 80%;
  height: auto;
  margin: 100px auto 20px;
  display: block;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.manutencao-box {
  backdrop-filter: blur(10px);
  background-color: rgba(220, 210, 210, 0.086);
  padding: 30px;
  border-radius: 20px;
  color: white;
  box-shadow: 0 0 40px rgba(25, 184, 169, 0.15);
  max-width: 500px;
  margin: 40px auto 20px;
  text-align: center;
  position: relative;
}

.manutencao-content {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.loading-icon {
  font-size: 42px;
  color: #5EEED5;
}

.manutencao-texto h1 {
  font-size: 24px;
  margin: 0 0 10px 0;
  text-align: center;
  color: #5EEED5;
}

.manutencao-texto p {
  margin: 0;
  font-size: 16px;
  color: #ccc;
  line-height: 1.5;
}

.contato-box {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  color: white;
  box-shadow: 0 0 40px rgba(25, 184, 169, 0.1);
  max-width: 90%;
  margin: 30px auto 0;
  text-align: center;
}

.contato-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.contato-content p {
  font-size: 18px;
  margin: 0;
  max-width: 500px;
  text-align: left;
}

.btn-contato {
  padding: 14px 32px;
  min-width: 200px;
  background-color: #19B8A9;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s, background-color 0.3s;
  box-shadow: 0 0 15px rgba(25, 184, 169, 0.4);
}

.btn-contato:hover {
  background-color: #5EEED5;
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(94, 238, 213, 0.6);
}








.site-footer {
  margin-top: 50px;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 14px;
  padding: 20px;
}

.site-footer hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
  width: 100vw; 
  /* max-width: 100%; */
  /* margin-left: auto; */
  /* margin-right: auto; */
}




.site-footer .social-icons {
  margin-top: 15px;
}

.site-footer .social-icons a {
  margin: 0 10px;
  font-size: 24px;
  color: white;
  transition: color 0.3s;
  position: relative;
  text-decoration: none;
}

.site-footer .social-icons a:hover {
  color: #19B8A9;
}

.site-footer .social-icons a::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.site-footer .social-icons a:hover::after {
  opacity: 1;
  pointer-events: auto;
}



/* ===== Scrollbar Personalizado ===== */
::-webkit-scrollbar {
  width: 8px;               /* largura da barra vertical */
  height: 8px;              /* altura da barra horizontal (caso exista) */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #19B8A9, #0e665c);
  border-radius: 10px;
  
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #22e4ce, #19B8A9);
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}