@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Playfair Display", serif;

  background-color: black;
  margin: 0;
  padding: 0;
}

.header_container {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.2) 20%,
      rgba(0, 0, 0, 1) 100%
    ),
    url("./img/mont1.jpg");
  background-position: bottom left;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav_container {
  display: flex;
  justify-content: center;
  width: 75%;
  margin-top: 5rem;
}

.nav_list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  list-style: none;
}

.nav_list a {
  text-decoration: none;
  letter-spacing: 0.2rem;
  color: #fafafa;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
}

.nav_list a:hover {
  color: #fafafa91;
  transition: all 0.3s ease-in-out;
}
.nav_list li:nth-child(3) a {
  font-size: 3rem;
}

.hero_banner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 25rem;
  opacity: 0; /* Invisível por padrão */
  transition: opacity 0.5s ease-in-out;
}

.hero_text h1 {
  color: #fafafa;
  font-weight: 700;
  letter-spacing: 0.3rem;
  font-size: 7rem;
}

.hero_text p {
  font-size: 1.3rem;
  color: #fafafa;
  font-weight: 400;
  margin-top: 1rem;
}

.icon_banner {
  font-size: 10rem;
  color: #fafafa91;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.icon_banner:hover {
  color: #fafafa;
}

.animate {
  animation: fadeIn 1s ease-in-out forwards; /* Mantém o estado final */
}

.animete2 {
  animation: fadeIn 1s ease-in-out forwards; /* Mantém o estado final */
  animation-delay: 0.1s; /* Atraso de 0.5 segundos */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(50px);
  }
}

.exitAnimate {
  animation: fadeOut 1s ease-in-out forwards;
}

.exitAnimete2 {
  animation: fadeOut 1s ease-in-out forwards;
}

.main_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Tente um box-shadow mais sutil ou remova completamente */
  box-shadow: inset 0px 10px 30px rgba(0, 0, 0, 0.7);
  position: relative;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.7));
}

.main_container h2 {
  color: #fafaface;
  font-size: 4rem;
  font-weight: 300;
  font-family: "PT Sans", sans-serif;
  letter-spacing: 0.1rem;
}

.explore_container {
  width: 25%;
}

.explore_container p {
  color: #fafafac9;
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  line-height: 2;
  font-weight: 400;
  margin-top: 1rem;
  text-align: center;
}

.articles_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 10rem;
}

.articles_container a {
  text-decoration: none;
  text-transform: uppercase;
  color: #00a7dac4;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin-top: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.articles_container a span {
  color: #fafafa;
  position: absolute;
  bottom: -0.5rem;
  width: 0%;
  height: 0.2rem;
  background-color: #00a7da91;
  transition: all 0.7s ease-in-out;
}

.articles_container a:hover span {
  width: 100%;
}

.card_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  gap: 5rem;
  position: relative;
}

.card {
  width: 35%;
  height: 55rem;
  position: relative;
  border-radius: 0.5rem;
}

.card h3 {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 2rem;
  text-align: center;
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.2rem;
}

.card p {
  color: #ffffff9d;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 1.3rem;
  text-align: center;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.1rem;
}

.img_container {
  width: 100%;
  height: 100%;
  display: block;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.img_container:hover img {
  transform: scale(1.1);
}

.activeCard {
  opacity: 1;
  animation: fadeCard 2s ease-in-out;
}

.exitCard {
  animation: fadeCardOut 1s ease-in-out forwards;
}

@keyframes fadeCard {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeCardOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.journey_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10rem;
  margin-bottom: 0;
}

.journey_container h2 {
  color: #fafafaa6;
  font-size: 4rem;
  font-weight: 300;
  font-family: "PT Sans", sans-serif;
  letter-spacing: 0.1rem;
}

.journey_text {
  color: #fafafac9;
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  line-height: 2;
  font-weight: 400;
  margin-top: 3rem;
  text-align: center;
  width: 50%;
}

.journey_card_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  gap: 5rem;
  margin-top: 10rem;
  overflow: hidden;
}

