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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f5f2eb;
  color:#1f1f1f;
  overflow-x:hidden;
  line-height:1.7;
}

/* =========================
   CONTAINER
========================= */

.container{
  width:90%;
  max-width:1400px;
  margin:auto;
}

/* =========================
   NAVBAR
========================= */

#navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;

  padding:28px 0;

  transition:all .4s ease;
}

#navbar.scrolled{
  background:rgba(17,33,22,0.92);
  backdrop-filter:blur(10px);

  padding:18px 0;

  box-shadow:0 5px 25px rgba(0,0,0,0.2);
}

.nav-container{

  width:90%;
  max-width:1400px;

  margin:auto;

  display:flex;

  flex-direction:column;

  justify-content:center;

  align-items:center;

  gap:18px;

}

nav ul{
  display:flex;
  list-style:none;
  gap:35px;
}

nav a{
  color:#fff;
  text-decoration:none;

  font-size:13.5px;
  font-weight:400;

  letter-spacing:2px;
  text-transform:uppercase;

  transition:.3s ease;
}

nav a:hover{
  color:#d8c29d;
}

.logos{
  display:flex;
  align-items:center;
  gap:15px;
}

.logos img{
  height:82px;
  object-fit:contain;
}

/* =========================
   HERO
========================= */

.hero{
  height:100vh;

  background-image:
    linear-gradient(
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.55)
    ),
    url('../images/hero.jpg');

  background-size:cover;
  background-position:center;
  background-attachment:fixed;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;

  position:relative;
}

.hero-content{
  width:90%;
  max-width:1000px;

  position:relative;
  z-index:2;
}

.hero h1{
  color:#fff;

  font-size:5rem;
  line-height:1.05;
  font-weight:600;

  text-shadow:
    0 5px 25px rgba(0,0,0,0.4);
}

.hero-countries{
  margin-top:30px;

  color:#fff;

  font-size:0.95rem;
  font-weight:400;

  letter-spacing:5px;
  text-transform:uppercase;

  opacity:0.9;
}

/* =========================
   SECTION
========================= */

.section{
  padding:140px 0;
}

.light-section{
  background:#f5f2eb;
}

.dark-section{
  background:#1b2a1d;
}

/* =========================
   SECTION HEADING
========================= */

.section-heading{
  margin-bottom:50px;
}

.section-heading span{
  display:block;

  margin-bottom:12px;

  font-size:0.9rem;
  font-weight:600;

  letter-spacing:4px;

  color:#a08c68;
}

.section-heading h2{
  font-size:4rem;
  line-height:1.1;

  color:#243322;

  max-width:900px;
}

.section-heading.light h2{
  color:#fff;
}

.section-heading.light span{
  color:#d8c29d;
}

/* =========================
   TEXT CONTENT
========================= */

.text-content{
  max-width:950px;
  margin-bottom:60px;
}

.text-content p{
  font-size:1.08rem;
  margin-bottom:25px;

  color:#494949;
}

.light-text p{
  color:#d8d8d8;
}

/* =========================
   MAPS
========================= */

.map-container{
  width:100%;
}

.map-container > div{
  width:100%;
  height:700px;

  border-radius:22px;
  overflow:hidden;

  border:1px solid rgba(0,0,0,0.08);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.15);
}

.small-map{
  margin-top:50px;
}

.small-map > div{
  height:500px;
}

/* =========================
   PARALLAX
========================= */

.parallax-section{
  height:30vh;

  position:relative;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;

  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}

.parallax-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.35)
    );
}

.parallax-content{
  position:relative;
  z-index:2;
}

.parallax-content h2{
  color:#fff;

  font-size:4rem;
  font-weight:600;

  text-shadow:
    0 5px 25px rgba(0,0,0,0.35);
}

.parallax-01{
  background-image:url('../images/parallax01.jpg');
}

.parallax-02{
  background-image:url('../images/parallax02.jpg');
}

.parallax-03{
  background-image:url('../images/parallax03.jpg');
}

/* =========================
   COUNTRY BLOCK
========================= */

.country-block{
  margin-top:140px;
}

.country-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.country-grid.reverse .country-text{
  order:2;
}

.country-grid.reverse .country-image{
  order:1;
}

.country-text h3{
  font-size:2.5rem;
  margin-bottom:25px;

  color:#fff;
}

.country-text p{
  color:#d8d8d8;
}

.country-image img{
  width:100%;
  height:550px;

  object-fit:cover;

  border-radius:22px;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.18);
}

/* =========================
   PERU
========================= */

.peru-list{
  display:flex;
  flex-direction:column;
  gap:120px;
}

.peru-item h4{
  font-size:2rem;
  margin-bottom:20px;

  color:#fff;
}

.peru-item p{
  color:#d8d8d8;
  max-width:900px;
}

/* =========================
   PRESENTATION
========================= */

.presentation-section{
  position:relative;
}

.presentation-top{
  background:#4d5b4d;
  padding:90px 0;
}

.narrow{
  max-width:1000px;
  text-align:center;
}

.presentation-top p{
  color:#fff;
  font-size:1.2rem;
  line-height:1.8;
}

.presentation-visual{
  position:relative;

  background-image:url('../images/presentation-bg.jpg');
  background-size:cover;
  background-position:center;

  padding:120px 0 90px;
}

.intro-map{
  position:relative;
  z-index:2;
}

.intro-map > div{
  height:650px;
}

