body, html {
  font-family: 'Inter', sans-serif;
  background-color: #50206C;
  color: white;
}

.custom-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.logo-img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 30px;
}

h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: left;
}

.btn-custom {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  margin-bottom: 10px;
  text-align: left;
}

.btn-custom-important {
  background-color: #F4D03F;
  color: #50206C;
}

.btn-custom i {
  font-size: 20px;
  margin-right: 10px;
}

.ellipsis {
  font-weight: bold;
}

footer {
  margin-top: 30px;
}

footer p {
  font-size: 14px;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.social-icons a {
  color: white;
  font-size: 24px;
}

.btn-custom-course {
  background-color: #4CAF50; /* Verde para destacar o curso */
  color: white;
}

.btn-custom-course:hover {
  background-color: #45a049;
}