body {
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f0f2f5;
  margin: 0;
}
header {
  width: 100%;
  background-color: #fff;
  padding: 20px 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
nav {
  display: flex;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: #333;
  margin: 0 15px;
  font-weight: bold;
}
.credit-button {
  background-color: #e91e63;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 15px;
}
main {
  padding: 0;
  text-align: center;
  width: 100%;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 150px;
  background-color: #fff;
}

.hero-main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.video-container {
  margin-top: 40px;
  width: 100%;
  max-width: 800px; /* Limita a largura máxima do vídeo */
  aspect-ratio: 16 / 9; /* Proporção para vídeos widescreen */
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px; /* Bordas arredondadas para o vídeo */
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-subtitle {
  color: #c71585; /* MediumVioletRed */
  font-weight: bold;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.hero-text-image {
  max-width: 80%;
  height: auto;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.fluxo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  width: 100%;
}

.fluxo-text {
  flex: 1;
  text-align: left;
}

.fluxo-text h2 {
  font-size: 2em;
  color: #333;
}

.fluxo-text h3 {
  font-size: 1.5em;
  color: #555;
  margin-top: 10px;
}

.fluxo-text p {
  font-size: 1em;
  line-height: 1.6;
  color: #666;
}

.fluxo-image {
  flex: 1;
}

.fluxo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.logo {
  height: 40px;
}

.credit-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 150px;
  background-color: white;
}

.credit-content {
  flex: 1;
  padding-left: 50px;
  text-align: left;
}

.credit-content h1 {
  font-size: 2.5em;
  color: #191970; /* MidnightBlue */
  font-weight: bold;
  line-height: 1.2;
}

.subtitle {
  color: #6a5acd; /* SlateBlue */
  font-size: 1.1em;
  margin-top: 10px;
}

.credit-image {
  flex: 1;
}

.credit-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

form input {
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.submit-button {
  background-color: #e91e63;
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #c2185b;
}

footer {
  background-color: #fff;
  width: 100%;
  padding: 20px 100px;
  box-sizing: border-box;
  margin-top: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-media {
  display: flex;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #e91e63;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2em;
  margin-right: 10px;
}

.contact-info {
  display: flex;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #e91e63;
  color: white;
  border-radius: 50%;
  font-size: 1.2em;
  margin-right: 10px;
}

#sobre {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 150px;
  background-color: #fff;
  gap: 50px;
}

.sobre-content {
  flex: 1;
  text-align: left;
}

.sobre-content h1 {
  font-size: 2.5em;
  color: #191970;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sobre-content p {
  font-size: 1em;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.sobre-form {
  flex: 1;
}

.form-step {
  display: none; /* Esconde todos os passos por padrão */
}

.form-step.active {
  display: block; /* Mostra apenas o passo ativo */
}

.form-question {
  margin-bottom: 15px;
  font-weight: bold;
}

.radio-group {
  margin-bottom: 20px;
}

.radio-group label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}

.form-message {
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  display: none; /* Escondido por padrão */
}

.form-message.error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #c62828;
}

.form-message.success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #2e7d32;
}

.upload-section p {
  font-size: 0.9em;
  color: #666;
}

.upload-section ul {
  list-style: none;
  padding: 0;
  font-size: 0.9em;
}

.policy-content {
  background-color: #fff;
  padding: 50px 150px;
  text-align: left;
}

.policy-content h1 {
  font-size: 2.5em;
  color: #191970;
  margin-bottom: 20px;
}

.policy-content p {
  font-size: 1em;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.accordion {
  max-width: 900px;
  margin: 20px auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  background: #f7f7f7;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  font-weight: bold;
}

.accordion-header:hover {
  background: #eee;
}

.accordion-content {
  display: none;
  padding: 15px;
  background: #fff;
  text-align: left;
}

.icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.active .icon {
  transform: rotate(45deg);
}

.antecipa-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 150px;
  /* background-color: #f0f2f5; */
  gap: 50px;
}

.antecipa-image {
  flex: 1;
}

.antecipa-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.antecipa-content {
  flex: 1;
  text-align: left;
}

.antecipa-content h2 {
  font-size: 2em;
  color: #333;
}

.saiba-mais-button {
  background-color: #e91e63;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  display: inline-block;
}

.antecipa-page-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 150px;
  background-color: #fff;
  text-align: center;
}

