@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');

#logo {
  position: absolute;
  width: 120px;
  top: 0px;  
  bottom: 0px;
  left: 0px;
  
  border: 1px solid red;
  background-color: rgba(255, 0, 0, 0.1);
}

#superior {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 60px;
  left: 120px;
  
  border: 1px solid green;
  background-color: rgba(0, 255, 0, 0.1);
}

#inferior {
  position: absolute;
  top: 60px;
  right: 0px;
  bottom: 0px;
  left: 120px;   
  
  border: 1px solid blue;
  background-color: rgba(0, 0, 255, 0.1);
}


#superior, #inferior {
  text-align: right;
  line-height: 40px;
  padding: 10px;
}






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

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}



ul {
  list-style: none
}

a {
  text-decoration: none;
  
  color: inherit;
}

header {
  height: calc(100vh - 150px);
  background: no-repeat center/cover url('/assets/arraialdaajuda].jpg');
}


header nav {
  display: flex;
  justify-content: space-between;
  margin: 0 30px;
  color: #fff;
}

header nav p {
  cursor: pointer;
  font-weight: bold;
  font-size: 1.5em;
  transition: text-shadow .6s ;
}
header nav p:hover {
  text-shadow: 0px 0px 10px #fff;
}


header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin: 0 15px;
  font-weight: 600;
  cursor: pointer;
}

header nav ul li:hover {
  color: #f56c11;
  transition: .4s;
}


.header-content {
  color: #ffe816;
  font-weight: bold;
  max-width: 400px;
  margin: 150px auto;
  text-align: center;
  animation: ease text-move 2s forwards;
}


.header-content h1 {
  margin-bottom: 10px;
  font-size: 4rem;
}

@keyframes text-move{
  from {transform:  translateY(0px);
        opacity: 0;}
  to {transform:   translateY(-20px);
      opacity: 1;}
}
button {
  padding: 10px 25px;
  border-radius: 9px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  border: 0;
  cursor: pointer;
  background-color: rgb(248, 124, 7);
  color: #fff;
}

/* GERAL */
body {
    margin: 0;
    background: #f5f5f5;
    font-family: Arial, sans-serif;
}



/* BANNER */
.banner {
    background: ;
    padding: 50px 20px;
    text-align: center;
}

.banner h1 {
    font-size: 30px;
    margin-bottom: 25px;
}

.banner span {
    color: #fbff14;
    font-weight: bold;
}

