@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

header {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  color: #1b5e20;
  font-size: 1.8rem;
}

.contact-info {
  margin-top: 10px;
  font-weight: 600;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  font-weight: 700;
}

.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 40px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

section h2 {
  margin-bottom: 15px;
  color: #1b5e20;
  border-bottom: 2px solid #1b5e20;
  display: inline-block;
  padding-bottom: 5px;
}

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

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.02);
}

.map-container {
  width: 100%;
  height: 400px;
  margin-top: 10px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #333;
  color: #fff;
}

footer p {
  margin-bottom: 5px;
}

@media (max-width: 600px) {
  header h1 { font-size: 1.5rem; }
  .map-container { height: 300px; }
}
