/* Seção de contato */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card h3 {
  color: #2a2a2a;
  margin-bottom: 20px;
  font-size: 22px;
  display: flex;
  align-items: center;
}

.contact-card h3 i {
  margin-right: 10px;
  color: #9a8e8d;
}

.contact-card p {
  margin-bottom: 15px;
}

/* Mapa */
.map-container {
  height: 400px;
  margin-top: 40px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 28px;
  }
  
  .hero p {
      font-size: 16px;
  }
}