:root {
  color-scheme: dark;
  font-size: 16px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  background-color: #05060f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 10% 20%, rgba(86, 58, 255, 0.35), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(255, 116, 193, 0.35), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(31, 106, 255, 0.4), transparent 60%),
    #05060f;
  color: #f4f6fb;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem;
}

.app {
  width: min(720px, 100%);
  max-width: 720px;
  background: rgba(8, 9, 20, 0.7);
  backdrop-filter: blur(28px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2.75rem 1.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 16, 40, 0.55);
}

.hero {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(23, 23, 60, 0.5);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(116, 92, 255, 0.18);
  color: #c6baff;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #83ffb0;
  box-shadow: 0 0 12px rgba(131, 255, 176, 0.7);
}

.hero h1 {
  font-size: 2rem;
  margin: 0.35rem 0 0.75rem;
  font-weight: 700;
}

.subtitle {
  margin: 0;
  color: rgba(232, 236, 255, 0.75);
  line-height: 1.6;
  font-size: 0.98rem;
}

.cta-row {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    color 0.18s ease;
  border: 1px solid transparent;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--primary {
  background: linear-gradient(135deg, #6a5cff, #c65fff);
  color: #101226;
  box-shadow: 0 18px 30px rgba(104, 92, 255, 0.35);
}

.button--primary:hover {
  box-shadow: 0 24px 40px rgba(104, 92, 255, 0.4);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(232, 236, 255, 0.8);
  background: transparent;
}

.button--soft {
  background: rgba(255, 255, 255, 0.08);
  color: #f4f6fb;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding-inline: 1.25rem;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.section {
  padding: 1.65rem;
}

.section__header h2 {
  margin: 0;
  font-size: 1.35rem;
}

.section__header p {
  margin: 0.45rem 0 0;
  color: rgba(232, 236, 255, 0.65);
  font-size: 0.95rem;
}

.card {
  background: rgba(12, 13, 26, 0.8);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(17, 18, 40, 0.45);
}

.list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.list-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.17s ease, background 0.17s ease, border 0.17s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.list-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.icon--instagram {
  color: #ff7ce0;
  background: linear-gradient(135deg, rgba(255, 126, 224, 0.2), rgba(255, 190, 120, 0.18));
}

.icon--linkedin {
  color: #5ca9ff;
  background: linear-gradient(135deg, rgba(92, 169, 255, 0.2), rgba(92, 255, 235, 0.18));
}

.icon--facebook {
  color: #7ba4ff;
  background: linear-gradient(135deg, rgba(58, 120, 255, 0.22), rgba(137, 173, 255, 0.18));
}

.icon--tiktok {
  color: #ff6dbd;
  background: linear-gradient(135deg, rgba(255, 109, 189, 0.24), rgba(96, 255, 243, 0.18));
}

.icon--website {
  color: #92a7ff;
  background: linear-gradient(135deg, rgba(146, 167, 255, 0.2), rgba(180, 205, 255, 0.18));
}

.icon--whatsapp {
  color: #7dffb0;
  background: linear-gradient(135deg, rgba(125, 255, 176, 0.22), rgba(206, 255, 174, 0.18));
}

.icon--call {
  color: #9df3ff;
  background: linear-gradient(135deg, rgba(157, 243, 255, 0.26), rgba(132, 169, 255, 0.18));
}

.icon--mail {
  color: #83ffb0;
  background: linear-gradient(135deg, rgba(131, 255, 176, 0.18), rgba(134, 188, 255, 0.18));
}

.list-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.label {
  font-weight: 600;
  font-size: 1rem;
}

.muted {
  color: rgba(232, 236, 255, 0.6);
  font-size: 0.88rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  color: #f4f6fb;
  letter-spacing: 0.03em;
}

.chip--outline {
  background: transparent;
  border: 1px solid rgba(92, 169, 255, 0.4);
  color: #9cd0ff;
}

.chip--soft {
  background: rgba(131, 255, 176, 0.16);
  color: #83ffb0;
}

.grid {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
}

.doc-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.18s ease, border 0.18s ease, background 0.18s ease;
}

.doc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
}

.doc-card__icon {
  width: 48px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(92, 169, 255, 0.25), rgba(108, 98, 255, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(5, 6, 15, 0.75);
  text-transform: uppercase;
}

.doc-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
}

.doc-card__body p {
  margin: 0.35rem 0 0.6rem;
  color: rgba(232, 236, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.doc-card__meta {
  display: flex;
  gap: 0.75rem;
  color: rgba(232, 236, 255, 0.45);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.footer {
  margin-top: 2.25rem;
  text-align: center;
  color: rgba(232, 236, 255, 0.55);
  font-size: 0.82rem;
}

.footer__links {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer__links a {
  color: rgba(232, 236, 255, 0.65);
  text-decoration: none;
  font-weight: 500;
}

.footer__links a:hover {
  color: rgba(232, 236, 255, 0.9);
}

.glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.65;
  pointer-events: none;
}

.glow--one {
  top: -80px;
  left: -80px;
  background: rgba(102, 92, 255, 0.5);
}

.glow--two {
  bottom: -120px;
  right: -120px;
  background: rgba(255, 124, 211, 0.45);
}

@media (max-width: 680px) {
  body {
    padding: 2.2rem 0.95rem;
  }

  .app {
    border-radius: 24px;
    padding: 2.25rem 1.45rem 2rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .cta-row {
    justify-content: center;
  }

  .section {
    padding: 1.45rem;
  }

  .list-item {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
  }

  .chip {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .doc-card {
    grid-template-columns: 48px 1fr;
  }

  .doc-card .button {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .subtitle {
    font-size: 0.92rem;
  }

  .section__header h2 {
    font-size: 1.22rem;
  }

  .button {
    padding: 0.8rem 1.1rem;
  }
}

