* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
}

/* HERO */
.hero {
  height: 70vh;
  background: url("imagens/home.jpg") center / cover no-repeat;
  position: relative;
  z-index: 10;
  overflow: hidden;  
  color: #fff;
}

.sobre,
.essencia,
.servicos,
.experiencias,
.contato {
  position: relative;
  z-index: 1;
}


/* HEADER */
.hero-header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
}

.menu a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-size: 16px;
}

/* CONTEÚDO CENTRAL */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  gap: 40px;
}


.hero-logo img {
  width: 150px;
}

.hero-divider {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.6);
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 2px;
}

/* FAIXA INFERIOR */
.hero-bottom {
  background: #0b4d6d;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
}

.newsletter {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter img {
  width: 150px;
  filter: brightness(0) invert(1);
  transform: rotate(-30deg);

}

.newsletter h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.newsletter p {
  font-size: 14px;
  margin-bottom: 10px;
}

.newsletter button {
  padding: 10px 25px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.contato h3 {
  margin-bottom: 10px;
}

/* sobre nos */

/* SOBRE NÓS */
.sobre {
  position: relative;
  background: #f5f5f3;
  padding: 50px 80px;
  overflow: hidden;
}

.sobre-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* TEXTO */
.sobre-texto {
  flex: 1.2;
    max-width: 60%;

}

.sobre-texto h2 {
  color: #0b4d6d;
  font-size: 42px;
  letter-spacing: 2px;
}

.sobre-texto .linha {
  width: 100%;
  height: 1px;
  background: #0b4d6d;
  margin: 20px 0 30px;
}

.sobre-texto p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}

.sobre-texto ul {
  margin: 20px 0 30px 20px;
}

.sobre-texto li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* IMAGEM */
.sobre-imagem {
  position: absolute;
  right: 80px;
  bottom: 10%;
}

.sobre-imagem img {
  width: 100%;
  display: block;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

/* DETALHES DECORATIVOS */
.sobre-imagem .decoracao {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#0b4d6d 2px, transparent 2px);
  background-size: 20px 20px;
  z-index: 1;
}


/* sobre 2 */
.essencia {
  background: #f5f5f3;
  padding: 50px 80px;
}

.essencia-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* TOPO EM DUAS COLUNAS */
.essencia-topo {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* TEXTO */
.essencia-texto {
  flex: 1.2;
}

.essencia-texto h2 {
  color: #0b4d6d;
  font-size: 42px;
  letter-spacing: 2px;
}

.essencia-texto .subtitulo {
  margin-top: 50px;
}

.essencia-texto h3 {
  color: #0b4d6d;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 30px 0 10px;
}

.essencia-texto .linha {
  width: 100%;
  height: 1px;
  background: #0b4d6d;
  margin: 15px 0 30px;
}

.essencia-texto p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

/* IMAGEM */
.essencia-imagem {
  position: relative;
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.essencia-imagem img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  border-radius: 50%;
  z-index: 2;
}

.essencia-imagem .linhas {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: repeating-linear-gradient(
    45deg,
    #0b4d6d,
    #0b4d6d 2px,
    transparent 2px,
    transparent 12px
  );
  z-index: 1;
}

/* FULL WIDTH */
.essencia-full {
  margin-top: 40px;
}

.essencia-full p {
  width: 100%;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}


/*servicoe */
/* SERVIÇOS */
.servicos {
  background: #f5f5f3;
  padding: 50px 200px 100px 80px; /* + espaço à direita */
  position: relative;
}

.servicos-container {
  max-width: 1400px;
  margin: 0 auto;
}

.servicos h2 {
  color: #0b4d6d;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.servicos .linha {
  width: 100%;
  height: 1px;
  background: #0b4d6d;
  margin-bottom: 50px;
}

/* GRID */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ITEM */
.servico-item img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}

.servico-item h3 {
  color: #0b4d6d;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.servico-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

/* DETALHE LATERAL (FAIXA AZUL) */
.servicos::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: #0b4d6d;
}

/* experiencias */

/* EXPERIÊNCIAS */
.experiencias {
  background: #f5f5f3;
  padding: 50px 80px 60px;
}

.experiencias-container {
  max-width: 1400px;
  margin: 0 auto;
}

.experiencias h2 {
  color: #0b4d6d;
  font-size: 42px;
  letter-spacing: 2px;
}

.experiencias .linha {
  width: 100%;
  height: 1px;
  background: #0b4d6d;
  margin: 15px 0 40px;
}

/* LINK */
.buscador-link {
  text-decoration: none;
  color: inherit;
}

/* BUSCADOR */
.buscador-box {
  border: 1px solid #0b4d6d;
  padding: 30px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.buscador-link:hover .buscador-box {
  background: #eef5f8;
  cursor: pointer;
}

/* TABS */
.buscador-tabs {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  font-size: 18px;
  color: #0b4d6d;
}

.buscador-tabs .ativo {
  font-weight: bold;
}

/* GRID */
.buscador-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.campo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icone {
  background: #0b4d6d;
  color: #fff;
  padding: 12px;
  font-size: 16px;
}

.input-fake {
  flex: 1;
  height: 40px;
  border: 1px solid #aaa;
  background: #fff;
}

/* TEXTO */
.experiencias-texto {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

/* IMAGEM FINAL */
.experiencias-imagem {
  height: 380px;
  background: url("imagens/experiencias.jpg") center / cover no-repeat;
}



/* FALE CONOSCO */
.contato {
  position: relative;
  height: 100vh;
  background: url("imagens/fale-conosco.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.contato-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

/* CONTAINER */
.contato-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.contato-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.logo-circulo {
  width: 260px;
  height: 260px;
  background: #0b4d6d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circulo img {
  width: 140px;
}

/* REDES */
.redes {
  display: flex;
  gap: 20px;
}

.redes img {
  width: 36px;
}

/* AÇÕES */
.contato-acoes {
  text-align: right;
}

.contato-acoes h2 {
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.contato-acoes .subtitulo {
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 40px;
  text-align: center;
}

/* BOTÕES */
.botao {
  display: block;
  width: 320px;
  padding: 14px 0;
  margin-bottom: 20px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  text-align: center;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.botao:hover {
  background: #fff;
  color: #0b4d6d;
}



/* icones */
.redes {
  display: flex;
  gap: 20px;
}

.icone-rede {
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icone-rede svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.icone-rede:hover {
  background: #fff;
}

.icone-rede:hover svg {
  fill: #0b4d6d;
}


/* mobile */

@media (max-width: 768px) {

  /* GERAL */
  section {
    padding: 50px 20px !important;
  }

  p {
    font-size: 15px;
    line-height: 1.6;
  }

  h2 {
    font-size: 30px !important;
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 100px 20px 40px;
  }

  .hero-header {
    padding: 20px;
  }

  .menu {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.3;
  }

  .hero-divider {
    display: none;
  }

  /* HERO BOTTOM */
  .hero-bottom {
    padding: 30px 20px;
    gap: 25px;
  }

  .newsletter img {
    width: 90px;
  }

  /* SOBRE */
  .sobre {
    padding-top: 60px;
  }

  .sobre-container {
    gap: 40px;
  }

  .sobre-imagem img {
    max-width: 260px;
    margin: 0 auto;
  }

  /* ESSÊNCIA */
  .essencia-topo {
    gap: 30px;
  }

  .essencia-imagem img {
    width: 220px;
    height: 220px;
  }

  .essencia-imagem .linhas {
    display: none;
  }

  /* SERVIÇOS */
  .servicos-grid {
    gap: 50px;
  }

  .servico-item img {
    height: 220px;
  }

  /* EXPERIÊNCIAS */
  .buscador-box {
    padding: 20px;
  }

  .buscador-tabs {
    font-size: 16px;
    gap: 15px;
    margin-bottom: 20px;
  }

  .buscador-grid {
    grid-template-columns: 1fr;
  }

  .buscador-box::after {
    content: "Toque para pesquisar passagens";
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #0b4d6d;
    opacity: 0.8;
  }

  /* IMAGEM FULL */
  .experiencias-imagem {
    height: 180px;
  }

  /* CONTATO */
  .contato {
    padding: 60px 0;
  }

  .logo-circulo {
    width: 160px;
    height: 160px;
  }

  .contato-acoes h2 {
    font-size: 32px;
  }

  .contato-acoes .subtitulo {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .botao {
    max-width: 260px;
  }
}
