:root {
  --panel: rgba(10, 13, 18, 0.94);
  --panel-border: rgba(255, 255, 255, 0.10);
  --text: #f4f7fb;
  --muted: #a7b0c0;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 158, 217, 0.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.24), transparent 35%),
    linear-gradient(135deg, #030406 0%, #0a0d14 55%, #050608 100%);
}

.card {
  width: 100%;
  max-width: 440px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: fadeIn 0.7s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.image-wrap {
  position: relative;
  overflow: hidden;
}

.image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 6, 8, 0.90), rgba(5, 6, 8, 0.10));
}

.image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
}

.content {
  padding: 26px 24px 24px;
}

.tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fdcff;
  background: rgba(34, 158, 217, 0.12);
  border: 1px solid rgba(34, 158, 217, 0.22);
}

h1 {
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.buttons {
  display: grid;
  gap: 13px;
  margin-top: 12px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 15px 18px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 120%;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.08);
}

.btn:active {
  transform: scale(0.97);
}

.btn-grupo1 {
  background: linear-gradient(135deg, #229ed9, #1769aa);
  box-shadow: 0 12px 28px rgba(34, 158, 217, 0.35);
}

.btn-grupo2 {
  background: linear-gradient(135deg, #ff7a18, #e63900);
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.35);
}

.btn-personal {
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.35);
}

.btn-bot {
  background: linear-gradient(135deg, #16a34a, #065f46);
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.35);
}

.btn-facebook {
  background: linear-gradient(135deg, #1877f2, #0d47a1);
  box-shadow: 0 12px 28px rgba(24, 119, 242, 0.35);
}

.btn-toronja {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.30);
}

.footer {
  padding-top: 16px;
  text-align: center;
  color: #6f7a8b;
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  body {
    padding: 18px;
  }

  .content {
    padding: 22px 20px;
  }

  h1 {
    font-size: 28px;
  }

  .btn {
    font-size: 15px;
    padding: 14px 16px;
  }
}
