:root {
  color-scheme: dark;
  font-family: 'Inter', sans-serif;
  background-color: #050507;
  color: #e6e8eb;
  accent-color: #00ffc2;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: radial-gradient(circle at top left, rgba(11, 117, 121, 0.15), transparent 24%),
              radial-gradient(circle at bottom right, rgba(255, 209, 102, 0.14), transparent 20%),
              linear-gradient(180deg, #040507 0%, #07090d 100%);
}

.scene {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.glow-panel {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(32, 211, 170, 0.12), transparent 15%),
              radial-gradient(circle at 80% 30%, rgba(255, 203, 86, 0.12), transparent 18%),
              radial-gradient(circle at 50% 80%, rgba(12, 63, 84, 0.14), transparent 24%);
  pointer-events: none;
}

.container {
  width: min(100%, 1040px);
  z-index: 1;
}

.hero-card {
  position: relative;
  padding: 36px;
  border-radius: 32px;
  background: rgba(9, 13, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 55%);
  pointer-events: none;
}

.hero-image-wrap {
  width: 172px;
  height: 172px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,194,0.18) 0%, transparent 58%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 28px 80px rgba(0, 255, 194, 0.12);
}

.hero-image {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.12);
}

.hero-copy {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: #7fd8c9;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  background: linear-gradient(120deg, #fce37d, #00ffc2, #77d0ff);
  -webkit-background-clip: text;
  color: transparent;
}

.tagline {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 1.05rem;
  color: #cdd4dd;
  line-height: 1.8;
}

.social-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #f8fafc;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
  background: rgba(14, 20, 28, 0.82);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

.social-button:hover,
.social-button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.22);
}

.social-button span {
  position: relative;
  z-index: 1;
}

.social-button.facebook {
  background: linear-gradient(135deg, rgba(46, 83, 153, 0.95), rgba(21, 38, 74, 0.92));
}

.social-button.instagram {
  background: linear-gradient(135deg, rgba(231, 64, 156, 0.95), rgba(255, 183, 77, 0.92));
}

.social-button.tiktok {
  background: linear-gradient(135deg, rgba(26, 29, 35, 0.95), rgba(0, 233, 255, 0.76));
}

.social-button.youtube {
  background: linear-gradient(135deg, rgba(231, 62, 59, 0.95), rgba(123, 26, 20, 0.88));
}

.social-button.whatsapp {
  background: linear-gradient(135deg, rgba(0, 185, 117, 0.95), rgba(26, 46, 88, 0.82));
}

@media (max-width: 680px) {
  .hero-card {
    padding: 28px 22px;
  }
  .social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero-image-wrap {
    width: 144px;
    height: 144px;
  }
  .hero-image {
    width: 120px;
    height: 120px;
  }
}