.antecipa-page-content .antecipa-page-logo {
  max-width: 400px;
  margin-bottom: 20px;
}

.antecipa-page-content h1 {
  font-size: 2em;
  color: #333;
}

.antecipa-page-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #666;
  text-align: left;
  margin-top: 20px;
}

.benefits-section {
  padding: 50px 150px;
  background-color: #fff;
}

.benefits-section h2 {
  font-size: 2em;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-list li {
  font-size: 1.1em;
  color: #666;
  line-height: 1.6;
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
}

.benefits-list li:before {
  content: "✓";
  color: #e91e63;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.faq-section {
  padding: 50px 150px;
  background-color: #fff;
}

.faq-section h2 {
  font-size: 2em;
  /* color: #333; */
  text-align: center;
  margin-bottom: 30px;
}

/* Estilos da Página de Agradecimento */
.thank-you-body {
  height: 100vh;
  margin: 0;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f7f7f7;
}
.thank-you-container {
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.thank-you-container h1 {
  color: #004aad;
  font-size: 2.5em;
  margin-bottom: 20px;
}
.thank-you-container p {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 30px;
}
.back-link {
  display: inline-block;
  padding: 12px 25px;
  background-color: #004aad;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.back-link:hover {
  background-color: #003380;
}

/* Responsividade para Dispositivos Móveis */
@media (max-width: 992px) {
  header {
    flex-direction: column;
    padding: 15px 20px;
    gap: 15px;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  nav a {
    margin: 5px;
    font-size: 0.9em;
  }
  .credit-button {
    margin-left: 0;
    margin-top: 10px;
  }
  .hero-section,
  .credit-section,
  #sobre,
  .antecipa-section,
  .antecipa-page-section,
  .benefits-section,
  .faq-section,
  .policy-content {
    padding: 30px 20px;
  }
  .hero-main-content,
  .fluxo-content,
  .credit-section,
  #sobre,
  .antecipa-section {
    flex-direction: column;
    text-align: center;
  }
  .fluxo-text,
  .hero-content,
  .credit-content,
  .sobre-content,
  .antecipa-content {
    text-align: center;
    padding-left: 0;
  }
  .fluxo-content,
  .antecipa-section {
    gap: 30px;
  }
  .hero-subtitle {
    font-size: 1.2em;
  }
  .credit-content h1,
  .sobre-content h1,
  .antecipa-content h2,
  .benefits-section h2,
  .faq-section h2,
  .policy-content h1,
  .antecipa-page-content h1 {
    font-size: 1.8em;
  }
  .fluxo-text h2 {
    font-size: 1.5em;
  }
  .fluxo-text h3 {
    font-size: 1.2em;
  }
  .radio-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .radio-group label {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .radio-group input[type="radio"] {
    width: auto;
    margin: 0;
  }
  footer {
    padding: 20px;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  .contact-info {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
  }
  .contact-item {
    margin-left: 0;
  }
  .hero-text-image {
    max-width: 100%;
  }
  .video-container {
    margin-top: 20px;
  }
  .accordion {
    margin: 20px 0;
  }
  .sobre-form {
    width: 100%;
  }
  form input:not([type="radio"]) {
    width: 100%;
    box-sizing: border-box;
  }
  .submit-button {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .credit-content h1,
  .sobre-content h1,
  .antecipa-content h2,
  .policy-content h1,
  .benefits-section h2,
  .faq-section h2 {
    font-size: 1.5em;
  }
  .hero-subtitle {
    font-size: 1em;
  }
  nav a {
    font-size: 0.85em;
    margin: 5px;
  }
  .credit-button {
    font-size: 0.9em;
    padding: 8px 15px;
  }
}
