@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --accent-1: #dc3545; /* Vermelho Principal */
    --accent-2: #e04e5d; /* Vermelho Suave */
    --bg-start: #ffffff; /* Gradiente de Fundo (Rosa/Vermelho Claro) */
    --bg-end: #ebf4fa; 
    --glass: rgba(255, 255, 255, 0.9); /* Fundo dos Cards (Quase Opaco) */
    --glass-nav: rgba(255, 255, 255, 0.1); /* Transparência da Navbar */
    --muted: #6b6b6b;
    --color-dark: #222;
    --font-primary: 'Poppins', sans-serif;
    --header-height: 70px;
    /* --color-6:#eb8829;
    --color-2:#cf4619;
    --color-5:#5a9e4b; */
    --color-4:#933d37;
    --color-5:#eb8829;
    --color-6:#b3661f;
    --color-7:#1c1c1c;
}

/* ========================================================================= */
/* 1. RESET / BASE                          */
/* ========================================================================= */
*{
    box-sizing:border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth; /* Animação nativa de scroll */
}

html,body{height:100%}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
    color: var(--color-dark);
    padding-top: var(--header-height); /* Espaço para o header fixo */
    overflow-x:hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Tipografia */
h1, h2, h3 {
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
}

p.lead, .nota-geral {
    color: var(--muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 15px;
}

/* Container para centralizar conteúdo */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding {
    padding: 40px 15px; /* Garante padding em mobile */
    text-align: center; /* Centraliza títulos e parágrafos */
    background: linear-gradient(135deg, var(--bg-end), var(--glass));
    & span{
        color: var(--color-5);
    }
}
.bg-light {
    background: var(--glass); 
}

/* ========================================================================= */
/* 2. NAVBAR (Header Fixo)                         */
/* ========================================================================= */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    backdrop-filter: blur(8px);
    /* background: var(--glass-nav); */
    background-color: var(--glass);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 20px;
    height: 100%;
}

.logo {
    display: flex;
    font-size: 1.5em;
    font-weight: 800;
    gap: 10px; /* Espaço entre imagem e texto */
    font-weight: 600;
    color: var(--color-5);
    text-transform: uppercase;
    z-index: 1001; 
}

.logo-img {
    border-radius: 5px;
    width: 40px; /* ajuste o tamanho conforme necessário */
    height: auto;
}

.main-nav ul {
    list-style: none;
    display: flex; 
    gap: 20px;
    margin: 0;
    color: var(--color-dark);
}

.main-nav a {
    /* color: var(--color-dark); */
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    /* border: 1px solid var(--color-5); */
}

.main-nav a:hover {
    background: var(--color-6);
    color: var(--glass);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
    color: var(--accent-1);
    z-index: 1001;
}

/* ========================================================================= */
/* 3. BOTÕES                                  */
/* ========================================================================= */
.btn-reserva{
    background-color: var(--color-5);
    width: 400px;
    height: 50px;
    border-radius: 20px;
    font-size: 18px;
    transition: 0.3s;
    text-transform: uppercase;
    padding: 12px 22px;
    display: inline-block;
    font-weight: bold;
}
.btn-reserva:hover{
    background-color: var(--color-6);
}
.btn-reserva-rota{
    background-color: var(--color-6);
    width: 300px;
    height: 50px;
    border-radius: 13px;
    font-size: 18px;
    transition: 0.3s;
    text-transform: uppercase;
    padding: 12px 22px;
    display: inline-block;
    color: var(--glass);
    font-family: var(--font-primary);
    font-weight: bold;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-2);
    transform: translateY(-3px);
    opacity: 0.95;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #20b555;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.6);
}

.btn-full-width {
    font-family: var(--font-primary);
    width: 100%;
    margin-top: 15px;
}


/* ========================================================================= */
/* 4. HERO SECTION                              */
/* ========================================================================= */
.hero-nova {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-nova .bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 1;
}

.hero-nova .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
  z-index: 2;
}

.hero-nova-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 700px;
  padding: 40px;
  animation: fadeIn 1s ease both;
}

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

.hero-nova-content h1 span {
  color: var(--color-5);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.mini-servicos {
  background: var(--glass);
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  text-align: center;
}

.mini-grid div i {
  font-size: 1.8em;
  color: var(--color-6);
  display: block;
  margin-bottom: 5px;
}

.experiencia {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-end), var(--glass));
}

.experiencia .texto {
  max-width: 500px;
}

