
/* --- Estilo geral --- */
 html {
   scroll-behavior: smooth;
  }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f8f8;
  margin: 0;
  padding: 0;
}


h1, h2 {
  color: #333;
  text-align: center;
}

p {
  color: #555;
  font-size: 17px;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  text-align: left;
}


.container h1 {
  text-align: center;   /* centraliza o título */
  margin-top: 0;        /* opcional: ajusta o espaçamento superior */
}

.container h1 {
  font-family: 'Cinzel', serif; /* fonte clássica */
  font-size: 1.9rem;            /* ajuste conforme achar melhor */
  letter-spacing: 2px;          /* espaço entre letras dá ar de tipografia antiga */
  text-transform: uppercase;    /* caixa alta remete a letreiros clássicos */
  text-align: center;           /* mantém centralizado */
  color: #3B2F2F;               /* marrom escuro elegante */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.25); /* sombra leve para profundidade */
  margin-top: 0.5em;
}

.container img.hero{
    width:80%;
    max-width:600px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,.2)
}

.container img.hero {
  display: block;     /* faz a imagem se comportar como bloco */
  margin: 0 auto;     /* margens automáticas à esquerda e direita → centraliza */
}


/* --- Header e Navegação --- */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #01579B;
  padding: 15px 0;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

body {
  padding-top: 80px; /* Ajuste conforme a altura do seu header */
}

/* Ícone Instagram */
nav a.insta {
  display: inline-block;
  margin-left: 10px;
}

nav a.insta img {
  width: 26px;
  height: 26px;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  transition: transform 0.2s;
}

nav a.insta img:hover {
  transform: scale(1.1);
}

/* --- Hero Image --- */
.hero {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Lista de vantagens --- */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  margin-bottom: 5px;
  font-size: 1em;
  line-height: 1.8;
}

ul li i {
  margin-right: 15px;
  font-size: 1em;
  color: #004d40;
}

/* --- Barra Inferior --- */
.bottom-bar {
  background: #01579B;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 10px 12px;
  text-align: center;
}

.bottom-bar a {
  color: #fff;
  text-decoration: none;
}

.bottom-bar a:hover {
  opacity: 0.8;
}

/* --- Botões de Contato --- */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  color: #00695c;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-block {
  display: inline-block;
  margin: 12px 0;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

/* ícones */
.contact-icon{
  width:22px;
  height:22px;
}


.contact-label {
  min-width: 50px;
  font-weight: 600;
  color: #333;
}

.contact-number {
  color: #00695c;
  text-decoration: none;
}

.contact-number:hover {
  text-decoration: underline;
}

/* --- Notas e Informações Extras --- */
.small-note {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  margin-bottom: 16px;
  padding-left: 30px;
}

.info-box, .info-section, .rules-box {
  background: #E3F2FD;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
}

.info-box h3, .rules-box h3 {
  margin-top: 0;
  color: #004d40;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
}

.info-box ul, .rules-box ul {
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
}

.info-box li, .rules-box li {
  margin-bottom: 5px;
  font-size: 14px;
  color: #555;
}

.info-section {
  background-color: #fff8f2;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.info-section a, .info-box a {
  color: #6d4c41;
  text-decoration: none;
  font-weight: bold;
}

.info-box a:hover, .info-section a:hover {
  text-decoration: underline;
}

.rules-box ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.rules-box li {
  display: flex;
  align-items: center;
  margin-bottom: 8px; /* espaço menor entre os itens */
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.rules-box li i {
  margin-right: 10px;
  color: #00695c;
  font-size: 16px;
  min-width: 22px;
}

.info-box ul, .rules-box ul {
  padding-left: 0;
  margin: 10px 0;
  list-style: none;
}

.info-box li, .rules-box li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.info-box li i, .rules-box li i {
  margin-right: 10px;
  color: #00695c;
  font-size: 18px;
  min-width: 22px;
}


/* --- Formulário Reservas --- */
form {
  max-width: 500px;
  margin: 20px auto;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

button {
  background: #01579B;
  color: #fff;
  padding: 10px 20px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background: #0288D1;
}

/* Específico formulário reservas */
#reservas {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#reservaForm input {
  cursor: pointer;
}

/* Evento Pequeno */
.fc-event.preco-pequeno {
  font-size: 11px !important;
}



  /* --- Galeria de Fotos --- */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center; /* Centraliza os itens */
}

