/* ================= CSS (style.css) ================= */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #050508;
  color: #ffffff;
}

.hero {
  min-height: 60vh;        /* 👈 não força altura fixa */
  display: flex;
  align-items: flex-start;   /* 👈 muda aqui */
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at top, #111827, #020617);
  overflow: hidden;
  padding: 20px 15px 20px;  /* 👈 controla topo e fundo */
}

.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.4), transparent 70%);
  filter: blur(120px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
  100% { transform: translateY(0px); }
}

.content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 10px;

  background: linear-gradient(90deg, #c4b5fd, #7c3aed, #4f46e5);
  background-size: 200% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 20px rgba(124,58,237,0.35);

  animation: gradientMove 4s linear infinite;
}

.subtitle {
  font-size: 20px;
  color: #c4b5fd;
  margin: 15px 0;
}

.description {
  font-size: 16px;
  color: #d1d5db;
  margin-bottom: 30px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
}

.features span {
  background: rgba(124,58,237,0.15);
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(124,58,237,0.3);
  font-size: 13px;
}

.cta {
  padding: 14px 32px;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 25px rgba(124,58,237,0.6);
  transition: 0.3s;
}

.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(124,58,237,1);
}

.about {
  padding: 80px 20px;
  text-align: center;
  background: #020617;
}

.container {
  max-width: 800px;
  margin: auto;
}

.about h2 {
  font-size: 32px;
}

.about p {
  color: #9ca3af;
}

.social {
  padding: 20px 20px;
  text-align: center;
  background: linear-gradient(180deg, #020617, #050508);
}

.social h2 {
  margin-bottom: 30px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  color: white;
}

.btn i {
  font-size: 18px;
}

.whatsapp {
  background: #25D366;
  box-shadow: 0 0 20px rgba(37,211,102,0.6);
}

.instagram {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  box-shadow: 0 0 20px rgba(238,42,123,0.6);
}

.facebook {
  background: #1877F2;
  box-shadow: 0 0 20px rgba(24,119,242,0.6);
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.1);
}

footer {
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}