.experiencia .texto h2 span {
  color: var(--color-5);
}

.experiencia .img-exp img {
  width: 450px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


/* ========= RESPONSIVIDADE ========= */

/* Telas grandes (monitores e notebooks grandes) */
@media (min-width: 1200px) {
    .hero-content {
        max-width: 700px;
        padding: 50px;
    }
    .hero h1 {
        font-size: 3.5em;
    }
    .hero p {
        font-size: 1.3em;
    }
}

/* Tablets (entre 768px e 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .hero {
        padding: 60px 30px;
    }
    .hero-content {
        max-width: 550px;
        padding: 35px;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .btn-reserva {
        width: 300px;
        height: 45px;
        font-size: 16px;
    }
}

/* Celulares (até 767px) */
@media (max-width: 767px) {
    .hero {
        min-height: 80vh;
        padding: 50px 15px;
    }
    .hero-content {
        padding: 25px 20px;
        max-width: 90%;
        border-radius: 14px;
    }
    .hero h1 {
        font-size: 1.9em;
    }
    .hero p {
        font-size: 1.em;
    }
      .btn-reserva {
        width: 90%;
        max-width: 260px;
        height: 45px;
        font-size: 15px;
        border-radius: 15px;
    }
}

/* Celulares muito pequenos (até 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 40px 10px;
    }
    .hero-content {
        padding: 20px;
    }
    .hero h1 {
        font-size: 1.6em;
    }
    .hero p {
        font-size: 0.95em;
    }
    .btn-reserva {
        width: 100%;
        height: 42px;
        font-size: 14px;
        border-radius: 12px;
    }
}

/* ====== Animação suave ====== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================== */
/*  RESPONSIVIDADE HOME FIX */
/* ======================== */

/* Hero Nova */
@media (max-width: 991px) {
  .hero-nova-content h1 {
    font-size: 2.2rem;
  }
  .hero-nova-content p {
    font-size: 1rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
}

/* Experiência */
@media (max-width: 991px) {
  .experiencia {
    flex-direction: column;
    gap: 30px;
    padding: 60px 20px;
    text-align: center;
  }
  .experiencia .texto {
    max-width: 90%;
  }
  .experiencia .img-exp img {
    width: 100%;
    max-width: 400px;
  }
}

/* Celulares médios */
@media (max-width: 767px) {
  .hero-nova {
    height: auto;
    min-height: 80vh;
    padding: 80px 20px;
  }

  .hero-nova-content {
    padding: 20px;
  }

  .hero-nova-content h1 {
    font-size: 1.8rem;
    line-height: 1.3em;
  }

  .experiencia {
    padding: 50px 15px;
  }

  .experiencia .texto h2 {
    font-size: 1.6em;
  }

  .experiencia .texto p {
    font-size: 1em;
  }

  .experiencia .img-exp img {
    width: 90%;
    max-width: 340px;
  }
}

/* Celulares pequenos */
@media (max-width: 480px) {
  .hero-nova-content h1 {
    font-size: 1.5rem;
  }
  .hero-nova-content p {
    font-size: 0.95rem;
  }
  .experiencia .texto h2 {
    font-size: 1.4em;
  }
  .experiencia .img-exp img {
    width: 100%;
    max-width: 300px;
  }
}




/* ========================================================================= */
/* 5. SOBRE NÓS                                 */
/* ========================================================================= */
#sobre {
    text-align: center;
}
.cont{
    width: 100%;
}
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
    padding-top: 20px;
}
.titulo{
    width: 900px;
    & h2{
        text-align: left;
    }
}
.about-content p {
    text-align: center;
}
.about-content img {
    /* width: 100%;
    max-width: 400px; */
    width: 260px;
    height: 260px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ========================================================================= */
/* 6. QUARTOS                                 */
/* ========================================================================= */

.carousel-wrapper {
  position: relative;
  /* AJUSTE: Limita a largura do wrapper ao tamanho de 3 cards */
  max-width: 810px; 
  margin: 0 auto;
}
.carousel-btn {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  background: var(--color-6);
  opacity: 80%;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 50;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
  background: var(--color-5);
}

/* AJUSTE: Posiciona os botões para fora da área dos cards */
.carousel-btn.prev {
  left: -20px;
}
.carousel-btn.next {
  right: -20px;
}

.quartos-carousel {
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    gap: 30px;
    overflow: hidden; 
    scroll-behavior: smooth;
    overflow-x: auto;
    width: 810px;
    margin: 0 auto; /* Centraliza o carrossel dentro do wrapper */
    /* A máscara só é útil se houver espaço extra, o que não é o caso aqui */
    -webkit-mask-image: none;
    mask-image: none;
}

.quartos-carousel::-webkit-scrollbar {
    height: 8px;
}
.quartos-carousel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
}

