

/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, sans-serif;
}

.support-section {
  min-height: 69vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, #1d1e23, #070725);
  color: #fff;
}

.support-container {
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.support-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
}

#animated-text {
  display: inline-block;
  position: relative;
}

#animated-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #38bdf8;
  animation: underline 1.5s infinite ease-in-out;
}

.support-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: #38bdf8;
  color: #020617;
}

.btn.secondary {
  border: 2px solid #38bdf8;
  color: #38bdf8;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

/* Desktop */
@media (min-width: 768px) {
  .support-title {
    font-size: 2.8rem;
  }

  .support-links {
    flex-direction: row;
    justify-content: center;
  }

  .btn {
    min-width: 200px;
  }
}

@keyframes underline {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
