main {
  background-image: url("/assets/images/index/trilha.png");
  background-attachment: fixed;
  background-size: contain;
}

/* [2.2] BARRA DE BUSCA (CONFIGURAÇÕES): */
.input-container {
  background-color: transparent;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-bar_btn {
  border: none;
  width: 70%;
  display: flex;
}

.bar_input {
  border: none;
  padding: 16px;
  padding-left: 25px;
  width: 100%;
  height: 60px;
  font-size: 1rem;
  border-radius: 50px 0px 0px 50px;
  box-shadow: 0px 1px 24px 0px #00000024;
}

.bar_input:focus {
  outline: none;
  border: 3px solid rgb(var(--primary-color));
  border-right: none;
  transition: none;
}

.btn_search {
  width: 80px;
  height: 60px;
  border-radius: 0px 50px 50px 0px;
  background-color: rgba(var(--primary-color), 0.7);
  border: none;
  box-shadow: 0px 1px 24px 0px #00000024;
}

.btn_search:hover {
  cursor: pointer;
  background-color: rgba(var(--primary-color));
}

.fa-search:hover {
  scale: 1.3;
}

.fa-search {
  font-size: 20px;
  color: #fff;
}

input:focus {
  outline: none;
}

/* 2.1 Configurações do header do card: */
.card-header {
  border: 0px solid #333;
  margin: 0px;
  height: 200px;
  overflow: hidden;
}

.card-img {
  min-width: none;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

.card-header img:hover {
  transform: scale(1.1);
}

/* 2.2 Configurações do body do card: */
.card-body {
  min-height: 160px;
  padding: 0px 20px;
  text-align: left;
}

.card-titulo {
  font-size: 1.2rem;
  margin: 10px 0px;
}

.card-texto {
  font-size: 1rem;
}

/* 2.3 Configurações do Footer do card: */
.card-footer {
  border-top: 4px solid #33333357;
  height: 60px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-card {
  border: none;
  border-radius: 30px;
  width: 200px;
  height: 40px;
  background: #3498b3;
  color: #fff;
  cursor: pointer;
}

/* .btn-card:hover {
background-color: #42a7c3;
color: #fff;
} */

/* [2.4] CTA DE TURISMO (CONFIGURAÇÕES): */
.container-cta {
  position: relative;
  margin: 10px 0px;
  display: flex;
  justify-content: center;
}

.banner-call {
  max-width: 100%;
  height: 420px;
  margin: 0px 14%;
  border: 0px solid orange;
}

.banner-call img {
  width: 100%;
  height: 100%;
}

.container-left {
  position: absolute;
  background-color: #6565657b;
  max-width: 38%;
  min-width: 40%;
  top: 0;
  left: 10;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.left-content {
  color: #fff;
  font-size: 1.6rem;
  transition: font-size 1s ease-in-out;

  text-align: left;
  line-height: 1.5;
  width: 200px;
  min-width: 200px;
  height: 320px;
  overflow: hidden;
}

/* ====================================================== */
@media only screen and (max-width: 800px) {
  /* [2.1] BANNER E LEGENDA (CONFIGURAÇÕES): */

  /* [2.2] - CONFIGURAÇÕES da BARRA DE BUSCA: */
  .search-bar_btn {
    width: 100%;
    padding: 0px 40px;
  }

  .bar_input {
    min-width: 170px;
    height: 54px;
  }

  .btn_search {
    height: 54px;
  }

  /* [2.3] CARDS CONTAINER (CONFIGURAÇÕES): */
  .card {
    width: 260px;
    height: 410px;
    gap: 5px;
  }
  .card:hover {
    transform: none;
  }

  .card-header {
    height: 180px;
  }

  .card-body {
    min-height: none;
    padding: 0px 10px;
  }

  .card-footer {
    height: 56px;
    margin: 0px;
  }

  .btn-card {
    width: 156px;
    height: 34px;
  }

  /* [2.4] CTA DE TURISMO (CONFIGURAÇÕES): */
  .container-call {
    flex-direction: column;
    align-items: center;
    margin: 20px 0px;
  }

  .banner-call {
    width: 100%;
    height: 280px;
  }

  .container-left {
    max-width: 72%;
    height: 30%;
    position: absolute;
    top: 70%;
  }

  .left-content {
    font-size: 0.8rem;
    text-align: center;
    width: 100%;
    height: auto;
    margin: 10px;
  }
}
