@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;1,100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");

:root {
  --color-font: #504747;
  --color-white: #fff;
  --color-white2: #eeeded;
  --color-green1: #28322b;
  --color-green2: #3d4640;
  --color-green3: #016634;
  --color-dark1: rgb(39, 39, 39);
  --color-dark2: #2d2d2d;
  --color-dark3: #414141;
  --color-dark4: #1c1c1c;
  --color-dark5: #343434;
  --color-gold: #daa520;
  --color-gold2: #c59c4d;
  --color-gold3: #fec629;
  --color-orange: #ff6314;
  --color-ice: #adcfff;
  --color-ceu: #87ceeb;
}

html {
  scroll-behavior: smooth;
  margin: 0px;
  padding: 0px;
}

* {
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background-color: var(--color-green1);
  color: var(--color-white);
}

/* --- BARRA FIXA (HEADER) --- */
.header {
  background-color: #F3EFE0;
  justify-content: space-between;
  padding: 5px 10%;

  /* Configuração para ficar Fixa no Topo */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  /* Importante para não estourar a largura */

  min-height: 3.5em;
  height: auto;
  z-index: 1000;
  /* Aumentei para garantir que fique acima de tudo */
  border-bottom: 2px solid #28322b;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.logo_header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.img_logo_header {
  height: 60px;
  width: auto;
}

.logo_texto {
  height: 35px;
  width: auto;
}

/* Menu Desktop */
.navigation_header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3em;
  z-index: 2;
}

.navigation_header a {
  text-decoration: none;
  color: var(--color-green3);
  transition: 0.3s;
  font-weight: bolder;
  font-size: 1rem;
}

.navigation_header a:hover {
  color: var(--color-ceu);
}

.active {
  background: var(--color-gold3);
  padding: 10px;
  border-radius: 10px;
}

/* Ícones Sociais (Configuração GERAL para PC e Celular) */
.social-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-menu img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s;
  vertical-align: middle;
}

.social-menu img:hover {
  transform: scale(1.1);
}

/* Botões do Header */
.btn_icon_header {
  display: none;
  /* Escondido no PC */
}

/* Link Reserva Assinado */
.link-reserva {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.logo-assinatura {
  width: 25px;
  height: auto;
  margin-top: 3px;
  display: block;
}

/* --- MEDIA QUERY: MENU MOBILE (APENAS CELULAR) --- */
@media screen and (max-width: 768px) {

  .header {
    padding: 5px 5%;
  }

  /* Gaveta do Menu Mobile */
  .navigation_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 80vw;
    /* Largura da gaveta */
    height: 100vh;

    /* Fundo Vidro (Mais visível: 90%) */
    background-color: rgba(243, 239, 224, 0.90);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column !important;
    /* Um item embaixo do outro */
    align-items: center;
    justify-content: center;

    padding: 0;
    gap: 0;
    z-index: 2000;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);

    margin-left: -100vw;
    /* Começa escondido */
    transition: 0.4s ease-in-out;
  }

  /* Links do Menu no Celular */
  .navigation_header a:not(.social-menu a) {
    font-size: 1.3rem;
    color: #28322b !important;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(40, 50, 43, 0.1);
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Remove linha do último link */
  .navigation_header a.link-reserva {
    border-bottom: none;
  }

  /* Remove fundo amarelo do 'Home' no celular */
  .navigation_header a.active {
    background: transparent !important;
    border-radius: 0;
    color: #28322b !important;
  }

  /* Ajuste dos Ícones Sociais no Celular */
  .social-menu {
    margin-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
    width: 100%;
    gap: 25px;
  }

  .social-menu img {
    width: 35px;
    /* Ícones maiores para o dedo */
    height: 35px;
  }

  /* Botão X (Fechar) - Verde e Grande */
  .navigation_header .btn_icon_header {
    background: transparent !important;
    color: var(--color-green1) !important;
    border: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    padding: 0;
    display: block !important;
    box-shadow: none;
  }

  /* Botão MENU (Amarelo) do Cabeçalho */
  .header>.btn_icon_header {
    display: block !important;
    position: static;
    margin-left: auto;
    background-color: var(--color-gold3);
    color: var(--color-green1);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  }

  /* Ajuste Frase Slide Mobile */
  .slider .list .item .phrase {
    font-size: 16px;
    bottom: 60px;
  }
}

