/* ===================================================== */
/* ===== RESET GLOBAL ================================== */
/* ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===================================================== */
/* ===== BODY (BASE DA PÁGINA) ========================== */
/* ===================================================== */
body {
  font-family: Arial, sans-serif;
  background-color: #0A0F23;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 0;
}

/* ===================================================== */
/* ===== CAMADA 1: GIF DE FUNDO ========================= */
/* ===================================================== */
.bg-gif {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/seu-gif.gif") center/cover no-repeat;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5; /* controla intensidade do GIF */
}

/* ===================================================== */
/* ===== CAMADA 2: OVERLAY (ESCURECE + BLUR) ============ */
/* ===================================================== */
/* IMPORTANTE:
   - Fica ACIMA do GIF
   - Fica ABAIXO do conteúdo
   - Escurece o fundo (melhora contraste)
   - Aplica blur real (efeito vidro)
*/
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Cor escura semi-transparente */
  background: rgba(0, 0, 0, 0.5);

  /* Blur moderno */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  pointer-events: none;
  z-index: 2;
}

/* ===================================================== */
/* ===== CONTAINER PRINCIPAL ============================ */
/* ===================================================== */
.container {
  text-align: center;

  width: 100%;
  max-width: 450px;

  padding: 28px;
  margin: 20px 0;

  /* 🔥 vidro mais equilibrado */
  background: rgba(18, 24, 47, 0.18);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(15px);

  border-radius: 20px;

  /* ❗ remove QUALQUER interferência de borda */
  border: none;

  /* 🔥 sombra mais limpa (sem “halo” nas bordas) */
  box-shadow:
  0 12px 35px rgba(0, 0, 0, 0.35),
  inset 0 1px 0 rgba(18, 24, 47, 0.12);

  position: relative;
  z-index: 3;

  /* 🔥 ESSENCIAL: corrige diferença borda x centro */
  background-clip: padding-box;
}

/* ===================================================== */
/* ===== PERFIL ======================================== */
/* ===================================================== */
.profile h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.profile p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* ===================================================== */
/* ===== DIVISOR ======================================= */
/* ===================================================== */
.divider {
  height: 1px;
  width: 80%;
  background-color: rgba(255,255,255,0.4);
  margin: 20px auto;
}

/* ===================================================== */
/* ===== IMAGEM DE PERFIL ============================== */
/* ===================================================== */
.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
}

/* ===================================================== */
/* ===== LINKS ========================================= */
/* ===================================================== */
.links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
}

.links a {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.links a img {
  max-width: 35px;
  max-height: 35px;
}

.links a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ===================================================== */
/* ===== FORMULÁRIO ==================================== */
/* ===================================================== */
.contact h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.contact form input,
.contact form textarea {
  width: 90%;
  padding: 8px 10px;
  margin: 6px 0;

  border-radius: 6px;

  /* 🔥 transparente como o container */
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255,255,255,0.10);

  color: #ffffff;
  font-size: 0.95rem;
}

.contact form textarea {
  resize: vertical;
}

/* ===================================================== */
/* ===== TERMOS ======================================== */
/* ===================================================== */
.contact .terms {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 25px 0;
}

/* ===================================================== */
/* ===== BOTÃO ========================================= */
/* ===================================================== */
.contact button {
  background: #ffffff;
  color: #000000;
  border: 1px solid #cccccc;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.contact button:hover {
  background: #e5e5e5;
  transform: scale(1.05);
}
