* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Poppins", Arial, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===================== HEADER ===================== */
/* ===================== HEADER NOVO ===================== */
.header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-area img {
  height: 60px;
}
.texto-logo h1 {
  font-size: 0.95rem;
  color: #014b4c;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.texto-logo p {
  color: #014b4c;
  font-size: 0.9rem;
  font-weight: 600;
}
.texto-logo p span {
  color: #00b2a9;
  font-weight: 800;
  margin-right: 4px;
}

.botoes-menu {
  display: flex;
  gap: 1rem;
}
.botoes-menu .btn {
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  color: #003;
  font-size: 0.9rem;
  transition: 0.2s;
}
.botoes-menu .amarelo {
  background: #ffd600;
}
.botoes-menu .amarelo:hover {
  background: #ffce00;
}
.botoes-menu .verde {
  background: #00e6b3;
}
.botoes-menu .verde:hover {
  background: #00d1a0;
}

/* Ajuste responsivo */
@media (max-width: 900px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .logo-area {
    flex-direction: column;
  }
}


/* ===================== HERO ===================== */
.hero {
  width: 100%;
  height: 100vh; /* ocupa toda a altura visível da tela */
  margin-top: 100px; /* espaço abaixo do menu fixo */
  overflow: hidden;
  position: relative;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero {
    height: 80vh; /* um pouco menor em telas pequenas */
    margin-top: 120px;
  }
}

/* ===================== BENEFÍCIOS ===================== */
/* ===================== PROGRAMA EDUCA FÁCIL ===================== */
.programa-educa {
  padding: 100px 0;
  background: #fff;
}

.programa-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Lado esquerdo (título e botão) */
.programa-esquerda {
  flex: 1 1 40%;
  text-align: left;
}

.programa-esquerda h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #014b4c;
  font-weight: 800;
}

.programa-esquerda h2 span {
  color: #00b2a9;
  font-style: italic;
}

.btn.grande {
  display: inline-block;
  background: #ffd600;
  color: #003;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 1.5rem;
  transition: 0.2s;
}

.btn.grande:hover {
  background: #ffce00;
}

/* Lado direito (texto dentro do bloco) */
.programa-direita {
  flex: 1 1 55%;
  background: #c9f3ed;
  border-radius: 25px;
  padding: 2rem;
  color: #013f40;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.programa-direita p + p {
  margin-top: 1rem;
}

/* Responsivo */
@media (max-width: 900px) {
  .programa-content {
    flex-direction: column;
    text-align: center;
  }
  .programa-esquerda h2 {
    font-size: 2rem;
  }
  .programa-direita {
    text-align: left;
  }
}


/* ===================== COMO FUNCIONA ===================== */
/* ===================== COMO PARTICIPAR / BENEFÍCIOS ===================== */
.como-participar {
  background: #015c5b;
  padding: 80px 0;
}

.como-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  background: #015c5b;
  border-radius: 25px;
  padding: 3rem;
  color: #fff;
}

.coluna {
  flex: 1 1 45%;
  background: #007d7a;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.coluna h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  border-bottom: 3px solid #9fffe1;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.coluna ul {
  list-style: none;
}

.coluna ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.coluna ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #9fffe1;
  font-size: 1.4rem;
  top: -2px;
}

/* Responsivo */
@media (max-width: 900px) {
  .como-content {
    flex-direction: column;
  }
  .coluna {
    width: 100%;
  }
}



/* ===================== SEÇÃO PARTICIPAR ===================== */
.participar {
  background: #fff;
  padding: 100px 0;
}

/* ---- Simulação ---- */
.simulacao {
  text-align: center;
  margin-bottom: 80px;
}

.simulacao h2 {
  color: #015c5b;
  font-size: 2rem;
  font-weight: 800;
}

.simulacao .subtitulo {
  color: #00b2a9;
  letter-spacing: 4px;
  margin-top: 0.3rem;
  font-weight: 600;
}

