/* =========================================================
   THEME.CSS - UNIFICADO COM MENU MOBILE ESCURO + GALERIA OCULTA
   ========================================================= */

/* Reset e ajustes básicos */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: 'Raleway', sans-serif;
	font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.5; 
    background-color: #FFFFFF;
    overflow-x: hidden;
    color: #232E1B; /* cor da fonte em toda a página */
}

h1,h2,h3,h5 {
  font-family: "Playfair Display", serif; /* título elegante */
  font-weight: 700;
  font-size: 2.8rem;
  color: #232E1B;
  text-align: center;
  margin-bottom: 10px;
}
p {
  color: #232E1B;
}
.hero-content h2{
  	text-shadow: 2px 2px 5px rgba(0,0,0,0.65);
}

.wrapper.row2 {
  padding-bottom: 60px; /* aumenta o espaço inferior */
}


/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
header, .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
	background: linear-gradient(
    to bottom,          /* direção do degradê */
    rgba(0, 0, 0, 0.8), /* topo: mais escuro */
    rgba(0, 0, 0, 0.0)  /* base: mais transparente */
  );
  transition: background 0.3s ease;
    height: 90px;
}

/* Logo */
.navbar .logo {
    display: flex;
    align-items: center;
    height: 90%;
    padding-left: 10px;
}

.navbar .logo img,
.navbar-interna .logo img {   /* unifica navbar e navbar-interna */
    width: 210px;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Menu items - desktop */
.menu-items {
    display: flex;
    gap: 10px;
    z-index: 9998;
}

.menu-items a {
    text-decoration: none;
    color: white;
    padding: 14px 20px;
    text-align: center;
    transition: color 0.3s ease;
}

.menu-items a:hover {
    color: #F6E708;
}

/* Hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 32px;
    color: white;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

/* =========================================================
   RESPONSIVIDADE / MENU MOBILE
   ========================================================= */
@media (max-width: 768px) {

    .navbar {
        justify-content: center;
    }

    .navbar .logo {
        padding-left: 0;
    }

    .hamburger {
        display: block;
        top: 25px;
        right: 20px;
        transform: none;
    }

    .navbar .logo img,
    .navbar-interna .logo img {
        width: 210px;  /* tamanho consistente em mobile */
    }

    .menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0,0,0,0.85);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 999;
        text-align: center;
        transition: all 0.3s ease;
    }

    .menu-items.active {
        display: flex;
    }

    .menu-items a {
        padding: 14px;
        font-size: 1.2rem;
        color: white;
    }

    body.menu-open .navbar {
        background-color: rgba(0,0,0,0.8);
    }

    .menu-items .menu-logo {
        display: block;
        padding: 14px 0;
    }

    .menu-items .menu-logo img {
        width: 210px;
        margin: 0 auto;
    }
}

@media (min-width: 769px) {
    .menu-items .menu-logo { display: none; }
}

@media (max-width: 480px) {
    .navbar .logo img,
    .navbar-interna .logo img {
        width: 150px;  /* ou 150px, evita encolher demais */
    }
}

/* =========================================================
   HERO SECTION UNIFICADA
   ========================================================= */

/* Hero ocupa toda a tela */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Cada slide */
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease-in-out;
  animation: slideAnimation 20s infinite, backgroundMove 30s infinite linear;
}

/* Slide ativo */
.slide.active {
  opacity: 1;
  z-index: 5;
}

/* Overlay */
.slide .overlay {
  display: none !important;
  background: none !important;
}

/* Conteúdo centralizado */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

/* Títulos e subtítulo */
.hero-content h1,
.hero-content h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-size: 3rem;
}

.hero-content .hero-subtitle {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0);
}

/* Botão principal (CTA) */
.hero-content .btn-cta {
  display: inline-block;
  padding: 12px 30px;
  background-color: #F7CB1F;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  margin-top: 80px;
  transition: background 0.3s ease;
}

.hero-content .btn-cta:hover {
  background-color: #EBB000;
}

/* Animações */
@keyframes slideAnimation {
  0% { opacity: 0; }
  5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes backgroundMove {
  0% { background-position: center top; }
  50% { background-position: center bottom; }
  100% { background-position: center top; }
}

/* Tempos individuais de cada slide */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }

