/* ===== SEO LANDING PAGES ===== */
.landing-page {
  background: var(--blanco-hueso);
}

/* Hero — same pattern as tour category archives */
.landing-hero {
  position: relative;
  overflow: hidden;
  background: var(--blanco-hueso);
  padding: 0;
  border-bottom: 1px solid var(--gris-borde);
}

.landing-hero--has-image {
  min-height: clamp(240px, 36vw, 360px);
  border-bottom: none;
}

.landing-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--blanco-hueso);
  background-image: var(--landing-hero-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

.landing-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 22%,
    rgba(255, 255, 255, 0.92) 38%,
    rgba(255, 255, 255, 0.55) 58%,
    rgba(255, 255, 255, 0.18) 78%,
    rgba(255, 255, 255, 0) 100%
  );
}

.landing-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 48px;
  text-align: left;
}

.landing-hero__inner .landing-breadcrumb,
.landing-hero__inner .landing-hero__title,
.landing-hero__inner .landing-hero__lead {
  max-width: 620px;
}

.landing-breadcrumb {
  font-size: 13px;
  color: var(--gris-secundario);
  margin-bottom: 20px;
}

.landing-breadcrumb a {
  color: var(--oliva-intenso);
  text-decoration: none;
  font-weight: 500;
}

.landing-breadcrumb a:hover {
  text-decoration: underline;
}

.landing-hero__title {
  margin: 0 0 20px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--verde-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.landing-hero__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--carbon-organico);
}

@media (max-width: 768px) {
  .landing-hero__inner {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .landing-hero__bg {
    background-position: 70% center;
  }

  .landing-hero__overlay {
    background: linear-gradient(
      to right,
      #ffffff 0%,
      rgba(255, 255, 255, 0.96) 42%,
      rgba(255, 255, 255, 0.72) 68%,
      rgba(255, 255, 255, 0.2) 100%
    );
  }
}

/* Body — full width aligned with header container */
.landing-body {
  padding: 48px 0 80px;
}

.landing-body__inner {
  width: 100%;
  max-width: 1400px;
}

.landing-content {
  width: 100%;
  max-width: none;
  margin: 0 0 48px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gris-texto);
}

.landing-content h2 {
  margin: 32px 0 14px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--verde-dark);
  letter-spacing: -0.02em;
}

.landing-content h2:first-child {
  margin-top: 0;
}

.landing-content h3 {
  margin: 24px 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--verde-dark);
}

.landing-content a {
  color: var(--oliva-intenso);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-content a:hover {
  color: var(--naranja);
}

.landing-faq {
  width: 100%;
  margin: 0 0 40px;
}

.landing-faq h2 {
  margin: 0 0 20px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--verde-dark);
}

.landing-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-faq-item {
  background: #fff;
  border: 1px solid var(--gris-borde);
  border-radius: 14px;
  padding: 0 20px;
  box-shadow: 0 4px 20px rgba(47, 47, 43, 0.05);
}

.landing-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--verde-dark);
  padding: 18px 0;
  list-style: none;
}

.landing-faq-item summary::-webkit-details-marker {
  display: none;
}

.landing-faq-item[open] summary {
  color: var(--naranja);
}

.landing-faq-item p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gris-texto);
}

.landing-related {
  width: 100%;
  margin: 0 0 40px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--gris-borde);
  border-radius: 16px;
}

.landing-related h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  color: var(--verde-dark);
}

.landing-related-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.landing-related-list a {
  color: var(--oliva-intenso);
  font-weight: 600;
  text-decoration: none;
}

.landing-related-list a:hover {
  text-decoration: underline;
}

.landing-content ul {
  margin: 0 0 20px;
  padding-left: 1.35rem;
}

.landing-content li {
  margin-bottom: 10px;
}

.landing-content p {
  margin: 0 0 18px;
}

.landing-content p:last-child {
  margin-bottom: 0;
}

.landing-cta-box {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 36px 40px;
  border-radius: 24px;
  background: var(--verde-footer);
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(62, 79, 34, 0.12);
}

.landing-cta-box h2 {
  margin: 0 0 12px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
}

.landing-cta-box p {
  margin: 0 0 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.landing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.landing-cta-box .btn-cta.primary {
  background: var(--oliva-intenso);
  color: #fff;
}

.landing-cta-box .btn-cta.secondary {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.landing-cta-box .btn-cta.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .landing-body {
    padding: 36px 0 64px;
  }

  .landing-cta-box {
    padding: 28px 22px;
    border-radius: 20px;
  }
}
