/* Fonte institucional e corpo */
body {
  font-family: "Roboto", Arial, sans-serif;
  margin: 0;
  background: #f5f7fa;
  color: #222;
  line-height: 1.5;
}

/* Cabeçalho */
header {
  background: #006937;
  color: #fff;
  padding: 30px 10px;
  text-align: center;
}

header h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1em;
  max-width: 680px;
  margin: 0 auto;
}

/* Navegação */
nav {
  background: #024d27;
  padding: 10px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 99;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 20px;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.menu li a:hover,
.menu li a:focus {
  text-decoration: underline;
}

/* Botões CTA */
.cta {
  background: #ffe600;
  color: #333;
  border: none;
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 5px;
  box-shadow: 0 2px 6px #bbb;
  margin: 18px auto;
  display: block;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
  text-align: center;
  max-width: 320px;
}

.cta:hover,
.cta:focus {
  background: #ffc800;
  outline: none;
}

/* Container principal */
.container {
  max-width: 900px;
  margin: 35px auto;
  padding: 0 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px #eee;
}

/* Seções */
section {
  margin-bottom: 30px;
}

/* Títulos e listas */
h2 {
  color: #006937;
  margin-top: 0;
}

ul {
  margin-left: 12px;
  padding-left: 10px;
}

.icons-list li {
  list-style: none;
  margin: 8px 0;
  font-size: 1.1em;
}

/* Depoimentos */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonials blockquote {
  border-left: 4px solid #006937;
  padding: 8px 10px;
  font-style: italic;
  background: #fafaf0;
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
}

.testimonials blockquote img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
}

.testimonials blockquote p {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

.testimonials blockquote footer {
  text-align: right;
  font-style: normal;
  font-weight: bold;
  margin-top: 5px;
}

.logos {
  text-align: center;
  margin-top: 20px;
}

.logos img {
  max-width: 106px;
}

/* Formulário de cadastro */
label,
input {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

input {
  padding: 10px;
  width: 93%;
  max-width: 320px;
  border: 1px solid #bbb;
  border-radius: 5px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

input:focus {
  border-color: #006937;
  outline: none;
}

button.form-lead,
.cta {
  font-weight: bold;
}

/* Mensagem do formulário */
#formMessage {
  font-weight: bold;
  color: green;
  font-size: 1rem;
}

/* Links do edital e manual */
.links-edital {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.links-edital a.cta {
  max-width: 180px;
  padding: 12px 20px;
  font-size: 1rem;
}

/* Rodapé */
footer {
  background: #024d27;
  color: #fff;
  padding: 30px 10px;
  text-align: center;
  font-size: 0.9em;
}

/* Responsividade */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.4em;
  }
  .container {
    padding: 8px;
  }
  .testimonials {
    flex-direction: column;
    align-items: center;
  }
  .links-edital {
    flex-direction: column;
  }
  nav .menu {
    display: block;
  }
  nav .menu li {
    margin: 8px 0;
  }
}
