/* =========================
   INTERIOR PAGE HERO
========================= */
.page-hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
    
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 38%,
    rgba(0,0,0,0.15) 65%,
    rgba(0,0,0,0.04) 100%
  ),
  linear-gradient(to right,
      rgba(0,0,0,0.20) 0%,
      rgba(0,0,0,0.05) 45%,
      rgba(0,0,0,0.00) 100%
    );
  
}

.page-hero-content {
  position: relative;
  z-index: 2;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
}

.page-hero .hero-text {
  max-width: 820px;
}

.page-hero .hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #ffffff;
}

.page-hero .hero-description {
  max-width: 680px;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

/* =========================
   INTERIOR PAGE MAIN
========================= */
.page-main {
  background: #ffffff;
  padding: 72px 0 96px;
}

.page-content {
  min-height: 300px;
}

.section-kicker{
  display:inline-block;
  margin-bottom:33px;
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--accent);
  opacity:.9;
}

.map-wrapper {
  width: 100%;
  max-width: 1200px; /* opcional */
  margin: 0 auto;

  aspect-ratio: 16 / 9;

  border-radius: 12px;         
  overflow: hidden;            
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.expedition-intro {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.expedition-statement {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  line-height: 1.5;
  font-weight: 400;
  color: #1a1a1a;
}

.route-map-visual {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #fff;
}

.route-map-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .page-hero {
    min-height: 280px;
  }

  .page-hero-content {
    padding-top: 72px;
    padding-bottom: 34px;
  }

  .page-main {
    padding: 60px 0 80px;
  }

  .page-hero .hero-text {
    max-width: 640px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 240px;
  }

  .page-hero-content {
    padding-top: 56px;
    padding-bottom: 28px;
  }

  .page-hero .hero-text {
    max-width: 100%;
  }

  .page-hero .hero-text h1 {
    font-size: clamp(2rem, 9vw, 3.2rem);
    margin-bottom: 12px;
  }

  .page-hero .hero-description {
    font-size: 1rem;
    line-height: 1.45;
  }

  .page-main {
    padding: 48px 0 68px;
  }
}
/* CSS Document */