/* Responsivo */
@media (max-width: 768px) {
  .hero-content h1, .hero-content h2 {
    font-size: 2rem;
  }
  .hero-content .btn-cta {
    margin-top: 40px;
    padding: 10px 25px;
  }
}

/* =========================================================
   ONE THIRD SHADOW BOX  —  PASSEIOS/ TRANSFERS/ INDICAÇAO 
   ========================================================= */

/* Wrapper e container permanecem com fundo branco */
.wrapper.row3 {
    background-color: #ffffff;
}

/* LI dos cards */
ul#latest.group.grid-3 .one_third.shadow {
    background-color: #ffffff !important;
    box-shadow: none !important;
}

/* ARTICLE dos cards */
ul#latest.group.grid-3 .one_third.shadow article {
    background-color: #ffffff !important;
}

/* FIGURE */
ul#latest.group.grid-3 .one_third.shadow article figure {
    background-color: #ffffff !important;
}

/* EXCERPT */
ul#latest.group.grid-3 .one_third.shadow .excerpt {
    background-color: #ffffff !important;
}

/* 
---------------------------------
NO-HOVER CARDS
---------------------------------
*/

.no-hover-card {
  box-shadow: 0 0 15px rgba(0,0,0,0.15) !important; /* sombra fixa */
  transition: none !important; /* remove animação */
}

.no-hover-card:hover {
  box-shadow: 0 0 15px rgba(0,0,0,0.15) !important; /* mesma sombra no hover */
  transform: none !important; 
  opacity: 1 !important;
  filter: none !important;
}
 /* Remove hover SEM alterar sombra, fundo ou nada */
.no-hover-fotos {
  pointer-events: none; /* a chave da simplicidade */
}

/* Bloqueia todos os efeitos de hover e deixa sombra única */
#latest2 li.no-hover-card,
#latest2 li.no-hover-card * {
    transition: none !important;       /* remove animação */
    transform: none !important;        /* remove deslocamentos */
    opacity: 1 !important;             /* força opacidade */
    filter: none !important;           /* remove filtros */
    box-shadow: none !important;       /* remove sombras existentes */
}

/* Aplica sombra única fixa apenas no li */
#latest2 li.no-hover-card {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important; /* sombra fixa */
    background: #fff !important;                         /* fundo branco */
}

/* Remove qualquer pseudo-elemento que possa criar sombra ou overlay */
#latest2 li.no-hover-card::before,
#latest2 li.no-hover-card::after,
#latest2 li.no-hover-card *::before,
#latest2 li.no-hover-card *::after {
    content: none !important;
    display: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
/* =========================================================
   CONTACT BLOCK 
   ========================================================= */
.contato-block {
    font-family: inherit;
}

/* Links e ícones */
.contato-block .linky,
.contato-block .whatslink {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #36231B !important; /* cor padrão marrom escuro */
    transition: color 0.3s ease; /* efeito suave */
}

.contato-block .linky i,
.contato-block .whatslink i {
    margin-right: 6px;
}

/* Hover laranja */
.contato-block .linky:hover,
.contato-block .whatslink:hover {
    color: #EBA401 !important;
}

/* Links dentro de contact-link */
.contato-block .linky.contact-link,
.contato-block .whatslink.contact-link {
    display: block;          /* ocupa toda largura */
    padding: 4px 0;          /* altura controlada */
    color: #36231B;          /* cor normal */
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;        /* evita que fique muito apertado */
}

.contato-block .linky.contact-link:hover,
.contato-block .whatslink.contact-link:hover {
    color: #E2A200 !important;
}

.contato-block .linky.contact-link:hover i,
.contato-block .whatslink.contact-link:hover i {
    color: #E2A200 !important;
}

/* Títulos */
.contato-block h3 {
    color: #E2A200;
    font-weight: bold;
}

.contato-block h3:first-child {
    margin-top: 0;
}

/* Parágrafos */
.contato-block p:first-of-type {
    margin-top: 0;
}

/* Ajuste específico */
.contato-block .left {
    margin-top: -25px; /* sobe 25px */
}

/* Formulário de eventos */
.contato-block form .form-group {
    margin-bottom: 12px;
}

.contato-block form input,
.contato-block form select,
.contato-block form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95em;
    box-sizing: border-box;
}

.contato-block form textarea {
    resize: vertical;
}

