@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-12 {
  padding-top: 12px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-24 {
  padding-top: 24px;
}

.pt-32 {
  padding-top: 32px;
}

.pt-36 {
  padding-top: 36px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-18 {
  padding-bottom: 18px;
}

.pb-24 {
  padding-bottom: 24px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .container {
    max-width: 768px;
    padding: 0 12px;
  }
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .container {
    max-width: 360px;
    padding: 0 8px;
  }
}

h1 {
  font-family: "Anton", sans-serif;
  font-size: 95px;
  font-weight: 500;
  color: white;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  h1 {
    font-size: 70px; /*era 88px*/
  }
}

h2 {
  color: #00427A;
  font-family: "Inter", sans-serif;
  font-size: 37px;
  text-transform: uppercase;
  font-weight: 990;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  h2 {
    font-size: 27px;
  }
}

p {
  color: #252626;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

a {
  font-family: "Inter", sans-serif;
  letter-spacing: 2px;
  text-decoration: none;
}

/* ===============================
          HERO SLIDER
=============================== */
.hero {
  background-size: cover;
  background-position: center; /* fixa o ponto de referência */
  height: 77vh; /* altura da seção */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 3px #000;
}

.hero-slider {
  position: relative;
  width: 100%; /* melhor que 100vw */
  height: 85vh;
  /*overflow: hidden; talvez com a tag nav*/
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .hero-slider {
    height: 55vh;
  }
}

.slide {
  background-position: center; /* aqui também */
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  padding-left: 80px;
  opacity: 0;
  transition: opacity 1s ease;
  /* z-index: 0;  talvez com a nav*/
}

.slide-caption {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide.active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}

.arrow-btn {
  position: absolute;
  background: none;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .arrow-btn img {
    width: 35px;
    height: 35px;
  }
}
.arrow-btn img {
  transition: transform 0.2s;
}
.arrow-btn img:hover {
  transform: scale(1.2);
}

.left {
  left: 16px;
}

.right {
  right: 16px;
}

.tour-name {
  letter-spacing: 5px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.tour-description {
  font-size: 22px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
  color: #FBFFF5;
}

.transparent-header {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  width: 100%;
  z-index: 10;
}

.nav-desktop a {
  font-size: 18px;
  font-weight: 500;
  color: #FBFFF5;
  margin-right: 20px;
  padding: 10px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .nav-desktop a {
    display: none;
  }
}

.nav-desktop {
  position: relative;
}

.submenuDesktop {
  position: absolute;
  background-color: aquamarine;
  padding-bottom: 15px;
  display: none;
}
.submenuDesktop li {
  list-style: none;
  padding-top: 20px;
}

.submenuDesktop.open {
  display: flex;
  flex-direction: column;
}

.logo {
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .logo {
    margin: 0 auto;
  }
}
.logo {
  /* Mobile: centraliza forçadamente
  @include mixin.responsive(mobile) {
    margin: 0 auto;
    position: relative;
    z-index: 1;
  } */
}

/* Botão Hamburguer */
.hamburguer {
  display: none;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .hamburguer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    left: 20px;
    position: absolute;
    cursor: pointer;
    z-index: 1001;
    top: 20px;
  }
}

.hamburguer span {
  height: 3px;
  width: 28px;
  border-radius: 2px;
  background: white;
  transition: all 0.3s ease; /*animation*/
}
@media screen and (min-width: 1280px) {
  .hamburguer span {
    display: none;
  }
}

/* Animação hamburguer */
.hamburguer.open span:nth-child(1) {
  transform: rotate(50deg) translate(5px, 5px);
}

.hamburguer.open span:nth-child(2) {
  opacity: 0;
}

.hamburguer.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu mobile*/
.nav-mobile {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.95);
  width: 50%;
  top: 0;
  left: 0;
  padding: 50px 20px;
}
.nav-mobile a {
  color: #FBFFF5;
}

.nav-mobile.open {
  display: flex;
  border: 1px solid green;
}

/*.nav-mobile a{
  color: colors.$white-light;

} */
.submenu {
  display: none;
  padding: 7px;
}
.submenu li {
  padding: 5px;
}

.submenu.open {
  display: flex;
  flex-direction: column;
}

.about {
  text-align: center;
  margin-top: 47px;
}

.about h2 {
  margin-top: 10px;
  margin-bottom: 5px;
}

.about p {
  width: 900px;
  margin: 0 auto;
  letter-spacing: 0.025em;
  margin-bottom: 25px;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .about p {
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    text-align: center;
  }
}

/*Highlights*/
.highlights-grid {
  border: 5px solid green;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .highlights-grid {
    display: flex;
    flex-direction: column;
  }
}

.highlights-card {
  border: 1px solid red;
  padding: 20px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.highlights-icon {
  width: 60px;
  height: 60px;
  border: 1px solid bisque;
}

.highlights-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  margin-top: 19px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.highlights-description {
  flex: 1;
  display: flex;
  align-items: center;
}

.highlights-description p {
  font-size: 15px;
  color: #F2F7E9;
}

.highlights-link a {
  display: inline-block;
  color: #FBFFF5;
  margin-top: 20px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.highlights-link a:hover {
  color: #FF6B35;
  border-bottom: 1px solid white;
  transition: all 0.3s ease;
}

.individualization {
  background: #ff9500;
}

.support {
  background: #1976d2;
}

.safety {
  background: #ffbf37;
}

.sustainability {
  background: #3bafda;
}

/*Stats*/
.stats-Container {
  position: relative;
  min-height: 99vh;
  overflow: hidden;
  background: #f9f4f0;
  display: flex;
  align-items: center; /* alinha o item na vertical */
  justify-content: flex-end;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .stats-Container {
    min-height: 60vh;
    max-height: 60vh;
  }
}

.stats-mountain {
  position: absolute;
  background-image: url("../assets/images/Mountain.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .stats-mountain {
    background-position: center bottom;
    background-size: cover;
  }
}

.stats-clouds {
  position: absolute;
  background-image: url("../assets/images/clouds.png");
  width: 100%;
  height: 120%;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.1s ease-in;
  top: 0;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .stats-clouds {
    height: 150%;
    background-position: center;
  }
}

.stats-data {
  padding: 64px 32px;
  z-index: 3;
  margin-right: 50px;
}

.counter {
  font-size: 64px;
  color: #5c75d6;
  display: block;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  font-variant-numeric: tabular-nums; /*renders numeric characters with a uniform width*/
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .counter {
    font-size: 50px;
  }
}
.counter::before {
  content: "+";
  margin-right: 5px;
}

.counter-desc {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #252626;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .counter-desc {
    font-size: 20px;
  }
}

.journeys {
  text-align: center;
  margin-top: 50px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
}

.journey-card {
  position: relative;
  height: 290px;
  width: 300px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .journey-card {
    width: 100%;
  }
}

.journey-card::after {
  content: "";
  position: absolute;
  background-color: rgba(100, 150, 255, 0.3);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.journey-card:hover::after {
  opacity: 1;
}

.journey-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-card span {
  position: absolute;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 5px;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.journey-card:hover {
  transform: translateY(-5px);
}

.container-btn {
  text-align: center;
}

.btn-custom {
  background: #2c3e50;
  color: white;
  width: 250px;
  height: 57px;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-style: italic;
  margin-top: 20px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s ease;
  border: none;
}
.btn-custom:hover {
  background: #34495e;
  transform: translateX(5px);
}

.custom-tours {
  margin-top: 80px;
  text-align: center;
}

.customers-bg {
  background-image: url("../assets/images/customers.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  position: relative;
  margin-top: 20px;
}

.title {
  text-align: center;
}

.customer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.7s ease-in-out;
  opacity: 0;
  position: absolute;
  bottom: 50px;
  transform: translateY(50px);
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 50px;
}

.customer-container.active {
  transform: translateY(0);
  opacity: 1;
}

.customer-content {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 7px;
  padding: 20px;
  max-width: 800px;
  align-items: center;
  position: absolute;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.customer-msg {
  font-size: 21px;
  line-height: 1.8;
  text-align: center;
}

.customer-name {
  text-align: center;
  padding-top: 10px;
  font-size: 20px;
}

/* Indicadores de navegação */
.slide-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 29%;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.indicator.active {
  background-color: white;
  transform: scale(1.5);
  border-color: rgba(255, 255, 255, 0.8);
}

footer {
  background: #9eaaa0;
  margin-top: 10px;
  padding: 32px;
  color: #f9f9f9;
  font-family: "Montserrat", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 24px;
  }
  .footer-container > div:nth-child(1) {
    grid-row: 3;
  }
  .footer-container {
    /* Reordena os blocos (1 = primeira linha, etc.)
    > div:nth-child(1) { grid-row: 3; } // logo e endereço por último
    > div:nth-child(2) { grid-row: 1; } // About primeiro
    > div:nth-child(3) { grid-row: 2; } // Quick Links depois*/
  }
}

.footer-logo {
  width: 200px;
  padding-bottom: 16px;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .footer-logo {
    margin-top: 17px;
  }
}

.linkfooter {
  color: #f9f9f9;
  display: block;
  padding-top: 20px;
  transition: color 0.3s ease;
}
.linkfooter:hover {
  color: #FF6B35;
}

footer h4 {
  font-weight: bolder;
  text-transform: uppercase;
  margin-top: 17px;
}

footer p {
  color: #f9f9f9;
}

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

body {
  background: #f9f4f0;
  /*overflow-x: hidden;*/
}

/*# sourceMappingURL=style.css.map */
