* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f7f9fc;
  color: #003366;
}

.container {
  width: 90%;
  max-width: 1100px;
  padding: 0px 0px 25px;
  margin: auto;
}
.container2 {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.topo {
  background: #0c3c78;
  padding:  10px 50px;
  color: white;
}

.logo {
  float: left;
  font-size: 20px;
  font-weight: bold;
}

nav {
  float: right;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.banner {
  background: url('imagens/banner.jpg') center/cover no-repeat;
  color: #0c3c78;
  padding: 80px 20px;
  text-align: center;
}

.banner h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.botao1 {
  padding: 20px 0px;
}

.botao {
  padding: 10px 20px;
  background: #ffc107;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}

.botao:hover {
  background: #e0a800;
}

.servicos {
  padding: 60px 0;
  background: white;
}

.servicos h3 {
  text-align: center;
  font-size: 28px;
  margin: 20px 20px;
}

.grid-servicos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/*.rodape {
  padding: 20px;
  background: #0c3c78;
  color: white;
  text-align: center;
  margin-top: 40px;
  padding: 20px 0;

}*/

/* inicio teste footer*/
.footer {
            background: #0c3c78;
            color: white;
            padding: 20px 0;
            overflow: hidden; /* Garante que o float funcione corretamente */
        }

        .footer .footer-section {
            float: left;
            width: 33.33%;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .footer .footer-center {
            text-align: center;
        }

        .footer .footer-left {
            text-align: left;
        }

        .footer .footer-right {
            text-align: right;
        }
/* fim teste footer*/

/* Responsivo */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
  }
  .grid-servicos {
    flex-direction: column;
    align-items: center;
  }
  .logo, nav {
    float: none;
    text-align: center;
  }
}