.box-simulacao {
  margin-top: 2rem;
  border: 2px solid #007d7a;
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}

.coluna-sim {
  flex: 1 1 300px;
  min-width: 280px;
}

.coluna-sim h3 {
  color: #015c5b;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.valor {
  font-size: 1.8rem;
  font-weight: 800;
}

.valor.destaque {
  color: #ff9f00;
}

.valor.verde {
  color: #007d7a;
}

/* ---- Documentação ---- */
.documentacao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.doc-img {
  flex: 1 1 35%;
  text-align: center;
}

.doc-img img {
  max-width: 300px;
}

.doc-texto {
  flex: 1 1 60%;
  color: #015c5b;
}

.doc-texto h2 {
  color: #007d7a;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.doc-texto p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.doc-texto ul {
  list-style: disc;
  margin-left: 1.5rem;
}

.doc-texto ul li {
  margin-bottom: 0.6rem;
}

/* Responsivo */
@media (max-width: 900px) {
  .box-simulacao {
    flex-direction: column;
    text-align: center;
  }
  .documentacao {
    flex-direction: column;
    text-align: center;
  }
  .doc-img img {
    max-width: 220px;
  }
  .doc-texto ul {
    text-align: left;
    margin-left: 2rem;
  }
}



/* ===================== FORMULÁRIO ===================== */
/* ===================== FORMULÁRIO VERDE ===================== */
.formulario-verde {
  background: #e6f8f5;
  padding: 100px 0;
  text-align: center;
}

.formulario-verde h2 {
  color: #015c5b;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.formulario-verde form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
  border: 2px solid #00b2a9;
}

.formulario-verde .campo {
  margin-bottom: 1.5rem;
}

.formulario-verde label {
  display: block;
  font-weight: 600;
  color: #015c5b;
  margin-bottom: 0.5rem;
}

.formulario-verde input {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #b8e3dc;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  transition: 0.2s;
}

.formulario-verde input:focus {
  outline: none;
  border-color: #00b2a9;
  box-shadow: 0 0 0 3px rgba(0,178,169,0.15);
}

.btn-enviar {
  width: 100%;
  background: #00b2a9;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  letter-spacing: 1px;
}

.btn-enviar:hover {
  background: #019b94;
  transform: scale(1.02);
}

/* Responsivo */
@media (max-width: 768px) {
  .formulario-verde h2 {
    font-size: 1.6rem;
  }
  .formulario-verde form {
    padding: 2rem 1.5rem;
  }
}


/* ===================== RODAPÉ ===================== */
/* ===================== RODAPÉ ===================== */
.rodape {
  background: linear-gradient(90deg, #01635f, #007d7a);
  color: #fff;
  padding-top: 40px;
  text-align: center;
}

.rodape-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 30px;
}

.rodape-logo {
  flex: 1 1 30%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rodape-logo img {
  height: 70px;
}

.rodape-nome h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.rodape-social {
  flex: 1 1 30%;
  text-align: center;
}

.rodape-social h4 {
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.icones {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.icones a img {
  width: 28px;
  height: 28px;
  transition: 0.3s;
}

.icones a img:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.rodape-endereco {
  flex: 1 1 30%;
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: right;
}

.rodape-copy {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 15px 0;
  font-size: 0.8rem;
  color: #e5f7f6;
}

/* Responsivo */
@media (max-width: 900px) {
  .rodape-content {
    flex-direction: column;
    text-align: center;
  }
  .rodape-endereco {
    text-align: center;
  }
}


/* ===================== RESPONSIVO ===================== */
@media (max-width: 768px) {
  .hero-content { flex-direction: column; text-align: center; }
  .hero-img { text-align: center; margin-top: 2rem; }
  .cards, .etapas { flex-direction: column; align-items: center; }
}


/* ===================== HERO (BANNER COMPLETO) ===================== */

