
body {
  font-family: 'Work Sans', sans-serif;
	margin: 0;
}

h1, h2{
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
	 font-size: 36px;
}
h3 {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  color: #06D6A0;
	 font-size: 36px;
}
.barra-verde {
  background-color: #06D6A0;
  height: 56px;
  width: 100%;
	    margin-bottom: 80px;
}
.hero {
  text-align: center;

}
.hero-intro {
  font-weight: 600;
  color: #0F3D91;
  font-size:36px;
	margin: 20px 0 0 0;
}
.logo {
  max-width: 780px;
  margin: 0px auto;
}
.tagline {
  font-size: 18px;
  margin: 10px 0 20px;
}
.description {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.6;
	font-style:normal;
	font-weight: 200;
}
.cta-question {
  font-size: 36px;
  font-weight: 200;
  color: #0F3D91;
}
.cta-button {
      background-color: #00C1A4;
    color: #fff;
    padding: 18px 55px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 25px;
    font-weight: 600;
}

.audiencia {
  text-align: center;
  padding: 60px 20px;
}
.audiencia h2 {
      font-size: 36px;
    font-weight: 200;
    color: #0F3D91;
}
.audiencia-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
	    margin-top: 50px;
}
.card {
  padding: 30px 20px;
  border-radius: 8px;
  width: 280px;
  color: white;
}
.card h3 {
     font-size: 22px;
    color: white;
    background: none;
    padding: 20px;
}
.card p {
  font-size: 14px;
}
.card.blue { background-color: #0F3D91; }
.card.green { background-color: #00C1A4; }
.card.orange { background-color: #FF9D3B; }

.form-section {
  text-align: center;
}
.form-section h2 {
  font-size: 36px;
  color: #0F3D91;
  margin-bottom: 40px;
}
.form-wrapper {
	background: #e2e9ef;
	
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.step1 {
    background-color:none;
    padding: 30px;
    border-radius: 40px;
    width: 320px;
    margin: 30px;
}
.step2 {
    background-color: white;
    padding: 30px;
    border-radius: 40px;
    width: 320px;
    margin: 30px;
}

.step1 {

  padding: 30px;
  border-radius: 16px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step1 .option-button {
    background-color: white;
    color: #000;
    border-radius: 30px;
    padding: 17px;
    cursor: pointer;
    font-weight: 100;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: left;
}

.step1 .option-button.selected {
  background-color: #06D6A0;
  color: white;
  border-color: #06D6A0;
}


.step1 button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 30px;
  border: none;
  background: #F4F4F4;
  font-weight: 500;
}
.step2 input, .step2 textarea {
    width: 100%;
    padding: 13px 10px;
    margin-bottom: 12px;
    border: none;
    color: #ccc;
    border-bottom: 1px solid #ccc;
    margin-top: 10px;
}
.step2 textarea {
  height: 60px;
  resize: none;
}
.step2 label {
  font-size: 12px;
  display: block;
  text-align: left;
  margin: 10px 0;
}
.step2 button {
  background-color: #00C1A4;
  color: white;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
}

.footer {
  background-color: #00C1A4;
  text-align: center;
  color: white;
  padding: 40px 20px;
}
.footer p {
  font-size: 14px;
  margin-bottom: 15px;
}
.logo-footer {
  max-width: 300px;
  margin-bottom: 10px;
}
.form-separator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.form-separator img {
  width: 100px;
  height: 100px;
  opacity: 0.8; /* opcional para estilo sutil */
}
.mensaje-final {
  background-color: white;
  color: black;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  line-height: 1.6;
}

input[type="checkbox"] {
     width: 15%;
}

/* Responsive design */
@media (max-width: 768px) {
  .audiencia-grid,
  .form-wrapper {
    flex-direction: column;
    align-items: center;
  }

	.logo {
          max-width: 100%;
    margin: 0px auto;
}
	
	.cta-question {
    font-size: 25px;
    font-weight: 200;
    color: #0F3D91;
}
	.audiencia h2 {
      font-size: 25px;
    font-weight: 200;
    color: #0F3D91;
}
	
  .step1, .step2 {
    width: 70%;
    max-width: 400px;
  }

  .cta-button {
    display: inline-block;
    max-width: 300px;
  }

  .hero-intro {
    font-size: 30px;
  }

  .tagline {
    font-size: 16px;
  }

  .description {
    font-size: 13px;
    padding: 0 10px;
  }

  .audiencia h2,
  .form-section h2 {
    font-size: 20px;
  }

  .footer p {
    font-size: 13px;
  }
}
