* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FF6B00;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
}

.container {
  width: 100%;
  max-width: 448px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 24px;
}

h1 {
  color: white;
  font-size: 1.875rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.description {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-text {
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.timer-box {
  background-color: #E85D00;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  margin-bottom: 16px;
  text-align: center;
}

.timer {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.vagas {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.vagas strong {
  font-weight: 700;
}

.progress-bar {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  height: 8px;
  overflow: hidden;
}

.progress-fill {
  background-color: #FFD700;
  height: 100%;
  border-radius: 9999px;
  transition: width 0.5s ease;
}

.cta-button {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 18px 32px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  transition: background-color 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.cta-button:hover {
  background-color: #20BD5A;
}

.free-text {
  color: #FFD700;
  text-align: center;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.entries-box {
  background-color: rgba(232, 93, 0, 0.7);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  overflow: hidden;
}

.entries-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.entries-list {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.entries-scroll {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.entry-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.entry-item:last-child {
  border-bottom: none;
}

.entry-item .check {
  color: #25D366;
  font-size: 1rem;
}

.entry-item strong {
  font-weight: 600;
}

.entries-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(232, 93, 0, 0.7), transparent);
  pointer-events: none;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  .timer {
    font-size: 2.5rem;
  }
}
