.banner section {
  display: flex;
  opacity: 1;
  flex-wrap: wrap;
  transition: none;
}

.banner1,
.banner2 {
  min-height: 680px; /* ajuste conforme necessário */
  align-items: stretch;
}

.banner1,
.banner2 {
  position: relative;
  z-index: 1;
}

/* Banner 1 */
.banner1 {
  display: flex;
  padding: 40px;
  background-color: #eef6fc;
}
.banner1-esquerda {
  flex: 1;
  padding-right: 40px;
}
.banner1-esquerda h1 {
  font-family: sans-serif;
  color: #0077cc;
}
.banner1-esquerda h2 {
  font-family: sans-serif;
  margin-top: 10px;
  color: #333;
}
.banner1-esquerda ul {
  margin-top: 20px;
  padding-left: 20px;
}
.banner1-esquerda li {
  margin-bottom: 10px;
  font-family: sans-serif;
  font-size: 22px;
  font-weight: bold;
}
.banner1-esquerda .botao {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
.banner1-direita {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.banner1-direita img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.banner1 a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 26px;
}
/* Banner 2 */
.banner2 {
  display: flex;
  padding: 40px;
  background-color: #eef6fc;
}
.banner2-esquerda {
  flex: 1;
  padding-right: 20px;
}
.banner2-esquerda h1 {
  font-family: sans-serif;
  color: #0077cc;
}
.banner2-esquerda ul {
  padding-left: 20px;
}
.banner2-esquerda li {
  font-family: sans-serif;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner2-central {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.banner2-central .linha {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.banner2-central img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.banner2-central p {
  font-family: sans-serif;
  font-size: 14px;
  text-align: center;
}
/* Ajuste para imagens menores na seção central do banner 2 */

.banner2-direita {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner2-direita img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.banner img.active {
  opacity: 1; 
}

.descricao {
  padding: 40px;
  text-align: center;
  background-color: #ffffff;
}

.descricao h2 {
  color: #0077cc;
}

.descricao p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* formulario de orçamento */

.orcamento {
  background-color: #f9f9f9;
  padding: 40px;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.orcamento h2 {
  text-align: center;
  color: #0077cc;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

button {
  background-color: #0077cc;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #005fa3;
}
.rodape {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.rodape-coluna {
  flex: 1;
  min-width: 250px;
  padding: 10px;
}

.rodape-coluna.esquerda img {
  max-width: 180px;
  height: auto;
}

.rodape-coluna.centro p,
.rodape-coluna.direita li {
  font-size: 20px;
  margin: 8px 0;
}

.rodape-coluna.centro a {
  color: #fff;
  text-decoration: none;
}

.rodape-coluna.centro a:hover {
  text-decoration: underline;
}

.menu-rodape {
  list-style: none;
  padding: 0;
}

.menu-rodape li {
  margin-bottom: 8px;
}

.menu-rodape a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.menu-rodape a:hover {
  text-decoration: underline;
}

/* menu principal */



.menu-principal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #005fa3; /* azul mais escuro que #0077cc */
  padding: 10px 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo img {
  height: 250px;
  width: auto;
}

.navegacao ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navegacao a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 30px; ;
  transition: color 0.3s ease;
}

.navegacao a:hover {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0077cc;
}

/* Responsivo */
@media (max-width: 768px) {
  .navegacao {
    display: none;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 70px;
    left: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .navegacao ul {
    flex-direction: column;
    padding: 20px;
  }

  .navegacao ul li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .navegacao.ativo {
    display: block;
  }
}

/* seção de contato */

.contato {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  background-color: #f9f9f9;
  gap: 40px;
}

.contato-esquerda,
.contato-direita {
  flex: 1;
  min-width: 300px;
}

.contato-direita {
  text-align: right;
}

@media (max-width: 768px) {
  .contato {
    flex-direction: column;
    align-items: stretch;
  }

  .contato-direita {
    text-align: left;
  }
}


.contato-esquerda h2,
.contato-direita h1 {
  color: #0077cc;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 18px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

button {
  background-color: #0077cc;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #005fa3;
}

.contato-direita p {
  margin: 10px 0;
  font-size: 26px;
}

.contato-direita a {
  color: #0077cc;
  text-decoration: none;
}

.contato-direita a:hover {
  text-decoration: underline;
}

/* plataforma */

.topico {
  padding: 60px 20px;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.conteudo-show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.texto-show p {
  font-size: 16px;
}

.conteudo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.conteudo.esquerda {
  flex-direction: row;
}

.conteudo.direita {
  flex-direction: row-reverse;
}

.texto {
  flex: 1;
  min-width: 300px;
}

.texto h2 {
  font-size: 48px;
  color: #004080;
  margin-bottom: 20px;
}

.texto p {
  font-size: 26px;
  line-height: 1.6;
  color: #333;
}

.imagem {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.imagem img {
  max-width: 100%;
  height: auto;
}

/* Fundo azul claro com ondas 
.onda-clara {
  background: linear-gradient(to bottom, #e6f2ff 0%, #cce6ff 100%);
  clip-path: ellipse(100% 100% at 50% 0%);
}

.onda-escura {
  background: linear-gradient(to bottom, #cce6ff 0%, #b3daff 100%);
  clip-path: ellipse(100% 100% at 50% 0%);
}
*/
.onda-separadora {
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}

.onda-separadora svg {
  display: block;
  width: 100%;
  height: 100px;
}
.onda-invertida {
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}

.onda-invertida svg {
  display: block;
  width: 100%;
  height: 100px;
}

.onda-sobre{
  background-color: #eef6fc; /* fundo atrás da onda */
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}

.onda-sobre svg {
  display: block;
  width: 100%;
  height: 100px;
}


/* seção sobre nós */
.sobre {
  padding: 60px 20px;
  background-color: #eef6fc;
}

.sobre-conteudo {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sobre h2 {
  font-size: 36px;
  color: #0077cc;
  margin-bottom: 20px;
}

.sobre p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}
.missao-visao-valores {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
  background-color: #eef6fc;
  justify-content: space-between;
  gap: 40px;
}
.missao-visao-valores .item {
  flex: 1;
  min-width: 250px;
  text-align: center;
}
.missao-visao-valores .item h2 {
  font-size: 28px;
  color: #0077cc;
  margin-bottom: 15px;
}
.missao-visao-valores .item p {
  font-size: 20px;
  color: #333;
  line-height: 1.4;
}
.missao-visao-valores .item li {
  font-size: 20px;
  color: #333;
  line-height: 1.4;
} 