.quarto-card {
    min-width: 250px; 
    max-width: 250px;
    flex-shrink: 0; 
    background: var(--glass);
    padding-bottom: 20px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.quarto-slider-container {
    position: relative;
    width: 100%;
    height: 200px; 
    overflow: hidden; 
}

.quarto-images-wrapper {
    display: flex; 
    width: 100%; 
    height: 100%;
    transition: transform 0.3s ease-in-out; 
}

.quarto-images-wrapper img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    flex-shrink: 0; 
}

/* Estilo dos Botões do Slider de Imagens */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    font-size: 0.8em;
}

.slider-prev {
    left: 10px;
}
.slider-next {
    right: 10px;
}
.slider-prev:hover, .slider-next:hover {
    background: var(--color-5);
}

.quarto-card:hover {
    transform: translateY(-5px); 
}

.quarto-card h3 {
    text-align: left;
    padding: 15px 20px 0;
    color: var(--color-6);
    font-size: 1.4em;
}

.quarto-card p {
    text-align: left;
    padding: 15px 20px 0;
    color: var(--accent-1);
    font-size: 1.4em;
}

.quarto-card .preco {
    font-size: 1.5em;
    font-weight: 700;
    padding: 0 20px 10px;
    color: var(--color-dark);
}

.quarto-card .comodidades {
    list-style: none;
    padding: 0 20px 15px;
}
.quarto-card .comodidades li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.95em;
}

.quarto-card .comodidades i {
    color: var(--color-6);
    margin-right: 8px;
}

.quarto-card .tag-destaque {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--color-5), #ff6b35);
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8em;
    font-weight: 600;
    z-index: 15;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    animation: pulseTag 2s infinite; /* animação igual whatsapp */
}

@keyframes pulseTag {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.5);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    transform: scale(1);
  }
}

/* === Estilo dos preços e legenda === */
.preco {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 6px 0 2px 0;
  text-align: center;
}

.preco .semana {
  color: #2ecc71; /* verde leve */
}

.preco .fimsemana {
  color: #e74c3c; /* vermelho leve */
}

.preco .barra {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 4px;
}

.legenda-preco {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  text-align: center;
}

.legenda-preco .semana {
  color: #2ecc71;
}

.legenda-preco .fimsemana {
  color: #e74c3c;
}

/* Caso tenha fundo claro (ex: seções brancas) */
.bg-light .preco .barra,
.bg-light .legenda-preco {
  color: rgba(0, 0, 0, 0.6);
}

.dica-tarifa {
  font-size: 1rem;
  color: rgba(98, 98, 98, 0.8);
  margin-top: -10px;
  margin-bottom: 25px;
  text-align: center;
  font-style: italic;
}


/* ========================================================================= */
/* 7. SERVIÇOS                                */
/* ========================================================================= */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 25px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.servico-item {
    background: var(--glass);
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.servico-item:hover {
    transform: translateY(-3px);
}

.servico-item i {
    color: var(--color-6);
    margin-bottom: 15px;
    font-size: 2.5em;
}

.servico-item p {
    font-size: 0.9em;
    color: var(--color-dark);
}
.servico-item h4{
    color: var(--color-5);
}

/* ========================================================================= */
/* 8. AVALIAÇÕES                                */
/* ========================================================================= */
#avaliacoes .carousel-container {
    position: relative; /* Essencial para posicionar os botões */
    max-width: 700px; /* Limita a largura do card na tela */
    margin: 30px auto; /* Centraliza o container */
}

.nota-geral i {
    color: var(--color-6);
    font-size: 1.1em;
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
}

.depoimento-slide {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin: 0 50px;
    display: none;
}
.depoimento-slide.active {
    display: block;
}

.depoimento-slide blockquote {
    font-style: italic;
    margin: 10px 0;
    font-size: 1.1em;
    color: var(--color-dark);
}
.depoimento-slide cite {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--muted);
    font-style: normal;
    margin-top: 15px;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    font-size: 1.2em;
}
.carousel-prev {
    left: 0;
}
.carousel-next {
    right: 0;
}
.carousel-prev:hover, .carousel-next:hover {
    background: var(--color-6);
}

