/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #000000;
  color: white;
  padding: 20px;
  text-align: center;
}

header .logo {
  width: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Main Section */
.contact-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.contact-section h2 {
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Informações de contato */
.contact-info {
  flex: 1 1 300px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info h3 {
  color: #000000;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: #000000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Mapa */
.map-container {
  flex: 2 1 500px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container h3 {
  color: #000000;
  margin-bottom: 15px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #000000;
  color: white;
  margin-top: 40px;
}

/* Responsividade */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
.back-menu {
  text-align: center;
  margin: 20px 0;
}

.btn-back {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-back:hover {
  background-color: #333;
}