/* Importação da Fonte */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #f0f2f5;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

.main-content {
  max-width: 650px;
  width: 100%;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 35px;
}

.progress-bar-container {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin: 30px 0;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background-color: #C4170C;
  border-radius: 5px;
  transition: width 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cta-button {
  display: inline-block;
  width: 100%;
  padding: 16px 20px;
  background-color: #C4170C;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(196, 23, 12, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(196, 23, 12, 0.3);
}

.footer-disclaimer {
  position: absolute;
  bottom: 20px;
  font-size: 0.75rem;
  color: #8a8d91;
  line-height: 1.6;
  max-width: 800px;
}

.footer-disclaimer .icon {
  margin-right: 5px;
}

.footer-disclaimer p {
  margin-bottom: 10px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #606770;
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .cta-button {
    font-size: 1.2rem;
    padding: 15px;
  }

  .footer-disclaimer {
    position: static;
    margin-top: 40px;
  }
}