html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
}
.container {
  max-width: 800px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
  text-align: center;
  color: #444;
  margin-bottom: 80px;
}
.question {
  margin-bottom: 30px;
}
.question label {
  display: block;
  margin-bottom: 5px;
  margin-top: 10px;
}
.question input[type="radio"] {
  margin-right: 10px;
}
textarea {
  width: 98%;
  height: 100px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
}
button {
  color: #fff;
  background-color: #2d5de2;
  border-radius: 50px;
  padding: 12px 24px;
  font-family: Helvetica, sans-serif;
  font-size: 1em;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  border: none;
}
button:hover {
  background-color: #575656;
  transform: translate(0, -2px);
}

#conteudo {
  background-image: url("../images/bg_03.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.parallax {
  background-attachment: fixed;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.container-conteudo {
  width: auto;
  height: auto;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: rgba(
    255,
    255,
    255,
    0.9
  ); /* O último valor (0.8) define a opacidade */
  padding-left: 20px;
  padding-right: 20px;

  -moz-box-shadow: 0 0 40px #cccccc2f;
  -webkit-box-shadow: 0 0 40px #cccccc31;
}

.container-conteudo {
  padding-left: 10px;
  padding-right: 10px;
}

.div-block-4 {
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
}

.line {
  border: 0;
  height: 2px; /* Espessura */
  background: #ffd900; /* Cor */
  margin: 40px 0; /* Espaçamento */
  box-shadow: 0 20px 20px -20px #333;
}

.statement {
  font-size: 1.1em;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  text-align: center;
  border-radius: 10px;
}

.modal-content input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.modal-content button {
  padding: 10px 20px;
  border: none;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #0056b3;
}

.highlight {
  border: 2px solid #ff002a;
}

.loading-overlay {
  display: none; /* Oculto por padrão */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 8px solid #f3f3f3; /* Cor de fundo */
  border-top: 8px solid #3498db; /* Cor do efeito */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
