body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f4ed;
  color: #26312c;
  line-height: 1.7;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem max(4%, calc((100% - 1120px) / 2));
  backdrop-filter: blur(14px);
  background: rgba(247, 244, 237, 0.72);
  border-bottom: 1px solid rgba(126, 154, 132, 0.12);
  box-shadow: 0 6px 24px rgba(38, 49, 44, 0.04);
}

.logo {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #26312c;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #607068;
  font-size: 0.94rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(120, 140, 125, 0.18);
}

.nav-links a.active {
  background-color: #dbe7df;
  font-weight: 500;
}

.nav-links a:hover {
  color: #5f7865;
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(93, 122, 100, 0.35);
  box-shadow: 0 6px 18px rgba(40, 60, 45, 0.08);
  transform: translateY(-1px);
}

.nav-links a:active {
  transform: scale(0.97);
}

.hero {
  text-align: center;
  padding: 5rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(232, 239, 231, 0.9), transparent 30%),
    linear-gradient(180deg, #f7f4ed 0%, #eef3ea 100%);
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.15rem;
  color: #607068;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.cartel-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.cartel-boyero {
  margin: 0 auto;
  text-align: center;
}

.cartel-boyero img {
  width: 100%;
  max-width: 980px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(38, 49, 44, 0.12);
}

.camino-texto {
  max-width: 920px;
}

.camino-texto h2 {
  font-size: 2rem;
  margin-bottom: 1.3rem;
}

.camino-texto p {
  margin-bottom: 1rem;
}

blockquote {
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  background: rgba(255, 253, 248, 0.82);
  border-left: 5px solid #7e9a84;
  border-radius: 18px;
  font-style: italic;
  max-width: 760px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(38, 49, 44, 0.05);
}

.cta-section {
  text-align: center;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.3rem;
  background: #7e9a84;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
}

.button:hover {
  background: #5f7865;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #607068;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav-links a {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #2f3a34;
  }

  .nav-links a:hover {
    background-color: #e8efe9;
    color: #1e2a25;
  }
}
