/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cabeçalho */
.header {
  background: #004aad;
  color: #fff;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .logo img {
  height: 50px;
  width: auto;
}

.header .menu ul {
  list-style: none;
  display: flex;
}

.header .menu ul li {
  margin-left: 20px;
}

.header .menu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.header .menu ul li a:hover {
  color: #ff9900;
}

.menu-mobile {
  display: none;
}

/* Banner */
.banner {
  background: linear-gradient(to right, #004aad, #0073e6);
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.banner .btn {
  background: #ff9900;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.banner .btn:hover {
  background: #cc7a00;
  transform: scale(1.05);
}

/* Seções */
section {
  padding: 3rem 0;
}

.sobre {
  background: #fff;
  text-align: center;
}

.sobre h2 {
  font-size: 2.5rem;
  color: #004aad;
  margin-bottom: 1rem;
}

.sobre p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.sobre img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px;
  margin-top: 1rem;
}

.servicos {
  background: #f9f9f9;
}

.servicos h2 {
  font-size: 2.5rem;
  color: #004aad;
  text-align: center;
  margin-bottom: 2rem;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.servico-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.servico-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.servico-item h3 {
  color: #004aad;
  margin-bottom: 1rem;
}

.servico-item p {
  font-size: 1rem;
  color: #666;
}

/* Portal de Ética */
.etica {
  background: #fff;
  text-align: center;
}

.etica h2 {
  font-size: 2.5rem;
  color: #004aad;
  margin-bottom: 1rem;
}

.etica p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.etica .btn {
  background: #004aad;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.etica .btn:hover {
  background: #003580;
  transform: scale(1.05);
}

/* Contato */
.contato {
  background: #f9f9f9;
  text-align: center;
}

.contato h2 {
  font-size: 2.5rem;
  color: #004aad;
  margin-bottom: 1.5rem;
}

.contato form {
  max-width: 600px;
  margin: 0 auto;
}

.contato form input,
.contato form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contato form textarea {
  height: 150px;
}

.contato form .btn {
  background: #004aad;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.contato form .btn:hover {
  background: #003580;
  transform: scale(1.05);
}

/* Rodapé */
.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
}

.footer p {
  margin: 0.5rem 0;
}

.creditos {
  color: #b3c7e6;
  font-size: 0.9rem;
}

.creditos a {
  color: #7fa1d4;
  text-decoration: none;
}

.creditos a:hover {
  text-decoration: underline;
}

/* Redes Sociais no Rodapé */
.social {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social li {
  list-style: none;
}

.social li a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social li a:hover {
  color: #ff9900;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366; /* Cor oficial do WhatsApp */
  color: #fff;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%; /* Deixa o botão circular */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adiciona sombra */
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; /* Remove o sublinhado do link */
}

.whatsapp-float:hover {
  transform: scale(1.1); /* Aumenta o botão ao passar o mouse */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Intensifica a sombra no hover */
}

.whatsapp-float i {
  margin: 0; /* Remove margens internas do ícone */
  padding: 0; /* Remove espaçamento interno do ícone */
  line-height: 1; /* Garante alinhamento perfeito */
}

/* Responsividade */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .header .menu ul {
    flex-direction: column;
    margin-top: 1rem;
  }

  .header .menu ul li {
    margin: 10px 0;
  }

  .banner h2 {
    font-size: 2rem;
  }

  .banner p {
    font-size: 1rem;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }
}