.contato-block form button.btn-enviar {
    background-color: #36231B;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contato-block form button.btn-enviar:hover {
    background-color: #251814;
}

/* Responsivo */
@media (max-width: 768px) {
    .contato-block .left,
    .contato-block .right {
        width: 100% !important;
        float: none !important;
        margin-bottom: 20px;
    }

    .contato-block .right img {
        width: 100%;
        height: auto;
    }
}


/* ==============================
   OMNIBEES ORANGE SECTIONS
============================== */

#omnibees-orange-section,
#omnibees-orange-section-2 {
  background-color: #FFA500; /* faixa laranja */
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 30px;
}

#omnibees-orange-section .container,
#omnibees-orange-section-2 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0 auto;
}

/* Título */
#omnibees-orange-section .title,
#omnibees-orange-section-2 .title {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ==============================
   FORMULÁRIOS - DESKTOP
============================== */

@media (min-width: 769px) {

  /* Desktop: ambos os formulários sempre visíveis */
  #datepickerform,
  #datepickerform-2 {
    display: flex;
    flex-direction: row;
    gap: 35px;
  }

  /* No desktop os botões de "Reservar" somem */
  #btn-reservar,
  #btn-reservar-2 {
    display: none;
  }
}

/* Campos do formulário com mesma largura */
#datepickerform input,
#datepickerform select,
#datepickerform-2 input,
#datepickerform-2 select {
  flex: 1;
}

/* Botão submit com espaçamento */
#datepickerform .btn,
#datepickerform-2 .btn {
  margin-left: 10px;
}

/* ==============================
   MOBILE (até 768px)
============================== */
@media (max-width: 768px) {

  /* Os formulários ficam escondidos inicialmente */
  #datepickerform,
  #datepickerform-2 {
    display: none; /* SEM !important para o slideToggle funcionar */
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  /* Botões aparecem no mobile e ficam centralizados */
  #btn-reservar,
  #btn-reservar-2 {
    display: inline-block;
    background-color: #232E1B;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin: 10px auto 15px auto; /* CENTRALIZAÇÃO */
  }

  /* Hover dos botões */
  #btn-reservar:hover,
  #btn-reservar-2:hover {
    background-color: #FFFFFF;
    color: #0A243F;
  }

  /* Formulário mobile: campos ocupam 100% */
  #datepickerform input,
  #datepickerform select,
  #datepickerform-2 input,
  #datepickerform-2 select {
    flex: 1 1 100%;
    width: 100%;
  }

  /* Botão submit mobile */
  #datepickerform .btn,
  #datepickerform-2 .btn {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  
}

/* ==============================
   BUTTONS GENÉRICOS
============================== */

.btn-search,
.btn-search2 {
  display: inline-block;
  text-align: center;
  border: none;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 1rem;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Botões principais */
.btn-search { 
  background-color: #F6E708; 
  color: #232E1B; 
}

.btn-search:hover { 
  background-color: #FFA500; 
  color: #232E1B; 
}

.btn-search2 { 
  background-color: #FFA500; 
  color: #232E1B; 
}

.btn-search2:hover { 
  background-color: #F6E708; 
  color: #232E1B; 
}

.button-wrapper {
  text-align: center;
  margin: 30px auto 10px auto;
}

.button-wrapper .btn-search {
  background-color: #232E1B;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.button-wrapper .btn-search:hover {
  background-color: #FFFFFF;
  color: #0A243F;
}

/* ==============================
   BOTÕES SUBMIT DOS FORMULÁRIOS
============================== */

#datepickerform .btn,
#datepickerform-2 .btn {
  background-color: #232E1B !important;
  color: #FFFFFF !important;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

#datepickerform .btn:hover,
#datepickerform-2 .btn:hover {
  background-color: #FFFFFF !important;
  color: #0A243F !important;
}