.gallery > div {
  flex: 0 0 16.66%; /* 6 por linha no desktop */
  max-width: 16.66%;
  padding: 0 0.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.gallery img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .gallery > div {
    flex: 0 0 33.33%; /* 3 por linha em tablet */
    max-width: 33.33%;
  }
  .gallery img {
    width: 150px;
    height: 113px;
  }
}

@media (max-width: 768px) {
  .gallery > div {
    flex: 0 0 50%; /* 2 por linha em celular maior */
    max-width: 50%;
  }
  .gallery img {
    width: 120px;
    height: 90px;
  }
}

@media (max-width: 576px) {
  .gallery > div {
    flex: 0 0 100%; /* 1 por linha no celular pequeno */
    max-width: 100%;
    justify-content: center;
  }
  .gallery img {
    width: 70vw; /* diminui a largura responsiva */
    height: 150px;    /* altura fixa */
    object-fit: cover; /* mantém o corte correto */
  }
}

.gallery img:hover {
  transform: scale(1.04);
}


/* Efeito Lupa */
/* Container do link da imagem */
.gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

/* Ícone da lupa */
.gallery a::after {
  content: "\f002"; /* Ícone da lupa */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 30px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}


/* Texto "Clique duplo" no topo */
.click-text {
  position: absolute;
  top: -40px; /* começa fora da imagem */
  left: 0;
  width: 100%;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  font-size: 14px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  opacity: 0;
  transition: top 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  text-shadow: 0 0 3px rgba(0,0,0,0.7);
}

/* Nome da foto embaixo */
.foto-titulo {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  font-size: 14px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  opacity: 0;
  transition: bottom 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  text-shadow: 0 0 3px rgba(0,0,0,0.7);
}

/* Efeitos hover */
.gallery a:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery a:hover .click-text {
  top: 0;       /* desliza para dentro no topo */
  opacity: 1;
}

.midia-miniatura {
  width: 100%;
  height: 25vw; /* altura proporcional à largura da viewport */
  max-height: 300px; /* limite máximo de altura */
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ddd;
}


/* --- Lightbox --- */
  .lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
  }

  .lightbox-modal img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1100;
  }
  
/* Nome da foto com efeito de subida */
.foto-titulo {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  font-size: 14px;
  transition: bottom 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  pointer-events: none;
}

.gallery a:hover .foto-titulo {
  bottom: 0;
  opacity: 1;
}
  

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  z-index: 1101;
  padding: 0 10px;
  user-select: none;
  transition: color 0.3s;
}

.lightbox-prev:hover, .lightbox-next:hover {
  color: #ccc;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}
 
.lightbox-content {
  position: relative;
  display: inline-block;
  border: 8px solid #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.5);
}

.lightbox-content img {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 12px;
  font-size: 16px;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-sizing: border-box;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}


  /* CSS inline abaixo */

  h1 {
    text-align: center;
    color: #333;
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  .hero {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  ul li {
    margin-bottom: 5px;
    font-size: 1em;
    line-height: 1.8;
  }
  /* Cor verde para os ícones */
  ul li i {
    margin-right: 15px;
    font-size: 1em;
    color: #004d40; /* Cor verde */
  }
  strong {
    font-weight: bold;
  }

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 2px 8px;
    max-width: 100%;
    overflow-x: auto;
}

nav a {
  font-size: 17px;
  text-decoration: none;
  padding: 6px 8px;
  color: white; /* letras brancas */
  background-color: #f5f5f5;
  background-color: transparent; /* remove fundo */
  border-radius: 8px; /* <- Arredondamento aplicado */  
  display: inline-flex;
  align-items: center;
}

nav a:hover {
  background-color: #0288D1; /* Cor de fundo ao passar o mouse */
}

nav a.insta {
  padding: 8px;
  background-color: transparent;
  color: #ffffff;            /* Cor do texto (mantida branca) */  
  text-decoration: none;     /* Garante que não sublinhe */  
}

nav a.insta img {
  height: 24px;
  width: 24px;
}

nav a.insta:hover {
  background-color: #0288D1; /* Cor de fundo ao passar o mouse */
}

#inicio {
  scroll-margin-top: 80px;
}



.counter-pair-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  align-items: flex-end; /* Alinha com a base dos campos ao lado */  
}

