* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

header {
  background-color: #222;
  padding: 20px;
  text-align: center;
}

.logo {
  max-width: 180px;
  margin-bottom: 10px;
}

/* Navegação */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

nav ul li a {
  text-decoration: none;
}

/* Caixinhas menores no menu */
.caixinha {
  border: 2px solid #f2c14e;
  border-radius: 8px;
  background-color: transparent;
  color: #fff;
  padding: 6px 12px;
  width: 90px;
  text-align: center;
  display: inline-block;
  font-weight: bold;
  transition: 0.3s ease;
}

.caixinha:hover {
  background-color: #f2c14e;
  color: #000;
  transform: scale(1.05);
}

main section {
  padding: 50px 20px;
  text-align: center;
}

/* Caixas brancas nos títulos */
.caixa-branca {
  background-color: #fff;
  color: #000;
  padding: 12px 20px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 25px;
  font-weight: bold;
  border: 2px solid #000;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

#galeria .galeria-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

#galeria img {
  border: 3px solid #f2c14e;
  border-radius: 8px;
  width: 200px;
  transition: transform 0.3s ease;
}

#galeria img:hover {
  transform: scale(1.05);
}

form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

input, textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background-color: #f2c14e;
  color: #000;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

button:hover {
  background-color: #e0b03b;
  transform: scale(1.03);
}

footer {
  background-color: #222;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-size: 0.9rem;
}

.redes-sociais {
  margin-top: 40px;
  text-align: center;
}

.redes-sociais h3 {
  margin-bottom: 20px;
  color: #f2c14e;
  font-weight: bold;
  font-size: 1.3rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  background-color: #f2c14e;
  color: #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15);
  background-color: #fff;
}

/* Personalização por rede (opcional) */
.social-icon.instagram:hover {
  color: #e1306c;
}

.social-icon.whatsapp:hover {
  color: #25d366;
}

.social-icon.facebook:hover {
  color: #3b5998;
}

.social-icon.youtube:hover {
  color: #ff0000;
}
