main {
  background-color: #e5e8ec;
  border-radius: 20px;
  padding: 4rem 4rem;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  display: flex;
  gap: 3rem;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
}

/* Select2 customização */
.select2-container--default .select2-selection--single {
  background-color: #e5e8ec;
  border: 1px solid #3a3f4a;
  border-radius: 8px;
  height: 38px;
  color: #374151;
  padding-left: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #374151;
  line-height: 38px;
}

.select2-container--default .select2-results>.select2-results__options {
  background-color: #e5e8ec;
  color: #374151;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #1da757;
  color: #1a202c;
  /* branco no texto destacado para contraste */
}

.text-section,
.box-select {
  width: 48%;
  min-width: 350px;
}

.text-section {
  text-align: left;
}

.text-section h1 {
  font-size: 3rem;
  color: #374151;
  /* texto normal branco acinzentado */
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  user-select: none;
}

/* verde usado só em destaque */
.text-section h1 span {
  color: #1da757;
}

.text-section p {
  font-size: 1.25rem;
  color: #2d3748;
  font-weight: 500;
  margin-top: 0.2rem;
  max-width: 420px;
  user-select: none;
}

.box-select {
  background-color: #dce0e5;
  border-radius: 20px;
  padding: 2.5rem 2.2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.box-select h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d3748;
  /* cor neutra, sem verde */
  text-align: center;
  user-select: none;
}

select {
  font-size: 1rem;
  background-color: #e5e8ec;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  color: #374151;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

select:focus {
  outline: none;
  box-shadow: 0 0 10px #1da757;
  /* verde só no foco */
  background-color: #161b20;
}

.btn {
  background: #1da757;
  /* cor sólida verde para botão */
  border: none;
  color: #1e293b;
  padding: 0.85rem 0;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(87, 242, 135, 0.7);
  transition: background 0.3s ease, color 0.3s ease;
  user-select: none;
  margin-top: 0.5rem;
}

.btn:hover {
  background: #37b45d;
  /* tom mais escuro de verde */
  color: #e6ffe8;
  /* texto claro para contraste */
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.9);
}

/* Principais Destinos */
.popular-destinations {
  max-width: 1200px;
  margin: 6rem auto 6rem auto;
  padding: 0 1rem;
  color: #2d3748;
  user-select: none;
}

.popular-destinations h2 {
  color: #374151;
  /* branco claro, sem verde */
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.popular-destinations ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  list-style: none;
  padding-left: 0;
  justify-content: center;
}

.popular-destinations li {
  background-color: #e5e8ec;
  padding: 0.8rem 1rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  min-width: 160px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  cursor: default;
}

.popular-destinations li img {
  width: 24px;
  height: 17px;
  border-radius: 2px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* Avaliações */
.testimonials {
  max-width: 1200px;
  margin: 3rem auto 3rem auto;
  padding: 0 1rem;
  color: #2d3748;
  text-align: center;
  user-select: none;
}

.testimonials h2 {
  color: #374151;
  /* branco claro */
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.testimonial-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background-color: #e5e8ec;
  padding: 2rem 1.8rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  max-width: 320px;
  flex: 1 1 280px;
  color: #374151;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(87, 242, 135, 0.7);
}

.testimonial-card .stars {
  font-size: 1.2rem;
  color: #1da757;
  /* verde só na estrela */
  margin-bottom: 1rem;
  user-select: text;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #2d3748;
}

.testimonial-card footer {
  font-weight: 700;
  color: #1da757;
  /* verde só no autor */
  align-self: flex-end;
}

/* Responsividade */
@media (max-width: 720px) {
  .select2-hidden-accessible {
    margin: 0;
    padding: 0;
    position: relative !important;
  }

  /* Main: empilhar os blocos, largura total, sem overflow */
  main {
    flex-wrap: wrap;
    overflow-x: hidden;
    padding: 2rem 1rem;
    gap: 2rem;
    justify-content: center;
  }

  .text-section,
  .box-select {
    width: 100%;
    max-width: 480px;
    margin-bottom: 2rem;
    text-align: center;
  }

  .box-select {
    padding-bottom: 0px;
  }

  .text-section h1 {
    font-size: 2.2rem;
  }

  .text-section p {
    max-width: 100%;
  }

  .box-select button.btn {
    width: 100%;
  }

  .popular-destinations ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
  }

  .popular-destinations li {
    flex: 1 1 calc(50% - 1rem);
    max-width: 240px;
    justify-content: flex-start;
  }

  .testimonial-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .benefits {
    flex-direction: column;
    align-items: stretch;
  }

  .benefit-card {
    flex: 1 1 100%;
  }

}

/* ==== Benefícios (seguindo o design do site) ==== */

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 3rem auto 2rem auto;
  padding: 0 1rem;
  max-width: 1200px;
}

.benefit-card {
  background-color: #e5e8ec;
  /* mesmo tom usado em .card ou sections */
  border-radius: 1rem;
  padding: 1.5rem 1.2rem;
  flex: 1 1 calc(25% - 1.5rem);
  min-width: 220px;
  text-align: left;
  transition: background 0.3s ease;
  border: 1px solid #c8d0da;
}

.benefit-card:hover {
  background-color: #d8e0eb;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #2d3748;
  line-height: 1.4;
  margin: 0;
}

.benefit-card::before {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  background: linear-gradient(90deg, #1a202c, #1da757);
  border-radius: 2px;
  margin-bottom: 1rem;
}