.counter-pair-row .airbnb-counter-row {
  flex: 1;
  min-width: 0; /* Permite ajuste correto */
}

.airbnb-counter-row {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
 /* border-bottom: 1px solid #ccc; */
  padding: 2px 0;
}

.airbnb-counter-label {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

.airbnb-counter-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.airbnb-counter-controls button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 50%;
  border: 1px solid #999;
  background-color: #f2f2f2;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s;
  padding: 0;
}

.airbnb-counter-controls button:hover {
  background-color: #e0e0e0;
}

.airbnb-counter-controls span {
  font-size: 14px;
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  color: #333;
}

@media (max-width: 600px) {
  .airbnb-counter-controls {
    gap: 0; /* tira o espaço entre os botões e o número no celular */
  }
  
  .airbnb-counter-controls span {
    padding: 0 4px; /* mantém um espaçamento interno pequeno só para o número não grudar demais */
  }
  
  .airbnb-counter-controls button {
    margin: 0; /* remove qualquer margem dos botões no celular */
  }
}

.custom-note {
  text-align: center;
  margin-top: 8px;
  font-size: 12px; /* diminuído aqui */
  color: #00796b;
  font-weight: 500; /* pode deixar mais leve também */
}


/* Posiciona o botão "Hoje" ao lado do mês */
.fc-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fc-toolbar .fc-left {
  display: flex;
  align-items: center;
}

/* Estilo do botão "Hoje", deixando-o sempre com aparência ativa */
.fc-button.fc-today-button {
  background-color: #004d40; /* Cor de fundo padrão */
  border: none;
  border-radius: 0;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.3s;
  margin-left: 10px;
}

/* Cor do botão "Hoje" ao passar o mouse */
.fc-button.fc-today-button:hover {
  background-color: #004d40; /* Cor mais escura quando hover */
}

/* Remover foco e borda quando o botão é ativado */
.fc-button.fc-today-button:focus,
.fc-button.fc-today-button:active {
  background-color: #00796b; /* Manter a mesma cor do botão */
  box-shadow: none; /* Remover sombra */
  outline: none;
}

/* Ajusta o tamanho e a aparência das setas de navegação */
.fc-button.fc-prev-button,
.fc-button.fc-next-button {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #00796b;
  padding: 4px 8px;
  width: 32px;
  height: 32px;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}

.fc-button.fc-today-button:disabled {
  background-color: transparent;   /* Sem fundo */
  border: 1px solid transparent;   /* Borda transparente */
  color: #bdbdbd;                  /* Cor do texto acinzentada */
  cursor: default;                 /* Cursor padrão (não clicável) */
  opacity: 0.6;                    /* Um pouco mais apagado */
  box-shadow: none;
}

/* Quando o mouse passa por cima das setas */
.fc-button.fc-prev-button:hover,
.fc-button.fc-next-button:hover {
  color: #004d40;
  background-color: #e0f2f1; /* fundo leve no hover */
}

/* Remover qualquer contorno no botão geral */
.fc-button:focus,
.fc-button:active {
  background-color: transparent;
  color: #00796b;
  box-shadow: none;
  outline: none;
}