/* --- FIM DO CSS MOBILE --- */

/* SLIDER */
.slider {
  width: 100%;
  height: 65vh;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.slider .list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  width: max-content;
  transition: 1s;
}

.slider .list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider .buttons {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.slider .buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff5;
  color: #fff;
  border: none;
  font-family: monospace;
  font-weight: bold;
  cursor: pointer;
}

.slider .dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.slider .dots li {
  list-style: none;
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 10px;
  border-radius: 20px;
  transition: 0.5s;
  cursor: pointer;
}

.slider .dots li.active {
  width: 5px;
  height: 5px;
}

.slider .list .item {
  position: relative;
}

.slider .list .item .phrase {
  position: absolute;
  top: auto;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 24px;
  text-align: center;
  width: 90%;
  font-family: "Georgia", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  z-index: 10;
  pointer-events: none;
  animation: typing 1.5s ease-out forwards;
}

@keyframes typing {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* CARDS E CONTEUDO */
.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--color-green1);
  justify-items: center;
  width: 100%;
}

.imagem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image {
  margin-top: 30px;
  max-width: 450px;
  border-radius: 15px;
}

.title {
  display: flex;
  justify-content: start;
  align-items: start;
  font-size: xx-large;
  margin-bottom: 15px;
  position: relative;
  padding: 20px;
}

.title::before {
  content: "";
  position: absolute;
  top: 50px;
  height: 2px;
  width: 70px;
  background-color: var(--color-gold);
  border-radius: 100px;
}

.conteudoPrincipal {
  text-align: justify;
  font-family: "Poppins", sans-serif;
  padding: 20px;
}

.areas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  align-items: baseline;
}

.card {
  background-color: var(--color-gold3);
  padding: 10px;
  margin: 20px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 30vw;
  box-shadow: 10px 10px 10px var(--color-dark4);
}

.conteudo {
  text-align: justify;
  font-family: "Poppins", sans-serif;
  height: 100px;
  width: 170px;
  overflow: hidden;
  position: relative;
}

.conteudo h2,
.conteudo h3,
.conteudo h4,
.conteudo h5 {
  text-align: center;
  color: var(--color-dark4);
}

.title2 {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.icon {
  width: 45px;
  height: 45px;
}

/* RESPONSIVIDADE CARDS */
@media (max-width: 1024px) {
  .areas {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .card {
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  .areas {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }

  .card {
    margin: 15px 5px;
  }

  .sobre {
    grid-template-columns: 1fr;
  }

  .image {
    width: 90%;
  }
}

@media (max-width: 390px) {
  .areas {
    grid-template-columns: 1fr;
  }
}

/* SAP E PONTOS TURISTICOS */
.avulso,
.avulso2 {
  font-family: Georgia, serif;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--color-green1);
  text-align: center;
  padding: 20px 0;
}

.sap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  align-items: baseline;
  background-color: var(--color-green1);
  margin-top: 20px;
}

.pontoTuristico {
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.titulo2 {
  color: var(--color-white);
  text-align: center;
}

.premiacao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.premiacao img {
  border-radius: 20px;
  width: 230px;
  height: 300px;
}

.premiacao p {
  margin: 20px 0 30px 0;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  text-align: justify;
}

@media (max-width: 940px) {
  .sap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .sap {
    grid-template-columns: 1fr;
  }
}

/* RODAPÉ */
.rodape {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  background-color: #1c1c1c;
  justify-items: center;
  align-items: start;
  padding-bottom: 30px;
}

.contato h1,
.mapa h1 {
  margin: 20px 0;
}

.redeSocial a {
  text-decoration: none;
  margin: 0 5px;
}

.ordem a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-decoration: none;
}

.whats p {
  margin-left: 0.5rem;
  color: var(--color-white);
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .rodape {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .rodape {
    grid-template-columns: 1fr;
  }
}

/* BOTÕES FLUTUANTES */
.floating-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 3000;
}

.btn-float {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 28px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.btn-float:hover {
  transform: scale(1.1);
}

.whatsapp-float {
  background-color: #25d366;
}

.home-float {
  background-color: #F3EFE0;
  color: #28322b;
  font-size: 24px;
  border: 2px solid #28322b;
}