* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #1c1c1c;
  overflow-x: hidden;
}

/* TELA DE IDIOMA */

.tela-idioma {
  position: fixed;
  inset: 0;
  background: #f5b800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.caixa-idioma {
  width: 90%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 28px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
}

.caixa-idioma img {
  width: 180px;
  max-width: 80%;
  margin-bottom: 25px;
}

.caixa-idioma h1 {
  color: #111111;
  font-size: 32px;
  margin-bottom: 10px;
}

.caixa-idioma p {
  font-size: 18px;
  margin: 6px 0;
}

.botoes-idioma {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.botoes-idioma button {
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 35px;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: .3s;
}

.botoes-idioma button:hover {
  background: #f5b800;
  color: #111111;
}

/* TOPO */

.topo {
  width: 100%;
  background: #f5b800;
  display: grid;
  grid-template-columns: 170px 1fr 230px;
  align-items: center;
  gap: 25px;
  padding: 10px 32px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0,0,0,.18);
}

.logo {
  width: 170px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* MENU */

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.menu a,
.dropdown span {
  color: #111111;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.menu a:hover,
.dropdown span:hover {
  color: #ffffff;
}

.dropdown {
  position: relative;
  padding: 18px 0;
}

.dropdown-menu {
  position: absolute;
  top: 54px;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .3s;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 15px 20px;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
}

.dropdown-menu a:hover {
  background: #fff4c2;
  color: #111111;
}

/* CARRINHO + BANDEIRAS */

.acoes-topo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 230px;
}

.seletor-idioma-topo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-bottom: -2px;
}

.seletor-idioma-topo button {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 2px solid #111111;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,.18);
  transition: .25s;
}

.seletor-idioma-topo button:hover {
  transform: translateY(-2px);
  border-color: #ffffff;
}

.seletor-idioma-topo button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carrinho-btn {
  background: #111111;
  color: #f5b800;
  border: none;
  border-radius: 36px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  min-width: 185px;
  height: 54px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}

/* HERO */

.hero {
  min-height: 90vh;
  background: url("./imagens/banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 55px;
}

.hero-conteudo {
  width: 100%;
  max-width: 1250px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 45px;
}

.hero-texto-box {
  max-width: 720px;
  transform: translateY(45px);
}

.hero-texto-box p {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 3px 12px rgba(0,0,0,.55);
}

.hero-texto-box span {
  display: block;
  font-size: 22px;
  line-height: 1.4;
  text-shadow: 0 3px 12px rgba(0,0,0,.55);
}

.hero-botoes {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  transform: translateY(0);
}

.hero-botoes a {
  min-width: 190px;
  text-align: center;
}
/* BOTÕES */

.btn-principal,
.btn-secundario,
button {
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 35px;
  padding: 14px 24px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

.btn-principal {
  background: #f5b800;
  color: #111111;
}

.btn-secundario {
  background: #ffffff;
  color: #111111;
}

/* SEÇÕES */

.secao {
  padding: 80px 40px;
  text-align: center;
}

.secao h2 {
  color: #111111;
  font-size: 46px;
  margin-bottom: 25px;
}

.secao p {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: 18px;
  line-height: 1.7;
}

.subtitulo {
  color: #555555;
}

.fundo-claro {
  background: #fff4c2;
}

/* QUEM SOMOS */

.fotos-quem-somos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto;
}

.fotos-quem-somos img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(0,0,0,.14);
}

.foto-netinho {
  object-position: center 18%;
}

.texto-quem-somos {
  max-width: 1050px;
  margin: 0 auto;
  text-align: left;
}

.texto-quem-somos p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CARDS */

.cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  text-align: left;
  border-top: 7px solid #f5b800;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  transition: .3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #111111;
  font-size: 24px;
  margin-bottom: 15px;
}

.card p {
  text-align: left;
  font-size: 16px;
  margin-bottom: 8px;
}

.card strong {
  display: block;
  font-size: 26px;
  color: #111111;
  margin: 16px 0;
}

.card button {
  width: 100%;
  background: #f5b800;
  color: #111111;
  margin-top: 10px;
  transition: .3s;
}

.card button:hover {
  filter: brightness(.95);
}

.foto-passeio {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  margin-bottom: 18px;
  display: block;
}

.input-data-passeio {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cccccc;
  border-radius: 12px;
  font-size: 15px;
  margin: 12px 0;
}