.journey_card {
  width: 50%;
  height: 50rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}

.activeJourneyCard {
  opacity: 1;
  animation: fadeJourneyCard 2s ease-in-out;
}

.exitJourneyCard {
  animation: fadeJourneyCardOut 1s ease-in-out forwards;
}

@keyframes fadeJourneyCard {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeJourneyCardOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.img_containe_jorney {
  width: 50%;
  height: 70%;
  flex-shrink: 0;
  display: block;
}

.img_containe_jorney img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.img_container_jorney {
  width: 100%;
  height: auto;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.img_container_jorney img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.img_container_jorney:hover img {
  transform: scale(1.1);
}

.journey_text_card {
  width: 100%;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.journey_text_card h3 {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.2rem;
}

.journey_text_card p {
  color: #ffffff9d;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 1.3rem;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  max-width: 90%;
}

.banner_hero_2 {
  background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 1) 100%),
    url("./img/monst7.jpg");
  background-position: center;
  background-size: cover; /* Cobrir toda a área */
  width: 100%;
  height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Previne que partes da imagem saiam do container */
}

.banner_hero_2 a {
  color: #00c3ff67;
  font-size: 2rem;
  font-weight: 300;
  font-family: "PT Sans", sans-serif;
  letter-spacing: 0.1rem;
  text-decoration: none;

  position: absolute;
  top: 1rem;
  display: flex;
  flex-direction: column;
}

.banner_hero_2 a span {
  color: #fafafa;
  position: absolute;
  bottom: -0.5rem;
  width: 0%;
  height: 0.2rem;
  background-color: #00a7da91;
  transition: all 0.7s ease-in-out;
}

.banner_hero_2 a:hover span {
  width: 100%;
}

.footer_container{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3rem;
  background-color: #040505c4;

}

.footer_text{
  color: #fafafa85;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  text-align: center;
}

.footer_container span{
  margin-left: 2rem;
  height: 100%;
  background-color: #00c3ff67;
  text-decoration: none;
  width: .1rem;
}

.footer_links{
  display: flex;
 
  text-decoration: none;
}

.footer_links p{
  color: #fafafa85;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  text-align: center;
  margin-left: 3rem;
  text-transform: uppercase;
  cursor: pointer;
}

.footer_links p:hover{
  color: #00c3ff67;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 478px){

  .header_container{
    height: 100vh;
    width: 100%;
  }
  .nav_list{
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    
  }

  .nav_list a{
    font-size: 1.2rem;
  }

  .hero_text h1{
    font-size: 5rem;
  }

  .icon_banner{
    font-size: 8rem;
  }

  .main_container h2{
    font-size: 3rem;
  }

  .explore_container{
    width: 80%;
  }

  .card_container{
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    
  }

  .card{
    width: 100%;
    height: 40rem;
  }

  .journey_container h2{
    font-size: 3rem;
  }

  .journey_text{
    width: 80%;
  }

  .journey_card_container{
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }

  .journey_card{
    width: 100%;
    height: 40rem;
  }

  .img_container_jorney{
    width: 100%;
    height: 70%;
  }

  .journey_text_card{
    width: 100%;
    height: 30%;
  }

  .journey_text_card h3{
    font-size: 2rem;
  }

  .journey_text_card p{
    font-size: 1.2rem;
  }

  .banner_hero_2{
    height: 70vh;
  }

  .footer_container{
    height: auto;
    flex-direction: column;
  }

  .footer_container span{
    margin: 1rem 1rem;
    width: 100%;
    height: .1rem;

  }

  .footer_text{
    font-size: 1.2rem;
  }

  .footer_links{
    gap: .5rem;
    flex-direction: column;
  }

  .footer_links p{
    font-size: 1rem;
    margin-left: 0;
  }
}