@media (max-width: 768px) {

  /* Oculta botões genéricos duplicados */
  .button-wrapper,
  .btn-search,
  .btn-search2 {
      display: none !important;
  }

  /* Padroniza ambos os botões dos formulários das duas faixas */
  #btn-reservar,
  #btn-reservar-2 {
      display: inline-block !important;
      background-color: #232E1B !important;   
      color: #fff !important;
      font-weight: bold;
      font-size: 1.3rem !important;           
      padding: 16px 40px !important;          
      border-radius: 30px !important;         
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      min-width: 200px;                        
      box-sizing: border-box;
  }

  /* Container do segundo botão: centraliza horizontal e vertical */
  #omnibees-orange-section-2 .container {
      display: flex;
      justify-content: center;   
      align-items: center;       
      flex-direction: column;    
      min-height: 120px;         
  }

  /* Ajuste de margin para o primeiro botão */
  #btn-reservar {
      margin: 12px auto 20px auto;  
  }

  /* Ajuste de margin para o segundo botão - descer um pouco */
  #btn-reservar-2 {
      margin: 30px auto 0 auto;   /* aumenta margin-top para descer */
  }

  /* Hover dos botões */
  #btn-reservar:hover,
  #btn-reservar-2:hover {
      background-color: #FFFFFF !important;
      color: #0A243F !important;
  }
}

/* =========================================================
   BLOCO INDICAÇÃO – sombra e borda sutil (mantém layout original)
========================================================= */

#latest article {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

#latest article:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

#latest article img {
  border-radius: 4px 4px 0 0;
}

/* 
---------------------------------
PROGRESS BAR
---------------------------------
*/
    .progress-container {
      display: flex;
      flex-direction: column;
      align-items: last baseline;
      margin-bottom: 5px; /* Espaço entre barras */
    }

    .progress-label {
      margin-bottom: 5px; /* Espaço entre a legenda e a barra */
      font-size: small;
      text-align: center;
      font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      color: gray;
    }

    .progress-labelNumber {
      margin-bottom: 5px; /* Espaço entre a legenda e a barra */
      font-size: large;
      text-align: center;
      font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      color: #4caf50;
      margin: 10px;
    }

    .progress-bar {
      width: 320px;
      height: 10px;
      background-color: #e0e0e0;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    @keyframes loadProgress {
      from {
        width: 0;
      }
      to {
        width: 50%; /* Ajuste conforme necessário */
      }
    }

    .progress-fill {
      height: 100%;
      background-color: #4caf50;
      width: 50%; /* Esse valor pode ser sobrescrito pelo JavaScript */
      border-radius: 10px;
      animation: loadProgress 2s ease-out;
    }

    .number-box {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 56px;
      height: 55px;
      background-color: #258fce;
      color: #f4ed18;
      font-weight: bold;
      border-radius: 100%; /* Bordas arredondadas */
      font-size: 24px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .number-container {
      display: flex;
      justify-content: center; /* Centraliza horizontalmente */
      align-items: center; /* Centraliza verticalmente (se necessário) */
      padding-bottom: 10px;
      margin-top: 15px;
    }


/* =========================================================
   LAYOUT FLEX / CONTAINERS
   ========================================================= */
.one_quarter,
.one_quarter2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .one_quarter,
    .one_quarter2 {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   MAPA / CONTAINERS
   ========================================================= */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom:60%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================================================
    BLOCO BRANCO ABAIXO DA IMAGEM
   ========================================================= */

article figure {
    margin: 0;
    display: block;
}

/* Bloco branco abaixo da imagem */
.excerpt {
    background-color: #fff;      /* fundo branco */
    min-height: 30px;            /* altura mínima */
    display: flex;
    flex-direction: column;
    justify-content: center;     /* centraliza verticalmente */
    align-items: center;         /* centraliza horizontalmente */
    padding: 15px 8px;           /* espaçamento interno */
    box-sizing: border-box;
    text-align: center;          /* centraliza multiline */
}

/* Título dentro do bloco */
.excerpt h6 {
    margin: 0;                   /* remove margens padrão */
    line-height: 1.2em;
}

/* Remove qualquer gap entre a imagem e o bloco branco */
figure {
    margin-bottom: 0;
}


/* =========================================================
   GALERIA OCULTA
   ========================================================= */

/* Galeria Oculta */
#gallery-container {
  display: none;
  margin-top: 20px;
}

/* =========================================================
   ICONS
   ========================================================= */
.icon-hotel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 25px;
}
.icon-hotel img {
  width: 65px !important;
  height: 65px !important;
  display: block;
  object-fit: contain;
}
.social-item,
.social-item1 {
  text-align: center;
}
.social-item a,
.social-item1 a {
  display: inline-block;
  text-decoration: none;
  color: #36231B;
}
.social-item img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px auto;
}
.social-item1 img {
  width: 90px !important;
  height: 90px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px auto;
}
.social-item a:hover img,
.social-item1 a:hover img {
  transform: scale(1.08);
  transition: transform 0.3s ease;
}
.social-item:hover,
.social-item a:hover,
.social-item1:hover,
.social-item1 a:hover {
  background: none !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .social-item,
  .social-item1 {
    width: 50% !important;
    margin-bottom: 20px;
  }
}
/* Centralizar ícones sociais em telas pequenas - 1 por linha */
@media (max-width: 768px) {
  .group.btmspace-50.demo {
    display: flex !important;
    flex-direction: column; /* um abaixo do outro */
    align-items: center;    /* centraliza horizontalmente */
    gap: 15px;
  }

  .group.btmspace-50.demo .one_quarter {
    width: 100% !important; /* cada ícone ocupa toda largura */
    float: none !important;
    margin: 0 auto;
    text-align: center;
  }

  .social-item img {
    margin: 0 auto 8px auto; /* garante centralização da imagem */
  }

  .social-item span {
    display: block;
    text-align: center;
  }
}