/* BOTÕES CARD */

.botoes-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.btn-info {
  display: block !important;
  width: 100%;
  background: #111111 !important;
  color: #f5b800 !important;
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 30px;
}

.btn-info:hover {
  background: #222222 !important;
}

/* VIP E 4X4 */

.vip p {
  margin-bottom: 4px;
}

.vip strong {
  margin: 8px 0 14px;
}

/* GALERIA 4X4 */

.galeria-4x4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.galeria-4x4 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  display: block;
  transition: .3s ease;
}

.foto-4x4-dunas {
  object-position: center 80% !important;
}

.foto-4x4-farol {
  object-position: center 72% !important;
}

.galeria-4x4 img:hover {
  transform: scale(1.02);
}

.campo-pessoas {
  margin-top: 15px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.campo-pessoas input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cccccc;
  border-radius: 12px;
  font-size: 16px;
}

/* BANNER TRANSFER */

.banner-transfer {
  position: relative;
  max-width: 1200px;
  height: 360px;
  margin: 35px auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,.18);
}

.banner-transfer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-transfer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55),
    rgba(0,0,0,.15)
  );
}

.banner-transfer-texto {
  position: absolute;
  left: 45px;
  bottom: 40px;
  z-index: 2;
  max-width: 520px;
  color: #ffffff;
  text-align: left;
}

.banner-transfer-texto h3 {
  color: #f5b800;
  font-size: 38px;
  margin-bottom: 10px;
}

.banner-transfer-texto p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

/* FORMULÁRIOS */

.formulario {
  width: 100%;
  max-width: 700px;
  margin: 30px auto 0;
  display: flex;
    flex-direction: column;
  gap: 15px;
}

.formulario input,
.formulario textarea,
.dados-cliente input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #cccccc;
  border-radius: 13px;
  font-size: 16px;
  outline: none;
}

.formulario textarea {
  min-height: 170px;
  resize: none;
}

.formulario button {
  background: #f5b800;
  color: #111111;
}

/* BAGAGEM */

.bagagem {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 16px;
  cursor: pointer;
}

.bagagem input {
  width: 18px;
  height: 18px;
}

.bagagem-form {
  justify-content: flex-start;
  background: #f7f7f7;
  padding: 15px;
  border-radius: 12px;
  color: #111111;
}

/* CONTATO */

.contato {
  background: #111111;
  color: #ffffff;
}

.contato h2 {
  color: #f5b800;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 45px auto 0;
}

.contato-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(245,184,0,.35);
  border-radius: 24px;
  padding: 28px;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 145px;
  overflow: hidden;
}

.contato-item:hover {
  background: rgba(245,184,0,.12);
  transform: translateY(-5px);
}

.icone-contato {
  width: 70px;
  height: 70px;
  min-width: 70px;
  max-width: 70px;
  background: #f5b800;
  color: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 28px;
}

.icone-contato img {
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  object-fit: contain;
  display: block;
}

.contato-item div:not(.icone-contato) {
  flex: 1;
  min-width: 0;
}

.contato-item h3 {
  color: #f5b800;
  font-size: 23px;
  margin-bottom: 6px;
}

.contato-item p {
  margin: 0;
  font-size: 16px;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* RODAPÉ FINAL */

.rodape-final {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding-bottom: 0;
}

.divisor-premium {
  width: 100%;
  height: 2px;
  background: #d9a300;
  margin: 0;
}

.banner-rodape {
  width: 100%;
  overflow: hidden;
  background: #000;
}

.banner-rodape img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.rodape-info {
  padding: 26px 20px;
  border-top: 3px solid #f5b800;
}

.rodape-info p {
  color: #f5b800;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.rodape-info span {
  display: block;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 8px;
}

.rodape-info small {
  display: block;
  color: #cccccc;
  font-size: 13px;
}

/* MODAL */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 99999;
}

.modal-conteudo {
  width: 92%;
  max-width: 700px;
  margin: 50px auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
}

.fechar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 34px;
  cursor: pointer;
  color: #333333;
}

#itensCarrinho {
  margin-top: 20px;
}

.item-carrinho {
  padding: 15px 0;
  border-bottom: 1px solid #dddddd;
}

.item-carrinho strong {
  color: #111111;
}

.remover {
  background: #d93025 !important;
  color: #ffffff !important;
  width: auto !important;
  margin-top: 10px;
}

