* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  overflow-x: hidden;
}

/* 🔥 CORREÇÃO MOBILE REAL */
body {
  min-height: 100dvh;
  padding: 20px;

  background: url("https://juniortavares.com/wp-content/uploads/2026/03/bg-site.jpg") no-repeat center center/cover;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* overlay FIXO (corrige scroll) */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* container */
.container {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  max-width: 400px;
}

/* avatar */
.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;

  border: 3px solid #0BF5A3;

  box-shadow:
    0 0 10px rgba(11, 245, 163, 0.6),
    0 0 25px rgba(11, 245, 163, 0.3);

  margin-bottom: 15px;

  transition: 0.3s ease;
}

.avatar:hover {
  transform: scale(1.05);
}

/* textos */
h1 {
  font-size: 26px;
  margin-bottom: 5px;
}

p {
  margin-bottom: 20px;
  opacity: 0.8;
  font-size: 14px;
}

.seo-text {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 20px;
}

/* links */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* botões */
.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-decoration: none;
  padding: 14px;
  border-radius: 12px;

  background: rgba(255,255,255,0.08);
  color: #fff;

  backdrop-filter: blur(10px);

  font-weight: bold;
  font-size: 14px;

  min-height: 50px;

  transition: 0.3s;
}

/* hover */
.links a:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

/* ícones */
.links i {
  font-size: 16px;
}

/* ========================= */
/* 🔥 WHATSAPP               */
/* ========================= */

.links a.whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;

  animation: pulse 1.5s infinite;
}

.links a.whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(37,211,102,0.8);
}

/* animação */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37,211,102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102, 0);
  }
}