/* CARD */
.buscador-box {
    background: rgba(250, 241, 241, 0.267);
    padding: 25px;
    border-radius: 20px;
    max-width: 1200px;
    margin: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* TABS */
.tipo-viagem {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.tipo-viagem button {
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid #ccc;
    background: white;
    cursor: pointer;
    font-weight: bold;
}

.tipo-viagem .ativo {
    background: #1D1CE5;
    color: white;
    border-color: #1D1CE5;
}

/* GRID */
.inputs-grid {
    display: grid;
    grid-template-columns: 1.4fr 40px 1.4fr 1fr 1fr 1.2fr 1fr;
    gap: 12px;
    align-items: center;
}

/* CAMPOS */
.campo {
    position: relative;
}

.campo input,
.campo select {
    width: 100%;
    padding: 12px 12px 12px 38px;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    font-size: 15px;
}

.icon {
    position: absolute;
    top: 13px;
    left: 10px;
    color: #666;
}

label i {
    color: #1D1CE5;
    margin-right: 5px;
}

/* SUGESTÕES */
.autocomplete ul {
    position: absolute;
    margin: 0;
    padding: 0;
    list-style: none;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    width: 100%;
    display: none;
    z-index: 10;
}

.autocomplete ul li {
    padding: 10px;
    cursor: pointer;
}

.autocomplete ul li:hover {
    background: #eee;
}

.seta-centro {
    text-align: center;
    font-size: 22px;
    color: #555;
}

/* BOTÃO */
.botao-buscar {
    padding: 14px;
    background: #1D1CE5;
    color: white;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.botao-buscar .loading {
    display: none;
    width: 22px;
    height: 22px;
    border: 3px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .inputs-grid {
        grid-template-columns: 1fr 40px 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .inputs-grid {
        grid-template-columns: 1fr;
    }

    .seta-centro {
        display: none;
    }

    .botao-buscar {
        width: 100%;
    }
}


/* PACOTES */

.pacotes {
  background-color: rgba(235, 231, 231, 0.363);
  padding: 25px;
}

.pacotes .pacotes-cards {
  /* background: #333; */
  margin: auto;
  max-width: 1050px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}



.pacotes .pacotes-title { 
  width: 100%;
  margin: auto;
  padding: 25px;
  text-align: center;
}


.pacotes .card {
  margin: 25px;
  width: 250px;
  height: 380px;
  background: #fff;
  border-radius: 24px 0px;
  box-shadow: 0px 0px 4px -1px #222;
  position: relative;
  transition: all 1s;
}

.pacotes .card:hover {
  transform: scale(1.1);
}


.pacotes .card-image {
  width: 250px;
  height: 200px;
  border-radius: 24px 0 0 0;
  object-fit: cover;
}

.pacotes .card-content {
  padding: 0 15px;
}

.pacotes .card-content h1 {
  font-size: 0.9rem;
}

.pacotes .card-content ul  {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding-left: 0;
}

.pacotes .card-content ul li {
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  margin: 3px 0px;
  color: gray;
  font-weight: bold;
}

.pacotes .card-content li svg {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.pacotes .card .card-tag-top{
  position: absolute;
  background: #f56c11;
  right: 0;
  top: 15px;
  border-radius: 8px 0 0 8px;
  padding: 5px 10px;
  box-shadow: 1px 2px 5px -2px #222;
}


.pacotes .card .card-tag-bottom {
  position: absolute;
  left: 0;
  top: 160px;
  background: #1d61dd;
  border-radius: 0 8px 8px 0;
  padding: 5px 10px;
  box-shadow: 1px 1px 4px 1px #222;
}

.pacotes .card .card-tag p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: bold;
  color: #ffff;
}

/* SERVIÇOS */

.servicos {
  padding: 15px;
}

.servicos .servicos-title {
  text-align: center;
  margin: 25px;
}

.servicos .servicos-cards {
  display: flex;
  padding: 35px 0 ;
  max-width: 950px;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
}

.servicos .card {
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
}

.servicos .card svg {
  width: 60px;
  height: 60px;
  margin: 50px 0;
  transition: all 1s;
}

.servicos .card svg:hover {
  color: #f56c11;
  transform: scale(1.1);
}

.servicos .card h3 {
  font-weight: bold;
}

.servicos .card p {
  color: gray;
  font-size: .8rem;
  text-align: center;
}

.servicos .card .card-content {
  height: 100px;
  text-align: center;
  margin-bottom: 50px;
}

/* Set the size of the div element that contains the map */
#map {
  height: 400px;  /* The height is 400 pixels */
  width: 100%;  /* The width is the width of the web page */
}

.contato {
  /* padding: 60px; */
  background-color: #e1e8f7;
  position: relative;
}

.contato .contato-card {
  width: 350px;
  height: 300px;
  padding: 0 30px;
  background: #fff;
  position: absolute;
  z-index: 99;

  border-radius: 8px;

  top: calc(50% - 150px);
  left: calc(20% - 170px);

  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
}

.contato .contato-card  h1 {
  padding-right: 58px;
}

.contato .contato-card li {
  font-size: .8rem;
  font-weight: bold;
  color: gray;
  
  display: flex;
  align-items: center;
}

.contato .contato-card li svg {
  width: 16px;
  margin: 10px;
}

/* RESPONSIVIDADE */

/* Especial para Mapa */
@media (max-width: 902px) {
  .contato {
    padding: 60px;
  }

  .contato .contato-card {
    left: 40px;
  }
}

@media (max-width: 850px) {
  .contato {
    padding: 40px 0  ;
  }

  .contato .contato-card {
    position: static;
    margin: 40px auto;
  }
}

/* Para Tablet */
@media (max-width: 767px) {

}

/* Para mobile */
@media (max-width: 480px) {
  body {
    margin-bottom: 55px;
  }
  
  header nav ul {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;

    z-index: 100;
    
    background: #073da1;
    color: #fff;
    font-weight: bold;
    height: 55px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header nav p {
    width: 100%;
    text-align: center;
  }

  
}