/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: left;
}

.logo-container {
  position: absolute;
  width: 22em;
  height: 10em;
  top: 10px;
  right: 9%;
  /* transform: translateX(-5%); */
  z-index: 10;
}

.logo {
  display: inline-block;
  /* background-color: #ffd966; */
  color: #333;
  font-family: 'Montserrat', sans-serif;
  /* text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7); */
  /* font-size: 2.1rem; */
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  /* padding: 7px 20px; */
  color: #698473;
  letter-spacing: 2px;
  /* border-radius: 20px; */
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
  text-shadow:
    -0.5px -0.5px 0 rgb(47, 56, 49),
    0.5px -0.5px 0 rgb(47, 56, 49),
    -0.5px 0.5px 0 rgb(47, 56, 49),
    0.5px 0.5px 0 rgb(47, 56, 49);
}

.hero-content {
  position: relative;
}

.hero .text-container {
  position: absolute;
  bottom: 10%;
  /* Posiciona o texto mais ao fundo da imagem */
  left: 5%;
  /* Alinha mais à esquerda */
  width: 100%;
  height: auto;
  /* Ajusta para não forçar um espaço fixo */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Ajusta para alinhar as palavras verticalmente */
  align-items: flex-start;
  /* Alinha as palavras à esquerda */
}

.hero .text-container h1 {
  font-family: 'Montserrat', sans-serif;
  /* Aplica a mesma fonte em todas as palavras */
  font-size: 6vw;
  /* Ajusta o tamanho da fonte para ocupar 60% da altura */
  line-height: 1.2;
  /* Reduz ainda mais o espaçamento entre as linhas */
  font-weight: 800;
  /* Negrito */
  /* text-transform: uppercase; */
  margin: 0;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
  /* Sombra para destacar as palavras */
}

.hero .lets {
  color: #fff;
  /* Branco */
}

.hero .go {
  color: #ffd966;
  /* Amarelo */
}

.hero .cop {
  color: #fff;
  /* Branco */
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}


/* Travel Options Section */
.travel-options {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: -40px;
  /* Alinha com a onda */
  padding: 20px 0;
  background-color: #698473;
  /* Verde da imagem original */
}

.travel-options .option1 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-top: 40px;
  overflow: hidden;
  border: 5px solid #ffd966;
  z-index: 10;
}

.travel-options .option1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle1 {
  width: 70px;
  height: 70px;
  background-color: #f9e8a2;
  margin-top: 10px;
  /* Change to any color */
  border-radius: 50%;
}

.travel-options .option2 {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #ffd966;
  z-index: 10;
}

.travel-options .option2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle2 {
  width: 90px;
  height: 90px;
  margin-top: -50px;
  background-color: #f9e8a2;
  /* Change to any color */
  border-radius: 50%;
}

.travel-options .option3 {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin-top: -120px;
  overflow: hidden;
  border: 5px solid #ffd966;
  z-index: 10;
}

.travel-options .option3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Section */
.info-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #698473;
  color: #fff;
  padding: 20px;
  /* border-radius: 8px; */
  margin: 0px 0;
}

.info-text {
  flex: 1;
  margin-right: 20px;
  padding: 20px;
}

.info-text h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.info-text h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffd966;
}

.info-text p {
  font-size: 1rem;
  line-height: 1.6;
}

.info-list {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.info-items {
  list-style: none;
  padding-left: 0;
  text-align: left;
  /* list-style-position: inside;*/
}

.info-items li {
  margin: 10px 0;
  font-size: 1.5rem;
  position: relative;
  padding-left: 40px;
}

.info-list li::before {
  content: "•";
  color: #ffd966;
  font-size: 2.5rem;
  position: absolute;
  left: 0px;
}

.separador {
  background-color: #ffd966;
}

/* Contact Section */
.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffd966;
  padding: 10px;
  color: #333;
}

.contact-text,
.contact-info {
  flex: 1;
  text-align: center;
}

.contact-text h3,
.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-text p,
.contact-info p {
  margin: 5px 0;
  font-size: 1.5rem;
}

/* Estilização do texto para parecer normal */
.email-text {
  cursor: pointer;
  color: inherit;
  /* Mantém a cor padrão do texto */
  text-decoration: none;
  /* Remove sublinhado */
  font-weight: normal;
}

/* Para evitar mudança de cor após o clique */
.email-text:visited,
.email-text:active {
  color: inherit;
}

/* Responsividade */
@media (max-width: 768px) {
  .travel-options {
    flex-direction: column;
    gap: 15px;
  }

  .hero .text-container h1 {
    font-size: 8vw;
    /* Ajusta o tamanho do texto para telas menores */
  }

  .info-section {
    flex-direction: column;
    text-align: center;
  }

  .info-text {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .contact {
    flex-direction: column;
  }

}