/* Fonte principal */
body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  margin: 0;
  padding: 0;
}

/* Estilo da seção principal */
.custom-hero {
  background: linear-gradient(160deg, #0a0a0a 60%, #111111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}

/* Título */
.main-title {
  color: #ffc300; /* Dourado vibrante */
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Subtítulo */
.main-subtitle {
  color: #cfcfcf;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Botão principal dourado */
.custom-button {
  background-color: #ffc300;
  color: #0a0a0a;
  border: none;
  transition: all 0.3s ease;
  font-weight: bold;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.custom-button:hover,
.custom-button:focus {
  background-color: #ffb800; /* dourado escuro */
  box-shadow: 0 0 12px #ffc300;
  transform: scale(1.05);
  outline: none;
  color: #0a0a0a;
}

/* Rodapé */
.footer {
  background-color: #0a0a0a;
  padding: 1rem 0;
  color: #888;
  font-size: 0.875rem;
  border-top: 1px solid #222;
  text-align: center;
}

/* Botões sociais personalizados flat/clean */
.social-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.social-links .button {
  background-color: transparent;
  color: #ffc300;
  border: 2px solid #ffc300;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 130px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.social-links .button:hover,
.social-links .button:focus {
  background-color: #ffc300;
  color: #0a0a0a;
  box-shadow: none;
  transform: scale(1.05);
  outline: none;
  text-decoration: none;
}

.social-links .button .icon {
  font-size: 1.3em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsividade para telas pequenas */
@media (max-width: 480px) {
  .social-links .button {
    min-width: 100%;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    justify-content: center;
  }
}