/* === LOGO GOOGLE NAS AVALIAÇÕES === */
.google-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  padding: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.google-btn-logo {
  width: 22px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
}


.avatar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.depo-top {
  flex-wrap: wrap; /* permite quebrar linha para as estrelas */
  justify-content: center; /* centraliza tudo */
  text-align: center;
}

.estrelas {
  width: 100%;
  text-align: center;
  color: var(--color-6);
  font-size: 1.3em;
  margin-top: 5px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .estrelas {
    font-size: 1.2em;
    margin-top: 8px;
    margin-bottom: 5px;
  }
}



/* ========================================================================= */
/* 9. GALERIA                                 */
/* ========================================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}
.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.gallery-item:hover img {
    transform: scale(1.03);
}


/* ========================================================================= */
/* 10. LOCALIZAÇÃO                               */
/* ========================================================================= */
.localizacao-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    min-height: 300px; /* Garante altura mínima para o mapa */
}

.map-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

.local-info p {
    text-align: center;
    color: var(--muted);
}

.local-info h3 {
    text-align: left;
}

.local-info i {
    color: var(--accent-1);
    margin-right: 5px;
}

.rota-botoes {
  display: flex;
  flex-direction: column; /* se quiser um embaixo do outro */
  gap: 12px; /* espaço entre os botões */
}


/* ========================================================================= */
/* 11. RESERVAS e 12. CONTATO - Formulários */
/* ========================================================================= */

/* === AJUSTE: Responsividade do bloco de quartos igual ao formulário === */
@media (max-width: 767px) {
  /* A seção geral de quartos */
  .reserva-quartos-left {
    background: var(--glass);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    overflow: visible;
    text-align: left;
  }

  /* Título e subtítulo */
  .reserva-quartos-left h3 {
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 10px;
  }

  .reserva-quartos-left .dica-tarifa {
    font-size: 0.95em;
    text-align: center;
    margin-bottom: 25px;
  }

  /* O wrapper e carrossel agora se comportam como o formulário */
  .carousel-wrapper {
    max-width: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
  }

  .quartos-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: visible;
    gap: 25px; /* espaçamento entre os cards */
  }

  /* Cada card ocupa 100% e fica empilhado (um embaixo do outro, igual aos inputs do form) */
  .quarto-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .btn-secondary {
    display: flex;
    justify-content: center; /* Centraliza o texto horizontalmente */
    align-items: center;     /* Centraliza verticalmente */
    width: 80%;              /* Ocupa 80% da largura do card */
    max-width: 300px;        /* Limite visual */
    height: 50px;
    margin: 20px auto 0 auto; /* Centraliza e cria espaçamento acima */
    border: 1.5px solid var(--color-dark);
    border-radius: 10px;
    background: white;
    color: var(--color-dark);
    font-weight: 600;
    transition: all 0.2s ease;
  }

  /* Remove os botões do carrossel (igual no form) */
  .carousel-btn {
    display: none;
  }
}


.form-section h2 {
    margin-bottom: 30px;
}

.form-section form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
}

/* Estilo para inputs (comum a reservas e contato) */
.form-group input,
.form-group select,
.form-group textarea,
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15); /* Borda um pouco mais visível */
    width: 100%;
    font-family: var(--font-primary);
    background-color: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

/* Aplica o estilo de card principal ao formulário de reservas */
#reserva-form {
    background: var(--glass);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 650px;
    margin: 0 auto 30px;
}


/* NOVO: Estilos para a seção de Contato */
.contact-grid-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.contact-card {
    background: var(--glass);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.contact-card h3 {
    text-align: left;
    color: var(--accent-1);
    margin-bottom: 20px;
}

.contact-info {
    text-align: left;
    margin-bottom: 20px;
}
.contact-info p {
    text-align: left;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--color-dark);
}
.contact-info p i {
    color: var(--accent-1);
    margin-right: 8px;
    font-size: 1.1em;
}

/* Ajuste para o formulário de contato */
#contact-form {
    padding: 0; /* O padding já está no .contact-card */
    margin: 0;
}