/* =========================================================
   GRID DE EVENTOS - ESTÁTICO SEM ZOOM (APENAS SOMBRA SUAVE)
   ========================================================= */

/* LISTA / GRID */
ul.top3-fixo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 10px auto 0 auto;
  list-style: none;
}

/* BLOCOS */
ul.top3-fixo li {
  flex: 1 1 300px;
  max-width: 348px;
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 12px;
  transition: box-shadow 0.3s ease; /* Apenas sombra */
}

/* HOVER — SOMENTE AUMENTA A SOMBRA */
ul.top3-fixo li:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* FLIP-CARD INTERNAMENTE */
.top3-fixo .flip-card {
  border-radius: 4px;
  overflow: hidden;
}

/* IMAGENS */
ul.top3-fixo li img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  transition: none !important; /* para garantir que nada mexe */
}

/* TEXTO */
.top3-fixo .evento-texto {
  margin-top: 8px;
  color: #36231B;
  text-align: center;
}

.top3-fixo .evento-texto h3 {
  font-weight: bold;
  color: #0A243F;
  margin-bottom: 6px;
  font-size: 1em;
}

.top3-fixo .evento-texto p {
  font-size: 0.95em;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  ul.top3-fixo {
    margin: 10px auto 20px auto;
    gap: 15px;
  }

  ul.top3-fixo li {
    flex: 1 1 100%;
    max-width: 100%;
  }

  ul.top3-fixo li img {
    height: 240px;
  }
}


/* =========================================================
   GRID DE EVENTOS - ESTÁTICO SEM HOVER
   ========================================================= */

/* LISTA / GRID */
ul.top3-fixo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 10px auto 0 auto;
  list-style: none;
}

/* BLOCOS */
ul.top3-fixo li {
  flex: 1 1 300px;
  max-width: 348px;
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.02);
  border-radius: 1px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 12px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
  transform: none !important;
  transition: none !important;
}

/* Remove totalmente qualquer reação ao hover */
ul.top3-fixo li:hover {
  transform: none !important;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12) !important;
}

/* FLIP-CARD */
.top3-fixo .flip-card {
  border-radius: 4px;
  overflow: hidden;
}

/* IMAGENS */
ul.top3-fixo li img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  transition: none !important;
  transform: none !important;
}

/* E remove hover da imagem também */
ul.top3-fixo li img:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* TEXTO */
.top3-fixo .evento-texto {
  margin-top: 8px;
  color: #36231B;
  text-align: center;
}

.top3-fixo .evento-texto h3 {
  font-weight: bold;
  color: #0A243F;
  margin-bottom: 6px;
  font-size: 1em;
}

.top3-fixo .evento-texto p {
  font-size: 0.95em;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  ul.top3-fixo {
    margin: 10px auto 20px auto;
    gap: 15px;
  }

  ul.top3-fixo li {
    flex: 1 1 100%;
    max-width: 100%;
  }

  ul.top3-fixo li img {
    height: 240px;
  }
}

/* 5 colunas no desktop */
.one_fifth {
  width: 20%;
  float: left;
}

