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

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;

}

nav a:hover {
  color: #f1c40f;
}

section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: 30px;
  color: #5B1864;
}

h4 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 15px;
  color: #5B1864;
}

.hoteis{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.destinos, .pacotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

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

.card img {
  width: 120%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  padding: 15px 15px 5px;
  color: #333;
}

.card p {
  padding: 0 15px 15px;
  color: #666;
}

.rodape {
  background-color: #61236e;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}


.cards-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.card-coment {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-coment img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.card-coment p {
  font-style: italic;
  margin-bottom: 15px;
  color: #444;
}

.card-coment h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  color: #555;
}

.linha-divisoria {
  height: 1px;
  background-color:#f1c40f;
  margin: 10px auto 20px;
  width: 80%;
}


.linha-divisoria-hotel {
  height: 1px;
  background-color:lightgrey;
  margin: 10px auto 20px;
  width: 95%;
}

.fa-stars::before {
  font-family: "Font Awesome 5 Free"; /* ou 6, dependendo da versão */
  font-weight: 900;
  content: '\f005 \f005 \f005 \f005 \f005'; /* 5 ícones separados */
  color: gold;
  font-size: 16px;
}

.btn-saiba-mais {
  display: inline-flex;
  align-items: center ;
  gap: 8px;
  padding: 5px 20px;
  border: 2px solid lightgray;
  color: #090909;
  background-color: transparent;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
  background-color:  #f1c40f;
  color: white;
}

.btn-saiba-mais i {
  transition: transform 0.3s ease;
}

.btn-saiba-mais:hover i {
  transform: translateX(4px);
}

.btn-right {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
  padding: 0 20px; /* opcional: margem lateral */
}



/* _____________________________________________________ */


.carrossel {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;  /* mais retangulo no desktop */
  overflow: hidden;
  margin-bottom: 2rem;
}

.carrossel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

#prev {
  left: 10px;
}

#next {
  right: 10px;
}

/* carrossel comentario */

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s;
  width: 100%;
  will-change: transform;  
}

.carousel-card {
  flex: 0 0 100%;
  max-width: 100%;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  text-align: center;
  min-width: 0;
}

.carousel-btn {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
}
.carousel-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .carousel-track {
    gap: 0 !important; 
  }
  .carousel-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.stars {
  color: #f5c518; /* cor dourada estilo IMDb */
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.stars span {
  margin-right: 2px;
}

/* _________________________________________________ */


.cards-section {
  position: relative;
  margin-top: -230px;
  padding: 40px 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  z-index: 1; 
}

.cards-title {
  position: absolute;   
  top: -310px;          
  left: 30%;       
  transform: translateX(-50%);
  padding: 10px 30px;
  font-size: 3.1rem;
  color: #fff;
  font-weight: bold;
  z-index: 15;     
  width: 600px;
}

.card-info {
  background: white;
  padding: 30px;  
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  word-wrap: break-word;
  min-width: 0;
  max-width: 100%;
}

.card-info h3, .card-info p {
  margin: 0 0 10px 0;
}
.card-info i {
  font-size: 40px;
  color: #6e48c7;
  margin-bottom: 15px;
}

 @media (max-width: 1024px) {
  .cards-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-section {
    grid-template-columns: 1fr;
    margin-top: -380px; 
  }
   .cards-title {
    font-size: 2.0rem;
    padding: 8px 20px;
    white-space: normal;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    top: -180px;   
    text-align: center;
  }
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}


/* nossos servicos */
  .servicos {
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
      text-align: center;
    }

    .servicos h2 {
      color: #5B1864;
      margin-bottom: 30px;
    }

    .lista-servicos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .item-servico {
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      padding: 20px;
      flex: 1 1 calc(25% - 30px); /* 4 por linha no desktop */
      max-width: calc(25% - 30px);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .item-servico i {
      font-size: 40px;
      color: #5B1864;
      margin-bottom: 15px;
    }

    .item-servico h3 {
      margin: 10px 0 5px;
      color: #333;
    }

    .item-servico p {
      font-size: 14px;
      color: #666;
    }

    .item-servico:hover {
      transform: translateY(-5px);
    }

    /* Responsivo: 2 por linha em telas menores */
    @media (max-width: 768px) {
      .item-servico {
        flex: 1 1 calc(50% - 15px); /* 2 por linha no mobile */
        max-width: calc(50% - 15px);
      }
      .lista-servicos h3{
        font-size: 16px;
      }
    }


    .texto-comentario {
  max-height: 4.5em; /* Aproximadamente 3 linhas */
  overflow: hidden;
  text-overflow: ellipsis;
  transition: max-height 0.3s ease;
}

.texto-comentario.expandido {
  max-height: 1000px; /* Valor alto para expandir completamente */
}

.toggle-btn {
  background: none;
  color: #3498db;         /* Azul discreto */
  border: none;
  padding: 6px 10px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

.toggle-btn:hover {
  color: #2c80b4;         /* Leve variação no hover */
}