.presentation-text p{
  position:relative;
  color:#fff;
  z-index:2;
  margin-top:70px;
  font-size:1.15rem;
  line-height:1.9;
}

.presentation-dark{

  position:absolute;

  inset:0;

  background:
    linear-gradient(
      rgba(0,0,0,0.68),
      rgba(0,0,0,0.72)
    );

  z-index:1;

}

/* =========================
   COUNTRY FULL TEXT
========================= */

.country-full-text{
  position:relative;
  color:#fff;
  z-index:2;
  margin-top:70px;
  font-size:1.05rem;
  line-height:1.9;
}

/* =========================
   INDIGENA FULL TEXT
========================= */

.indigena-full-text{
  position:relative;
  color:#494949;
  z-index:2;
  margin-top:70px;
  font-size:1.05rem;
  line-height:1.9;
}

/* =========================
   AMENAZAS FULL TEXT
========================= */

.amenazas-full-text{
  position:relative;
  color:#fff;
  z-index:2;
  margin-top:70px;
  font-size:1.05rem;
  line-height:1.9;
}

/* =========================
   PERU SLIDER
========================= */

.banner-slider{
  width:100%;

  height:650px;

  margin-top:50px;
  margin-bottom:70px;

  border-radius:22px;

  overflow:hidden;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.18);
}

.banner-slider .swiper-slide{
  position:relative;
  overflow:hidden;
}

.banner-slider img{
  width:100%;
  height:100%;

  object-fit:cover;
}

/* =========================
   SLIDE CAPTION
========================= */

.slide-caption{

  position:absolute;

  left:0;
  bottom:0;

  width:100%;

  padding:24px 32px;

  color:#fff;

  font-size:14px;

  line-height:1.5;

  letter-spacing:.3px;

  z-index:5;

  background:linear-gradient(
    to top,
    rgba(0,0,0,.78),
    rgba(0,0,0,0)
  );

  font-weight:500;

}

/* =========================
   SWIPER PAGINATION
========================= */

.banner-slider .swiper-pagination{
  bottom:25px !important;
}

.banner-slider .swiper-pagination-bullet{
  width:10px;
  height:10px;

  background:rgba(255,255,255,0.6);

  opacity:1;

  transition:.3s ease;
}

.banner-slider .swiper-pagination-bullet-active{
  background:#fff;

  transform:scale(1.2);
}

/* =========================
   NAVBAR HIDE
========================= */

#navbar.hide-nav{
  transform:translateY(-120%);
  opacity:0;
}

/* =========================
   LOGOS STRIP
========================= */

.logos-strip{

  background:#ffffff;

  padding:0;

  text-align:center;

  overflow:hidden;

}

.logos-strip .container{
  width:70%;
  max-width:none;
}

.logos-strip img{

  display:block;

  width:100%;

  height:auto;

  object-fit:cover;

}

/* =========================
   FOOTER
========================= */

.main-footer{

  background:#07100b;

  padding:60px 0 35px;

  text-align:center;

}

.footer-nav{

  margin-bottom:30px;

}

.footer-nav ul{

  display:flex;

  justify-content:center;

  align-items:center;

  flex-wrap:wrap;

  gap:28px;

  list-style:none;

  padding:0;

  margin:0;

}

.footer-nav a{

  color:#d8d8d8;

  text-decoration:none;

  font-size:12px;

  font-weight:400;

  letter-spacing:2px;

  text-transform:uppercase;

  transition:.3s ease;

  opacity:.8;

}

.footer-nav a:hover{

  color:#d8c29d;

  opacity:1;

}

.footer-bottom{

  border-top:1px solid rgba(255,255,255,0.08);

  padding-top:25px;

  margin-top:10px;

}

.footer-bottom p{

  color:#9da39c;

  font-size:0.85rem;

  line-height:1.7;

}


/* =========================
   CLOSING TEXT
========================= */

.closing-text{

  max-width:950px;

  margin:90px auto 0;

  text-align:center;

}

.closing-text p{

  color:#d8d8d8;

  font-size:1.15rem;

  line-height:2;

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .country-grid{
    grid-template-columns:1fr;
  }

  .country-grid.reverse .country-text,
  .country-grid.reverse .country-image{
    order:initial;
  }

}

@media(max-width:768px){

  #navbar{
    background:rgba(17,33,22,0.94);
    backdrop-filter:blur(10px);

    padding:18px 0;
  }

  nav ul{
    display:none;
  }

  .hero{
    background-attachment:scroll;
  }

  .hero h1{
    font-size:2.6rem;
  }

  .section{
    padding:90px 0;
  }

  .section-heading h2{
    font-size:2.4rem;
  }

  .text-content p{
    font-size:1rem;
  }

  .map-container > div{
    height:420px;
  }

  .small-map > div{
    height:350px;
  }

  .country-image img{
    height:400px;
  }

  .parallax-section{
    background-attachment:scroll;
    height:20vh;
  }

  .parallax-content h2{
    font-size:2.2rem;
  }

  .logos img{
    height:34px;
  }

  .presentation-top{
    padding:70px 0;
  }

  .presentation-top p{
    font-size:1rem;
  }

  .intro-map > div{
    height:400px;
  }

  .banner-slider{
    height:400px;
  }

  .footer-nav ul{
    gap:16px;
  }

  .footer-nav a{
    font-size:11px;
    letter-spacing:1px;
  }

}