.one_fifth.first {
  clear: left;
}
/* ============================================
   LINKS / GROUP-LINK (mantido, sem zoom)
   ============================================ */
.group-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.25s ease;
}

/* Apenas sombra, sem scale */
.group-link .group.shadow:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
/* GROUP-LINK — também estático */
.group-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: none !important;
}

.group-link .group.shadow:hover {
  box-shadow: none !important;
  transform: none !important;
}

/* =========================================================
   FLIP CARDS
   ========================================================= */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 260px;          /* altura fixa */
  perspective: 1000px;
  margin-bottom: 16px;    /* espaço entre a imagem e o texto */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;   /* mantém o flip */
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-card-front img,
.flip-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* virar o verso */
.flip-card-back {
  transform: rotateY(180deg);
}

/* ==============================================
   CARROSSEL 3 IMAGENS RESPONSIVO
   ============================================== */
.carousel-container.three {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.carousel-track-wrapper {
  overflow: hidden;
}

.carousel-track.three {
  display: flex;
  transition: transform 0.5s ease;
  gap: 16px; /* espaço entre imagens */
}

.carousel-item.three {
  flex: 0 0 calc((100% - 32px) / 3); /* 3 imagens visíveis, compensando gap */
  max-width: calc((100% - 32px) / 3);
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  background-color: #fff;
}

.carousel-item.three img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 300px; /* ou a altura que desejar */
}

/* Botões laterais */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-btn:hover {
  background: rgba(0,0,0,0.7);
}

/* =========================
   RESPONSIVO
   ========================= */

/* 2 imagens por vez em telas médias */
@media (max-width: 1024px) {
  .carousel-item.three {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
}

/* 1 imagem por vez em telas pequenas */
@media (max-width: 768px) {
  .carousel-item.three {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.3rem 0.5rem;
  }
}
/* ===== Responsividade: aumenta height em telas menores ===== */
@media (max-width: 1024px) {
  .carousel-item.three img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .carousel-item.three img {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .carousel-item.three img {
    height: 450px;
  }
}
/* ===========================================
   CARROUSEL DE 1 IMAGEM POR VEZ
   =========================================== */
.carousel-container.single {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.carousel-track.single {
  display: flex;
  overflow-x: hidden;       /* esconde slides extras */
  scroll-behavior: smooth;
  gap: 0;                   /* remove espaço entre slides */
}

.carousel-track.single::-webkit-scrollbar {
  display: none;
}

.carousel-item.single {
  flex: 0 0 100%;           /* mostra 1 slide por vez */
  max-width: 100%;
  box-sizing: border-box;
  background-color: #FFF;
  padding: 4px;
  border-radius: 3px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item.single:hover {
  transform: none;          /* remove hover */
  box-shadow: none;
}

.carousel-item.single img {
  width: 100%;
  max-height: 550px;        /* altura máxima desejada */
  object-fit: cover;        /* mantém proporção e preenche espaço */
  display: block;           /* remove gaps abaixo da imagem */
}

/* =========================
   Dots do carrossel
   ========================= */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center; /* centraliza verticalmente */
  margin-top: 12px;
  gap: 8px;
  height: 20px; /* altura suficiente para o scale */
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #bbb;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dots button.active {
  background: #333;
  transform: scale(1.2);
  transform-origin: center center; /* garante crescimento centralizado */
}

/* ===========================================
   Formulário flex
   =========================================== */

.row-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;             /* AUMENTADO */
  align-items: center;    /* ✔ CENTRALIZADO VERTICALMENTE */
}

.col-custom {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  color: #fff;
  margin-bottom: 5px;
}

input,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* ===========================================
   Botões gerais
   =========================================== */

.btn {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Botão Buscar */
#datepickerform .btn {
  background-color: #348500;
  color: #fff;
  padding: 12px 20px;
}

#datepickerform .btn:hover {
  background-color: #2b6b00;
  color: #E9DF00;
}

#btn-reservar:hover,
.btn-reservas:hover {
  background-color: #2b6b00;
  color: #E9DF00;
}

/* ===========================================
   Desktop
   =========================================== */

@media (min-width: 769px) {

  .col-custom {
    flex: 0 0 calc(15% - 15px);
  }

  #btn-reservar {
    display: none;
  }

  #datepickerform {
    display: flex !important;
    flex-wrap: wrap;
  }
}

