.pagina-viagens {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7da438 0%, #6b8e30 50%, #45824a 100%);
  border-radius: 24px;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
  color: #fff;
  margin: 10px;
  box-sizing: border-box;
}

/* CONTEÚDO */
.viagens-conteudo {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* TEXTO */
.viagens-texto {
  width: 100%;
  text-align: center;
}

.viagens-tag {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 15px;
  backdrop-filter: blur(8px);
}

.viagens-texto h1 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 15px;
  font-weight: 800;
  color: #ffffff;
}

.viagens-texto .subtitulo {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 25px;
}

/* CARD */
.card-info {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.card-info h3 {
  margin-top: 0;
  font-size: 19px;
  color: #45824a;
  margin-bottom: 10px;
}

.card-info p {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 20px;
}

/* BOTÃO */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #45824a;
  color: #ffffff;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

/* LOGO */
.viagens-logo {
  width: 100%;
  display: flex;
  justify-content: center;
}

.viagens-logo img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  padding: 10px;
}

/* ===== DESKTOP ===== */
@media (min-width: 992px) {

  .pagina-viagens {
    padding: 60px;
    border-radius: 32px;
  }

  .viagens-conteudo {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }

  /* ÁREA DO TEXTO MAIOR */
  .viagens-texto {
    flex: 1.35;
    text-align: left;
    min-width: 0;
  }

  /* TÍTULO EM UMA LINHA */
  .viagens-texto h1 {
    font-size: 50px;
    white-space: nowrap;
    line-height: 1.05;
  }

  /* LOGO */
  .viagens-logo {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 175px;
  }

  .viagens-logo img {
    max-width: 300px;
    object-fit: contain;
  }

  .btn-whatsapp {
    display: inline-flex;
    padding: 14px 25px;
    font-size: 16px;
  }
}
