 @media (max-width: 767.98px) {

    /* Efeito ao tocar (active) nos links do footer */
    #section-contato a:active,
    #section-contato a:focus {
        color: #c9a646 !important;
        /* amarelo */
    }

    /* WhatsApp fica verde no active/focus */
    #section-contato a[href*="wa.me"]:active,
    #section-contato a[href*="wa.me"]:focus {
        color: #28a745 !important;
        /* verde success */
    }
}


@media (min-width: 768px) {

    /* Reset geral para links e ícones */
    #section-contato a,
    #section-contato a i {
        color: white;
        transition: color 0.3s ease;
    }

    /* Hover geral: dourado */
    #section-contato a:hover,
    #section-contato a:hover i {
        color: #c9a646 !important;
    }

    /* ÍCONE do WhatsApp SEMPRE verde */
    #section-contato a[href*="wa.me"] i {
        color: #28a745 !important;
    }

    /* TEXTO do WhatsApp branco normalmente */
    #section-contato a[href*="wa.me"] {
        color: white !important;
    }

    /* TEXTO do WhatsApp fica verde no hover */
    #section-contato a[href*="wa.me"]:hover {
        color: #28a745 !important;
    }

    /* Garante que o ícone do WhatsApp não mude no hover */
    #section-contato a[href*="wa.me"]:hover i {
        color: #28a745 !important;
    }
}




@media (max-width: 767.98px) {
    .img-selo {
        margin-top: -3vh;
        /* Ajuste esse valor para subir mais ou menos */
    }
}


@media (max-width: 767.98px) {
    .h2-acomodacao {
        margin-top: -2vh;
    }
}

@media (max-width: 767.98px) {
    #section-home .container {
        margin-top: -5vh;
        /* ou 1rem, ajuste como quiser */
    }
}

#section-home {
    position: relative;
    z-index: 1;
}

#section-acomodacao {
    background-color: #888888;
    /* cinza claro da paleta */
}


#section-area-interna {
    scroll-margin-top: 7vh;
}

#section-area-interna {
    background-color: #a8a6a6;
    /* cinza claro da paleta */
}


#section-gastronomia {
    scroll-margin-top: 7vh;
}

#section-gastronomia {
    background-color: #888888;
    /* cinza claro da paleta */
}

#section-depoimento {
    scroll-margin-top: 7vh;
    background-color:#999999 /* cinza claro da paleta */
}

@keyframes float-whatsapp {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: float-whatsapp 3s ease-in-out infinite;
    text-decoration: none;
}

@media (max-width: 767.98px) {
  .whatsapp-float {
    right: -2vh; /* ajuste aqui */
  }
}


.whatsapp-inner {
    display: flex;
    align-items: center;
    background-color: transparent;
    border-radius: 50px;
    padding: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.whatsapp-text {
    color: white;
    font-weight: 500;
    margin-left: 12px;
    font-size: 1rem;
    opacity: 0;
    max-width: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Hover effect */
.whatsapp-float:hover .whatsapp-inner {
    background-color: #25D366;
    padding-right: 20px;
    padding-left: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}



.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    max-width: 200px;
}



html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.navbar-custom {
  position: fixed;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right,
    #1A1A1A 100%      /* o restante da navbar é amarelo */
  );
}


/* Área da logo dentro da faixa escura */
.logo-area {
  width: 80px;
  height: 80px;
  background-color: transparent;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  z-index: 2;
}

/* Imagem da logo */
.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

/* Estilo dos links do menu */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover nos links */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #000;
  font-weight: bold;
}






.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.navbar-nav .nav-link {
    position: relative;
    color: 	#ffffff;
    font-weight: 500;
    margin: 0 0.75rem;
    padding: 0.5rem 0;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #c9a646;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:not(.active) {
    color: #c9a646;
}

.navbar-nav .nav-link:hover:not(.active)::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: #c9a646;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #1a1a1a;
        padding: 1rem;
        margin-top: 2vh;
        border-radius: 0 0 8px 8px;
    }

    .navbar-nav {
        margin-left: 0;
        margin-right: 0;
    }
}

