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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

main {
  text-align: center;
  font-weight: bold;
  padding: 40px 15px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Cabeçalho */
header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.cabecalho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo-img {
  height: 40px;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #219653;
  color: white;
}

/* Estilo da seção de contato */
.contato-form {
  padding: 60px 0;
}

.contato-form h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 2rem;
}

/* Formulário */
.formulario-contato {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grupo-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.grupo-form input,
.grupo-form textarea,
.grupo-form select {
  width: 100%;
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.grupo-form input:focus,
.grupo-form textarea:focus {
  outline: none;
  border-color: #219653;
  box-shadow: 0 0 0 2px rgba(33, 150, 83, 0.2);
}

.texto-ajuda {
  display: block;
  margin-top: 4px;
  color: #6c757d;
  font-size: 0.875rem;
}

/* Botão de envio */
.botao-enviar {
  background-color: #219653;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.botao-enviar:hover {
  background-color: #1a7a48;
}


/* Mapa */
.mapa {
  margin: 30px 0;
}

.mapa h3 {
  margin-bottom: 10px;
  text-align: center;
}

.mapa iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 6px;
}


/* Rodapé */
footer {
  background-color: #2C3E50;
  color: white;
  padding: 40px 0;
  margin-top: 60px;
}

.conteudo-rodape {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-rodape,
.contato-info {
  margin-bottom: 20px;
}

.contato-info {
  margin-top: 65px;
}

.rodape-logo-img {
  height: 50px;
  margin-bottom: 15px;
}

.redes-sociais-icon {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.redes-sociais-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.redes-sociais-icon a i {
  color: white;
}

.redes-sociais-icon a:hover:nth-child(1) {
  background-color: #E1306C;
}

.redes-sociais-icon a:hover:nth-child(2) {
  background-color: #1877F2;
}

.redes-sociais-icon a:hover:nth-child(3) {
  background-color: #0A66C2;
}

.redes-sociais-icon a:hover:nth-child(4) {
  background-color: #1DA1F2;
}

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

  nav ul {
    margin-top: 15px;
  }

  nav ul li {
    margin: 0 10px;
  }

  .conteudo-rodape {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contato-info {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px;
  }
}

/* --- NOVO: botão toggle de cor sem script --- */

/* Esconde o checkbox */
.toggle-cor {
  display: none;
}

/* Estilo do label que funciona como botão */
.toggle-label {
  display: inline-block;
  padding: 12px 25px;
  background-color: #219653;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 40px auto;
}

/* Hover do botão */
.toggle-label:hover {
  background-color: #1a7a48;
}

/* Quando o checkbox estiver marcado, muda o estilo do label */
.toggle-cor:checked + .toggle-label {
  background-color: #333;
  color: #fff;
  box-shadow: 0 0 10px #219653;
}