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

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

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

header.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.site-header-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.25;
}

.page-intro {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 28px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 36px 0 12px;
}

h2:first-of-type { margin-top: 8px; }

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
}

.section-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.img-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.badge {
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
}
.badge-natura { background: #E1F5EE; color: #0F6E56; }
.badge-info { background: #E6F1FB; color: #185FA5; }
.badge-aventura { background: #FFF3E0; color: #BA7517; }

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
}

.info-box {
  background: #f5f5f0;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: #555;
  line-height: 1.85;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1D9E75;
  color: #fff !important;
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  margin: 6px 0 10px;
}

.gmaps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1D9E75;
  text-decoration: none;
}

footer.site-footer {
  max-width: 680px;
  margin: 40px auto 0;
  padding: 24px 20px 40px;
  text-align: center;
  border-top: 1px solid #eee;
}
footer.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 10px;
}
footer.site-footer nav a {
  font-size: 13px;
  color: #1D9E75;
  text-decoration: none;
  font-weight: 700;
}
.obj-card {
  display: block;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.obj-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.09); border-color: #1D9E75; }
.obj-card-band { height: 5px; }
.obj-card-img { width: 100%; height: 140px; object-fit: cover; border-radius: 10px; display: block; margin: 8px 0; }
.obj-card-body { padding: 16px 18px; }
.obj-card-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.obj-card-emoji { font-size: 22px; }
.obj-card-name {
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.obj-card-tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
.tag-natura { background: #E1F5EE; color: #0F6E56; }
.tag-aventura { background: #FFF3E0; color: #BA7517; }
.obj-card-desc { font-size: 13.5px; color: #555; line-height: 1.65; margin-bottom: 10px; }
.obj-card-more { font-size: 13px; font-weight: 700; color: #1D9E75; }

footer.site-footer p { font-size: 12px; color: #999; margin: 0; }