.finalizar {
  width: 100%;
  background: #25d366;
  color: #ffffff;
  margin-top: 20px;
  font-size: 18px;
}

.dados-cliente {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid #eeeeee;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dados-cliente h3 {
  color: #111111;
  margin-bottom: 5px;
}

/* MODAL DETALHES */

.modal-detalhes {
  max-width: 850px;
}

.modal-detalhes h2 {
  color: #111111;
  margin-bottom: 18px;
  font-size: 30px;
}

#textoDetalhes {
  text-align: left;
  white-space: pre-line;
  line-height: 1.7;
  font-size: 16px;
  color: #1c1c1c;
}

/* RESPONSIVO */

.menu-mobile-btn {
  display: none;
}

@media (max-width: 900px) {
  .contato-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
    .topo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5b800;
    padding: 22px 18px;
    min-height: 115px;
  }

  .logo {
    width: 175px;
    height: auto;
    margin: 0 auto;
  }

  .logo img {
    width: 100%;
    height: auto;
  }

  .menu-mobile-btn {
    display: flex;
    position: absolute;
    right: 22px;
    top: 38px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111111;
    color: #f5b800;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 0;
    z-index: 1001;
  }

  .menu {
    position: absolute;
    top: 115px;
    left: 0;
    width: 100%;
    background: #f5b800;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px 25px;
    box-shadow: 0 12px 25px rgba(0,0,0,.18);
    z-index: 1000;
  }

  .menu.menu-aberto {
    display: flex;
  }

  .menu a,
  .dropdown span {
    width: 100%;
    text-align: center;
    font-size: 19px;
    padding: 16px 0;
    color: #111111;
  }

  .dropdown {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: unset;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border-radius: 14px;
    transition: all .3s ease;
  }

  .dropdown.ativo .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 350px;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }

  .dropdown.ativo:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 350px;
  }

  .acoes-topo {
    display: none;
  }

  .acoes-topo.menu-aberto {
    display: flex;
  }

  .acoes-topo {
    position: absolute;
    top: 470px;
    left: 0;
    width: 100%;
    background: #f5b800;
    padding: 0 24px 25px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1000;
  }

  .seletor-idioma-topo {
    display: flex;
    justify-content: center;
    gap: 9px;
  }

  .seletor-idioma-topo button {
    width: 34px;
    height: 34px;
  }

  .carrinho-btn {
    width: 100%;
    max-width: 310px;
    min-width: unset;
    height: 58px;
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    background: none;
    padding: 0;
    display: block;
  }

.hero::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: url("./imagens/banner.webp") center center no-repeat;
  background-size: cover;
  background-color: #000000;
}

  .hero-conteudo {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #111111;
    color: #ffffff;
    padding: 35px 24px 45px;
    gap: 25px;
    border-top: 3px solid #f5b800;
  }

  .hero-texto-box {
    max-width: 100%;
    transform: none;
  }

  .hero-texto-box p {
    font-size: 28px;
    line-height: 1.22;
    font-weight: 800;
    margin-bottom: 18px;
    text-shadow: none;
  }

  .hero-texto-box span {
    font-size: 17px;
    line-height: 1.45;
    text-shadow: none;
  }

  .hero-botoes {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    transform: none;
  }

  .hero-botoes a {
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    padding: 16px 22px;
  }

  .secao {
    padding: 55px 18px;
  }

  .secao h2 {
    font-size: 32px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .foto-passeio {
    height: 230px;
  }

  .fotos-quem-somos {
    grid-template-columns: 1fr;
  }

  .fotos-quem-somos img {
    height: 300px;
  }

  .galeria-4x4 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .galeria-4x4 img {
    height: 260px;
  }

  .banner-transfer {
    height: 260px;
    border-radius: 22px;
    margin: 28px auto;
  }

  .banner-transfer::after {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.20),
      rgba(0,0,0,.75)
    );
  }

  .banner-transfer-texto {
    left: 22px;
    right: 22px;
    bottom: 25px;
  }

  .banner-transfer-texto h3 {
    font-size: 28px;
  }

  .banner-transfer-texto p {
    font-size: 15px;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }

  .contato-item {
    padding: 24px;
  }

  .banner-rodape {
    max-height: none;
  }

  .banner-rodape img {
    height: auto;
    object-position: center;
  }

  .modal-conteudo {
    width: 95%;
    margin: 20px auto;
    max-height: 88vh;
    padding: 24px;
  }
}