/* ===========================================
   Mobile
   =========================================== */

@media (max-width: 768px) {

  #omnibees-orange-section {
    padding: 30px 10px;
  }

  #datepickerform {
    display: none;
  }

  #datepickerform .col-custom,
  #omnibees-orange-section .col {
    margin-bottom: 8px;
  }

  #datepickerform input,
  #datepickerform select,
  #datepickerform .btn {
    padding: 6px 8px;
    font-size: 14px;
  }

  #omnibees-orange-section input,
  #omnibees-orange-section select,
  #omnibees-orange-section .btn {
    padding: 6px 8px;
    font-size: 13px;
  }

  #btn-reservar {
    background-color: #348500;
    color: #fff;
    border-radius: 6px;

    width: 100%;
    max-width: 200px;

    padding: 20px 30px;
    font-size: 20px;

    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;

    margin: 0 auto 15px auto;
  }
}

/* ===========================================
   Datepicker acima de tudo
   =========================================== */

.ui-datepicker {
  z-index: 9999 !important;
  position: absolute;
}

/* ===========================================
   GALERIA COLLAGE RESPONSIVA
   =========================================== */

.collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 30px;
}

.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #ccc;                 /* leve borda */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* sombra igual aos blocos */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Efeito leve no hover */
.collage img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Tamanhos diferentes para o layout tipo "colagem" */
.collage img.grande {
  grid-column: span 2;
  grid-row: span 2;
}

.collage img.media {
  grid-column: span 2;
  grid-row: span 1;
}

.collage img.pequena {
  grid-column: span 1;
  grid-row: span 1;
}

/* Responsivo */
@media (max-width: 992px) {
  .collage img.grande { grid-column: span 1; grid-row: span 1; }
  .collage img.media { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 600px) {
  .collage {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
    background-color: #7C4C00;
    color: #fff;
    padding: 5px;
    font-size: 15px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-column a:hover {
    text-decoration: none;
    color: yellow;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 0px solid #FFFFFF;
    padding-top: 10px;
}

footer, .footer-bottom {
  margin: 0;
  padding: 0;
}

.footer-bottom {
  background-color: #FFA500;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

/* Força cor dos links do footer */
footer, 
footer * {
    color: #232E1B !important;
}

footer a {
    color: #232E1B !important;  /* links normais */
    text-decoration: none;
}

footer a:hover {
    color: #FFFFFF !important;   /* links ao passar o mouse */
}
/* =========================================================
   BOTÃO VOLTAR AO TOPO (ajustado)
   ========================================================= */
#backtotop {
  position: fixed;
  bottom: 20px;
  left: 20px;        /* agora fica no lado esquerdo */
  right: auto;
  background-color: #232E1B !important;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#backtotop i {
  color: #FFFFFF !important;
  font-size: 18px;
  transition: color 0.3s ease;
}

#backtotop:hover {
  background-color: #F6E708 !important;
}

#backtotop:hover i {
  color: #232E1B !important;
}

/* =========================================================
   SCROLLBAR
   ========================================================= */
/* Para navegadores baseados em WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 0px;  /* largura da barra horizontal */
    height: 0px; /* altura da barra vertical */
}

/* Para Firefox */
html {
    scrollbar-width: none; /* esconde a barra */
    scrollbar-color: transparent transparent; /* opcional */
}

/* Para Internet Explorer / Edge Legacy */
body {
    -ms-overflow-style: none;
}

/* =========================================================
   CSS RECAPTCHA
   ========================================================= */
/* Centraliza o reCAPTCHA e reduz padding */
.recaptcha-wrapper {
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
    align-items: center;     /* centraliza verticalmente, se necessário */
    padding: 5px 0;          /* ajusta o espaçamento em cima e embaixo */
}

/* Se quiser controlar tamanho do reCAPTCHA (opcional) */
.g-recaptcha {
    transform: scale(0.9);   /* diminui o widget para 90% */
    transform-origin: 0 0;   /* mantém no canto superior esquerdo do container */
}

/* =========================================================
   WHATSAPP
   ========================================================= */
.whatsapp-fixo .whatsapp {
    width: 55px;
    height: 55px;
    display: block;
    object-fit: contain; /* mantém proporção */
}