@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap");
/* 
.hidden {
  display: none;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
  align-items: center;
}

.hero {
  background: #659c02;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.benefit-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background-color: #f1f9fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #3498db;
  font-size: 30px;
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  counter-reset: step;
  margin-bottom: 50px;
}

.step-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  position: relative;
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  padding-top: 60px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.cta-section {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
  background-color: white;
  color: #3498db;
  margin-left: 15px;
}

.btn-secondary:hover {
  background-color: #f1f1f1;
}

.faq-section {
  background-color: #f9f9f9;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2c3e50;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 300px;
}

.faq-toggle {
  color: #3498db;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

footer {
  color: black;
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  opacity: 0.7;
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-group input:focus {
  outline: none;
  border-color: #3498db;
}

.modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  text-align: right;
}

@media (max-width: 768px) {
  .hero h1 {
      font-size: 32px;
  }
  
  .hero p {
      font-size: 18px;
  }
  
  .section-title h2 {
      font-size: 28px;
  }
  
  .benefit-card, .step-card {
      min-width: 100%;
  }
  
  .cta-section h2 {
      font-size: 28px;
  }
  
  .btn-secondary {
      margin-left: 0;
      margin-top: 15px;
  }
}


:root {
  --sucesso: #12c99b;
  --error: #e41749;
}

/* body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  max-width: 100%;
  background-color: #f5f6e9;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
} */

#container{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1000px;

  background-color: #f5f6e9;
  opacity: 0.9;
  border-radius: 10px;
  padding: 30px;
  margin: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  justify-content: center;
}

.required::after {
  content: "*";
  color: #e41749;
  margin-left: 4px;
}

h1 {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
}

li {
  padding: 8px;
  font-size: 16px;
  font-weight: bold;
}

mark {
  font-weight: bold;
}

.container h2{
  color: #fff;
}

.section-title h2{
  color: #000000;
}

h2 {
  border-radius: 8px;
  text-align: center;
  color: #000000;
  margin-bottom: 100px;
  font-size: 30px;
}

.parteUpload h2 {
  font-size: 20px;
}

/* h3 {
  margin-right: 600px;
} */

h4 {
  font-family: "Roboto Slab", serif;
}

.form-group {
  margin-bottom: 20px;
}

.form-group2 {
  margin-bottom: 20px;
  width: 200px;
}

label {
  display: block;
  font-weight: bold;
  color: #000000;
}

input[type="text"],
input[type="cpf"],
input[type="tel"],
input[type="cnpj"],
input[type="email"],
textarea {
  width: calc(100% - 22px);
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

input[type="submit"] {
  background-color: #73a424;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
}

button {
  background-color: #73a424;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  justify-content: space-between;
}

button:hover {
  background-color: #9dc856;
}

.bt2 {
  margin-top: 30px;
  gap: 400px;
  justify-content: space-between;
}

#botaoProjeto {
  margin-left: 710px;
}

.bt3 {
  justify-content: space-between;
  gap: 400px;
}

#submitForm {
  margin-left: 720px;
}

input[type="submit"]:hover {
  background-color: #73a424;
}

label {
  display: block;
  margin-bottom: 5px;
}

.form-projetos input {
  margin-bottom: 0.55rem;
}

.form-group2 {
  display: inline-block;
  flex-direction: column;
  margin-right: 20px;
}

.form-group2 input {
  font-size: 16px;
  width: calc(100% - 5px);
}

#uf {
  width: calc(100% - 80px);
}

.form-group3 {
  display: inline-block;
  margin-right: 17px;
}
.form-group3 label {
  margin-top: 15px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th,
td {
  border: 1px solid #000;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #73a424;
  color: white;
}

input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.projeto_form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.projeto_form label {
  width: 100%;
}

.projeto_form input[type="text"] {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  flex: 1;
}

input[name*="nome"] {
  flex: 2;
  min-width: 100px;
}

input[name*="ano"],
input[name*="valor"] {
  flex: 1;
  min-width: 120px;
}

.row-below {
  flex-basis: 100%;
  display: flex;
  gap: 10px;
}

input[name*="financiamento"],
input[name*="prazo"] {
  flex: 1;
  min-width: 200px;
}

.projeto_form input[type="file"] {
  width: 100%;
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

input[type="file"]::file-selector-button {
  border-radius: 4px;
  padding: 0 16px;
  height: 30px;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  margin-right: 16px;
  transition: background-color 200ms;
}

input[type="file"]::file-selector-button:hover {
  background-color: #f3f4f6;
}

p {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.6;
}

input[type="file"]::file-selector-button:active {
  background-color: #e5e7eb;
}

.hidden {
  display: none;
}

.icon {
  font-size: 50px;
  margin-bottom: 15px;
  color: #80d8ff;
}