/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: #ffffff;
    color: #000000;
  }
  
  /* Hero Section */
  .hero {
    background-image: url('2.jpg'); /* Substituir pela imagem de fundo */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .overlay {
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 80px;
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin-bottom:250px
  }
  
  .slogan {
    font-size: 2.5em;
    color: #40e0d0; /* Azul-turquesa */
    margin-bottom: 10px;
  }
  
  .main-message {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .cta-buttons {
    margin-top: 40px;
    flex: 1;
  }
  
  .cta-button {
    background-color: #fff859; /* Amarelo */
    color: #000000;
    padding: 10px 20px;
    margin: auto;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    flex: 1;
  }
  
  .cta-button:hover {
    background-color: #fff859;
    flex: 1;
  }
  
  /* About Section */
  .about-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .about-section h2 {
    color: #004d63; /* Azul-petróleo */
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  .about-section p {
    color: #000000;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto 20px auto;
  }
  
  .about-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-top: 20px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Seção Viagens Personalizadas */
.custom-travel-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.custom-travel-section .content {
  max-width: 800px;
  margin: 0 auto;
}

.custom-travel-section h2 {
  font-size: 2em;
  color: #004d63; /* Azul-petróleo */
  margin-bottom: 20px;
}

.custom-travel-section p {
  font-size: 1.1em;
  color: #000000;
  margin-bottom: 30px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.feature {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: left;
}

.feature h3 {
  font-size: 1.3em;
  color: #40e0d0; /* Azul-turquesa */
  margin-bottom: 10px;
}

.feature p {
  color: #000000;
  font-size: 1em;
}

.cta-button {
  background-color: #fff859; /* Amarelo */
  color: #333;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #fff859;
}

/* Seção Torne-se Consultor */
.consultant-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.consultant-section .content {
  max-width: 800px;
  margin: 0 auto;
}

.consultant-section h2 {
  font-size: 2em;
  color: #004d63; /* Azul-petróleo */
  margin-bottom: 20px;
}

.consultant-section p {
  font-size: 1.1em;
  color: #000000;
  margin-bottom: 30px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.benefit {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: left;
}

.benefit h3 {
  font-size: 1.3em;
  color: #40e0d0; /* Azul-turquesa */
  margin-bottom: 10px;
}

.benefit p {
  color: #000000;
  font-size: 1em;
}

.cta-button {
  background-color: #fff859; /* Amarelo */
  color: #333;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #fff859;
}

/* Seção Contato e Redes Sociais */
.contact-section {
  background-color: #f2f2f2;
  padding: 60px 20px;
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2em;
  color: #004d63; /* Azul-petróleo */
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.1em;
  color: #000000;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.submit-button {
  background-color: #40e0d0; /* Azul-turquesa */
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-button:hover {
  background-color: #40e0d0;
}

.social-media {
  margin-top: 20px;
}

.social-media p {
  color: #000000;
  font-size: 1em;
}

.social-icon {
  margin: 10px;
  color: #000000;
  font-size: 1.2em;
  text-decoration: 'text-decoration-thickness';
  transition: color 0.3s;
}

.social-icon.instagram:hover { color: #E1306C; } /* Cor do Instagram */
.social-icon.facebook:hover { color: #1877F2; } /* Cor do Facebook */
.social-icon.whatsapp:hover { color: #19c20a; } /* Cor do Whatsapp */