#section-acomodacao {
    scroll-margin-top: 6vh;
}


/* Estilo do card */
.custom-card {
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
}

/* Hover do card */
.custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Cor padrão do texto e ícones */
.custom-icon,
.custom-list-item {
    color: 	#2C2C2C;
    transition: color 0.3s ease;
}

/* Quando o card está em hover, troca para dourado */
.custom-card:hover .custom-icon,
.custom-card:hover .custom-list-item {
    color: #f1c40f;
}

/* Garante que imagem ocupe toda a altura e fique recortada corretamente */
.object-fit-cover {
    object-fit: cover;
    height: 100%;
}

.btn-whatsapp-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    /* Verde WhatsApp */
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.btn-whatsapp-custom:hover {
    background-color: white;
    color: #25D366;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-whatsapp-custom:hover .icon-whatsapp {
    filter: brightness(0) saturate(100%) invert(55%) sepia(95%) saturate(403%) hue-rotate(88deg) brightness(92%) contrast(95%);
}

.icon-whatsapp {
    font-size: 1.5rem;
    transition: color 0.3s ease-in-out;
}

.card-custom {
    border: 1px solid #dce1e5;
    /* Borda sutil */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-radius: 10px;
}

.card-custom:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Botão estilo retroescavadeira */
.retro-toggler {
  width: 40px;
  height: 30px;
  position: relative;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  z-index: 999;
  transition: transform 0.2s ease-in-out;
}

.retro-bar {
  height: 4px;
  background-color: #ffffff; /* quase preto */
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s;
}

/* Posicionamento inicial das barras */
.top-bar, .middle-bar, .bottom-bar {
  width: 100%;
  transform-origin: left center; /* para dar o efeito de dobradiça */
}

/* ANIMAÇÃO tipo "braço de retro" quando menu está ABERTO */
.retro-toggler:not(.collapsed) .top-bar {
  transform: rotate(45deg) translateY(10px);
  width: 80%;
}

.retro-toggler:not(.collapsed) .middle-bar {
  opacity: 0;
}

.retro-toggler:not(.collapsed) .bottom-bar {
  transform: rotate(-45deg) translateY(-10px);
  width: 80%;
}

.cep-link {
  text-decoration: none;
  color: inherit; /* cor normal */
  transition: color 0.3s ease;
}

.cep-link:active {
  color: white;
}

/* Botões do carrossel pretos */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: black;   /* fundo preto */
  border-radius: 50%;        /* opcional: deixa redondo */
  width: 40px;               /* aumenta o tamanho */
  height: 40px;
  background-size: 60% 60%;  /* ajusta o ícone dentro */
}


/* Faz os slides desaparecerem e aparecerem suavemente */
#comentariosCarousel .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#comentariosCarousel .carousel-item.active {
  opacity: 1;
  position: relative;
}

/* Centraliza e limita a largura do conteúdo */
#comentariosCarousel .carousel-item .bg-light {
  margin: 0 auto;
}


.carousel-item p {
  font-size: 1.25rem; /* ~20px */
  line-height: 1.6;   /* melhora a leitura */
}

.carousel-item h6 {
  font-size: 1.1rem; /* ~17px */
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
}

.carousel-item > div {
  pointer-events: none;
}

.btn-whatsapp-custom {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}


@media (max-width: 767px) {
  #h2-mobile-margin {
    margin-top: 20px !important; /* ainda serve caso queira margem */
    align-self: flex-start;      /* move o h2 para o topo do container flex */
  }

  /* opcional: se o container estiver centralizando tudo */
  .carousel-item .container {
    display: flex;
    flex-direction: column;
    align-items: center;   /* horizontal */
    justify-content: flex-start !important; /* vertical apenas em mobile */
    padding-top: 10vh;     /* espaço do topo */
  }
}

.h5-footer{
     color: #c9a646;
}