.social-links {
    text-align: center;
    margin-top: 25px;
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-links a {
    color: var(--color-6);
    font-size: 1.8em;
    transition: color 0.2s;
}
.social-links a:hover {
    color: var(--color-5);
}

/* Campos de metade da largura */
.half-width {
    width: calc(50% - 10px);
}
.full-width {
    width: 100%;
}
.total-container {
    margin-top: 20px;
}
.valor-display {
    padding: 12px;
    background-color: #f1f1f1;
    border-radius: 10px;
    font-weight: 600;
    color: var(--accent-1);
    text-align: center;
}

/* Estilos da nova estrutura de Reserva em grid (index.html) */
.reserva-grid {
    display: grid;
    grid-template-columns: 1fr; /* Padrão mobile: uma coluna */
    gap: 30px;
    
    /* === CORREÇÃO: Aumenta a largura máxima para comportar 3 cards + form (850 + 30 + 450) === */
    max-width: 1330px; 
    
    margin: 0 auto;
    text-align: left;
}
.reserva-quartos-left {
    padding: 20px;
    background: var(--glass);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    
    /* AJUSTE: Garante que o contêiner possa rolar horizontalmente em telas menores que o carrossel */
    overflow-x: auto; 
}
.reserva-quartos-left h3 {
    text-align: left;
    margin-bottom: 10px;
    color: var(--color-7);
}
.reserva-quartos-left .dica-tarifa {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}
.reserva-form-right {
    padding: 0; /* Remove padding extra, o form já tem */
}
.reserva-form-right h3 {
    text-align: left;
    margin-bottom: 20px;
    color: var(--color-6);
    font-size: 1.6em;
}

#reserva-form {
    max-width: none; /* Permite que o formulário ocupe o espaço do grid */
    margin: 0;
    
    /* === CORREÇÃO 1: FAZ O FORMULÁRIO ESTICAR === */
    height: 100%; 
    
    /* Re-aplica os estilos do card que foram sobrescritos */
    background: var(--glass);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* ========================================================================= */
/* 13. RESPONSIVIDADE GERAL                       */
/* ========================================================================= */

/* ===== Fixar a dica-tarifa no mobile ===== */
@media (max-width: 767px) {
  .reserva-quartos-left {
    position: relative;
  }

  .reserva-quartos-left h3 {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 5;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.95em;
    line-height: 1.4em;
  }

  .dica-tarifa {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 5;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.95em;
    line-height: 1.4em;
  }

  /* Garante espaçamento entre a dica fixa e o carrossel */
  .carousel-wrapper {
    margin-top: 60px;
  }
}



/* Tablets e Desktops Menores (768px a 1024px) */
@media (min-width: 768px) {
    /* Navbar */
    .nav-inner {
        padding: 0 30px;
    }
    
    /* Formulários */
    /* #reserva-form { (A regra agora está na linha 539) } */

    .contact-card {
        padding: 25px;
    }
    .form-group input, .form-group select, .form-group textarea {
        padding: 10px;
    }

    /* Localização */
    .localizacao-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .map-container {
        width: 55%;
        min-height: 400px;
    }
    .local-info {
        width: 40%;
    }
    .local-info p {
        text-align: left;
    }

    /* Contato Grid */
    .contact-grid-container {
        grid-template-columns: 1fr 1fr;
    }

    /* AJUSTE: Em tablets, o layout de reserva AINDA é de 1 coluna */
    .reserva-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
        align-items: start; /* Em tablets, alinhar ao topo está OK */
        text-align: left;
        max-width: 850px; /* Limita a largura em tablets (810px cards + 40px padding) */
    }
    /* Centraliza o carrossel em tablets */
    .reserva-quartos-left {
        overflow-x: hidden; /* Esconde a barra de rolagem */
    }
}

/* === CORREÇÃO: Nova Media Query para Desktops BEM Grandes (onde 2 colunas cabem) === */
@media (min-width: 1340px) { /* <-- MUDAMOS O BREAKPOINT DE 1250 PARA 1340 */
    .reserva-grid {
        /* Define a coluna da esquerda (810px cards + 40px padding) 
           e a da direita (1fr) para ocupar o resto (aprox. 450px) */
        grid-template-columns: 850px 1fr; /* <-- DEFINIÇÃO EXPLÍCITA */
        max-width: 1330px; /* Garante o max-width correto */
        
        /* Faz as colunas esticarem para ter a mesma altura */
        align-items: stretch; 
    }
    .reserva-quartos-left {
        overflow-x: hidden; /* Não precisa rolar a coluna inteira */
    }
    .carousel-wrapper {
        /* Os botões ficam visíveis */
        overflow: visible;
    }
}