/* Quando o botão de seta está desativado (disabled) */
.fc-button.fc-prev-button:disabled,
.fc-button.fc-next-button:disabled {
  background-color: transparent !important;
  border: none;
  color: transparent;
  cursor: default;
  opacity: 1; /* Para não parecer esmaecido */
  pointer-events: none; /* Garante que não clique */
}
.fc-button.fc-prev-button:focus,
.fc-button.fc-next-button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.fc-button.fc-prev-button:active,
.fc-button.fc-next-button:active {
  outline: none !important;
  box-shadow: none !important;
}
*:focus {
  outline: none !important;
}



.fc-day.fc-past-custom {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}

/* Dias intermediários (entre check-in e check-out) */
.fc .fc-daygrid-day.fc-temp-selected {
  background-color: #bbdefb !important; /* azul bem claro */
  color: #1b5e20 !important;
  border-radius: 0 !important;
  font-weight: normal;
}

/* Check-in */
.fc .fc-daygrid-day.fc-temp-start {
  background-color: #0d47a1 !important; /* azul forte */
  color: #fff !important;
  border-radius: 0 !important;
  font-weight: bold;
}

/* Check-out */
.fc .fc-daygrid-day.fc-temp-end {
  background-color: #0d47a1 !important; /* azul forte */
  color: #fff !important;
  border-radius: 0 !important;
  font-weight: bold;
}

/* Destaque durante arraste (opcional) */
.fc .fc-highlight {
  background-color: #a5d6a7 !important; /* verde médio */
  opacity: 1 !important;
}

/* Remover bordas do highlight */
.fc .fc-highlight-frame {
  border: none !important;
}

/* Nota explicativa acima do calendário */
.custom-note {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #333;
  font-style: italic;
}


/* Quando seleciona arrastando (highlight durante o mouse) */
.fc .fc-highlight {
  background-color: #00695c !important; /* verde escuro */
  opacity: 1 !important; /* sem transparência */
}

/* Quando seleciona clicando (dia fixo selecionado) */
.fc .fc-daygrid-day.fc-day-selected,
.fc .fc-daygrid-day.fc-day-range-start,
.fc .fc-daygrid-day.fc-day-range-end {
  background-color: #004d40 !important; /* verde ainda mais escuro */
  color: #ffffff !important; /* texto branco */
  border-radius: 8px;
  box-shadow: inset 0 0 0 2px #ffffff; /* borda interna branca */
  transition: background-color 0.3s, box-shadow 0.3s;
}
/* Para eventos que são apenas 'highlight', também remove bordas padrão */
.fc .fc-highlight-frame {
  border: none !important;
}


.info-rules-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 40px;   
}

.info-box, .rules-box {
  flex: 1 1 400px;
  max-width: 500px;
}


 /* calendario */

  #modalOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

 #modalContent {
     background: white;
     padding: 20px;
     border-radius: 10px;
     max-width: 500px;
     width: 90%;
     max-height: 90vh; /* aumentar para aproveitar melhor a altura disponível */
     overflow-y: auto; /* permite rolagem vertical */
     box-sizing: border-box;
     font-size: 14px;
 }

   .checkin-checkout h4 {
    font-size: 14px;
    margin: 0;
   } 

   .checkin-checkout {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 10px;
     margin-bottom: 15px;
   }

   .checkin-checkout h4 {
     font-size: 13px; /* Letras menores */
     margin: 0;
   }
   .form-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
   }

  .form-grid .full-width {
    grid-column: span 2;
  }

  #reservaForm label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    text-align: left;
  }

  #reservaForm input {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
  }

  .button-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
  }

  .submit-btn, .close-btn {
    width: 48%;
    padding: 10px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  .submit-btn {
    background-color: #0d47a1;
    color: white;
  }

  .close-btn {
    background-color: #d9534f;
    color: white;
  }

/* Efeito ao passar o mouse */
.close-btn:hover {
  background-color: #c9302c; /* vermelho escuro */
}

.required-label::after {
  content: " *";
  color: red;
}  