/* Dispositivos Móveis (max-width: 767px) */
@media (max-width: 767px) {
    /* 1. Navbar */
    .nav-inner {
        padding: 0 15px;
    }
    .main-nav {
        display: none; 
        position: absolute;
        top: var(--header-height); 
        left: 0;
        width: 100%;
        background-color: var(--glass);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transition: transform 0.3s ease-in-out;
        padding: 10px 0;
    }
    .main-nav.active {
        display: block; 
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 10px 0;
    }
    .main-nav li {
        width: 100%;
        text-align: center;
    }
    .main-nav a {
        display: block;
        padding: 10px 20px;
        width: 90%;
        margin: 5px auto;
        color: var(--color-dark);
    }
    .menu-toggle {
        display: block;
    }

    /* 2. Conteúdo */
    h2 {
        font-size: 1.8em;
    }
    .section-padding {
        padding: 30px 10px;
    }

    /* 3. Formulários */
    .half-width {
        width: 100%;
    }
    #reserva-form, .contact-card {
        padding: 20px;
        max-width: 100%;
    }
    .reserva-grid {
        grid-template-columns: 1fr; /* Coluna única */
    }
    /* Garante que a altura 100% não se aplique em mobile */
    #reserva-form {
        height: auto;
    }


    /* 4. Localização */
    .localizacao-content {
        flex-direction: column;
    }
    .map-container, .local-info {
        width: 100%;
    }
    .local-info p {
        text-align: center;
    }
    .local-info a {
        display: inline-block;  
        width: 100%;            
        text-align: center;     
        font-size: 16px;        
        padding: 10px;          
        box-sizing: border-box; 
        margin-top: 10px;       
    }

    /* AJUSTE: Carrossel de quartos em mobile */
    .reserva-quartos-left {
        /* Em mobile, a coluna inteira rola */
        overflow-x: auto; 
    }
    .carousel-wrapper {
        /* Wrapper não precisa de largura máxima */
        max-width: none;
        overflow: visible;
    }
    .quartos-carousel {
        /* O carrossel tem a largura de 3 cards, mas vai rolar dentro do .reserva-quartos-left */
        width: 810px;
    }
    .carousel-btn {
        /* Esconde botões de setas em mobile (usa o swipe) */
        display: none;
    }
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}
#lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.lightbox-nav-btn:hover {
    opacity: 1;
}

#prev-btn {
    left: 20px;
}
#next-btn {
    right: 20px;
}

/* BOTÃO FLUTUANTE - WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  cursor: pointer;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Tooltip */
.whatsapp-tooltip {
  background: #1ebe5d;
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 8px;
  position: absolute;
  bottom: 75px;
  right: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Animação de pulsação */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ========================================================================= */
/* 13. RODAPÉ                                 */
/* ========================================================================= */
footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-info h3 {
    color: var(--color-5);
    text-align: left;
    margin-bottom: 15px;
}

.footer-info p {
    text-align: left;
    font-size: 0.9em;
    color: #ccc;
}
.footer-info p i {
    color: var(--color-6);
    margin-right: 5px;
}

.footer-links h4, .footer-legal h4 {
    color: var(--color-5);
    text-align: left;
    margin-bottom: 10px;
}
.footer-links ul, .footer-legal ul {
    list-style: none;
    padding: 0;
}
.footer-links a, .footer-legal a {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.2s;
}
.footer-links a:hover, .footer-legal a:hover {
    color: var(--color-6);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom small {
    font-size: 0.8em;
    color: #999;
}

.footer-credit {
    text-align: center;
    margin-top: 25px;
    font-size: 0.85em;
    color: #aaa;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer-credit span {
    color: #ccc;
}

.a2l-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-6);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.a2l-link:hover {
    color: var(--color-5);
}

.a2l-logo {
    height: 38px;
    width: auto;
    vertical-align: middle;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.a2l-link:hover .a2l-logo {
    opacity: 1;
}

.social-links-footer a {
    color: #ccc;
    font-size: 1.2em;
    margin-left: 15px;
    transition: color 0.2s;
}
.social-links-footer a:hover {
    color: var(--color-6);
}
.faleconosco {
  width: 100%;
  min-height: 600px;
  padding: 40px 0;
}

.faleconosco-container {
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
    #lightbox-close {
        font-size: 30px;
        top: 10px;
        right: 15px;
    }
    .lightbox-nav-btn {
        padding: 10px;
        font-size: 20px;
    }
    #prev-btn {
        left: 10px;
    }
    #next-btn {
        right: 10px;
    }
}