/* ============================================================
   VARIÁVEIS DE COR — edite aqui para mudar o tema
   ============================================================ */
:root {
  --red: #C8102E;
  --red-dark: #9B0D24;
  --gold: #F5B800;
  --gold-lt: #FFD740;
  --white: #FFFFFF;
  --cream: #FFF9F0;
  --dark: #1A1A1A;
  --gray: #6B6B6B;
  --light: #F5F5F0;
  --whatsapp: #25D366;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== TOP BAR ===== */
#topbar {
  background: var(--red);
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .04em;
  padding: 0 2rem;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topbar-left a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: opacity .2s;
  font-size: 1rem;
}

.topbar-left a:hover {
  opacity: .75;
}

.topbar-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.topbar-right a {
  color: var(--white);
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background .2s, border-color .2s;
}

.topbar-right a:hover {
  background: rgba(255, 255, 255, .2);
  border-color: var(--white);
}

.topbar-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .3);
}

/* ===== NAVBAR ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* LOGO — substitua por <img src="logo.png"> se tiver arquivo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1.1;
  min-width: 160px;
}
.nav-logo img{
  width: 150px;
  height: 60px;
  border-radius: 5px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  gap: .2rem;
  align-items: center;
}

.nav-menu a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  padding: .5rem .75rem;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.nav-menu a:hover {
  color: var(--red);
  background: rgba(200, 16, 46, .06);
}

.btn-reservar {
  background: var(--red);
  color: var(--white) !important;
  padding: .6rem 1.3rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  letter-spacing: .05em;
  transition: background .2s, transform .2s !important;
  box-shadow: 0 4px 16px rgba(200, 16, 46, .3);
}

.btn-reservar:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid #eee;
}

.nav-mobile a {
  padding: .75rem 0;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid #f0f0f0;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-mobile .btn-reservar-mob {
  margin-top: 1rem;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: .85rem;
  border-radius: 50px;
  font-weight: 600;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;

}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;

}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;

}

.hero-slide.active {
  opacity: 1;
}

.slide1-inner {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

/* .slide1-left,
.slide1-right {
  flex: 1;
  background-size: cover;
  background-position: center;
} */

.slide1-full {
  width: 100%;
  height: 100%;
  background-image: url('img/sobre2.jpeg');
  /* escolha a imagem */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

/* IMAGEM ESQUERDA banner 1 — substitua a URL */
/* .slide1-left {
  background-image: url('img/Quarto\ Conforto\ \(1\).jpeg');
  border-radius: 10px;

} */

/* IMAGEM DIREITA banner 1 — substitua a URL */
/* .slide1-right {
  background-image: url('img/Quarto\ Premium\ \(5\).jpeg');
  border-radius: 10px;

} */

.slide1-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 26, .55) 0%, rgba(26, 26, 26, 0.5) 38%, rgba(26, 26, 26, .0) 62%, rgba(26, 26, 26, .55) 100%);
  border-radius: 10px;

}

.slide1-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, .3) 0%, transparent 30%, transparent 60%, rgba(26, 26, 26, .75) 100%);
  border-radius: 10px;

}

/* IMAGEM banner 2 — substitua a URL */
.slide2-bg {
  background: url('img/Quarto\ Premium\ \(5\).jpeg') no-repeat;
  background-size: cover;
  background-position: center 70%;
  width: 100%;
  height: 100%;
  border-radius: 10px;

}

/* IMAGEM banner 3 — substitua a URL */
.slide3-bg {
  background: url('img/Restaurante\ \(42\).jpeg') center/cover no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 10px;

}

.slide-overlay-simple {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .65) 100%);
  border-radius: 10px;

}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245, 184, 0, .2);
  border: 1px solid var(--gold);
  color: var(--gold-lt);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  animation: fadeDown .8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
  animation: fadeDown .8s .15s ease both;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  font-weight: 300;
  letter-spacing: .06em;
  margin-top: .75rem;
  max-width: 560px;
  opacity: .92;
  animation: fadeDown .8s .3s ease both;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  padding: 20px;
  border-radius: 10px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeDown .8s .45s ease both;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  box-shadow: 0 6px 24px rgba(200, 16, 46, .45);
  transition: background .2s, transform .2s;
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  border: 2px solid rgba(255, 255, 255, .7);
  transition: background .2s, transform .2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 11;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background .2s;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, .32);
}

.hero-arrow.prev {
  left: 1.5rem;
}

.hero-arrow.next {
  right: 1.5rem;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*===BANNERS INICIAL NO MOBILE===*/
/* ===============================================
   HERO — IMAGENS MOBILE
   Adicione este bloco no final do seu CSS,
   após todos os outros estilos do hero
   =============================================== */
@media (max-width: 768px) {

  /* -----------------------------------------------
     HERO — altura no mobile
     Ajuste os valores conforme necessário
     ----------------------------------------------- */
  #hero {
    height: 75vh;
    /* ← ajuste fino: altura no mobile */
    min-height: 480px;
    /* ← ajuste fino: altura mínima no mobile */
  }

  /* -----------------------------------------------
     SLIDE 1 — no mobile as duas imagens viram uma só
     O .slide1-left é ocultado e o .slide1-right
     ocupa 100% da largura com a foto mobile
     ----------------------------------------------- */
  .slide1-inner {
    flex-direction: column;
  }

  /* Oculta a imagem da ESQUERDA no mobile */
  .slide1-left {
    display: none;
  }

  /* Imagem da DIREITA ocupa tudo e troca para foto mobile */
  .slide1-right {
    flex: 1;
    background-image: url('img/sobre2.jpeg');
    /* ← TROQUE: imagem mobile slide 1 */
    background-position: center center;
    /* ← ajuste fino: posição da imagem */
    background-size: cover;
    border-radius: 0;
  }

  /* Remove arredondamentos dos overlays no mobile */
  .slide1-mask,
  .slide1-overlay {
    border-radius: 0;
  }

  /* -----------------------------------------------
     SLIDE 2 — imagem diferente no mobile
     ----------------------------------------------- */
  .slide2-bg {
    background-image: url('img/Quarto\ Premium\ \(5\).jpeg');
    /* ← TROQUE: imagem mobile slide 2 */
    background-position: center center;
    /* ← ajuste fino: posição da imagem */
    border-radius: 0;
  }

  /* -----------------------------------------------
     SLIDE 3 — imagem diferente no mobile
     ----------------------------------------------- */
  .slide3-bg {
    background-image: url('img/Restaurante\ \(42\).jpeg');
    /* ← TROQUE: imagem mobile slide 3 */
    background-position: center center;
    /* ← ajuste fino: posição da imagem */
    border-radius: 0;
  }

  .slide-overlay-simple {
    border-radius: 0;
  }

  /* -----------------------------------------------
     DOTS — reposiciona no mobile
     Aumente o valor se sobrepor ao texto
     ----------------------------------------------- */
  .hero-dots {
    bottom: 90px;
    /* ← ajuste fino: posição vertical dos dots */
  }

  /* -----------------------------------------------
     SETAS — menores no mobile
     ----------------------------------------------- */
  .hero-arrow {
    width: 38px;
    /* ← ajuste fino */
    height: 38px;
    /* ← ajuste fino */
    font-size: .9rem;
  }

  .hero-arrow.prev {
    left: .75rem;
  }

  /* ← ajuste fino */
  .hero-arrow.next {
    right: .75rem;
  }

  .hero-arrow.prev {
  left: 2.5rem;
}

.hero-arrow.next {
  right: 2.5rem;
}

  /* ← ajuste fino */

  /* -----------------------------------------------
     TÍTULO — reduz tamanho no mobile
     ----------------------------------------------- */
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    /* ← ajuste fino */
    margin-bottom: 90px;
   
  }

  /* -----------------------------------------------
     SUBTÍTULO — remove quebra de linha manual
     ----------------------------------------------- */
  .hero-sub {
    display: none;
  }

  /* -----------------------------------------------
     BOTÕES — empilham em coluna no mobile
     ----------------------------------------------- */
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: .75rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 300px;
    /* ← ajuste fino: largura máxima dos botões */
    text-align: center;
    justify-content: center;
  }
}

/*===BANNERS INICIAL NO MOBILE FIM===*/

/* ===== BOOKING FORM ===== */
#booking {
  background: var(--white);
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
  margin-top: -54px;
  position: relative;
  z-index: 20;
}

.booking-card {
  margin: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 60px rgba(0, 0, 0, .16);
  padding: 1.2rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}

.booking-field {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.booking-field label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
}

.booking-field input,
.booking-field select {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: .65rem .9rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
  cursor: pointer;
  width: 100%;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--red);
}

.booking-divider {
  width: 1px;
  height: 50px;
  background: #e8e8e8;
  align-self: center;
  flex-shrink: 0;
}

.btn-buscar {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: .75rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(200, 16, 46, .3);
  transition: background .2s, transform .2s;
}

.btn-buscar:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* ===== SECTIONS ===== */
section {
  padding: 2rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

.section-title em {
  color: var(--red);
  font-style: normal;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 560px;
  margin-top: .75rem;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white);
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(200, 16, 46, .25);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--dark);
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  border: 2px solid #ddd;
  transition: border-color .2s, color .2s, transform .2s;
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ===== SOBRE ===== */
#sobre {
  background: var(--light);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.sobre-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.sobre-img-wrap:hover img {
  transform: scale(1.04);
}

.sobre-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--dark);
  padding: .9rem 1.2rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
}

.sobre-badge small {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
}

.sobre-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sobre-text p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.85;
}

.sobre-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

/* ===== ACOMODAÇÕES ===== */
#acomodacoes {
  background: var(--white);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.room-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid #f0f0f0;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .14);
}

.room-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.room-card:hover .room-img img {
  transform: scale(1.06);
}

.room-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
}

.room-body {
  padding: 1.4rem;
}

.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
}

.room-body p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.2rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--gray);
  background: var(--light);
  padding: .25rem .65rem;
  border-radius: 50px;
}

.amenity i {
  color: var(--red);
  font-size: .7rem;
}

.room-footer {
  display: flex;
  gap: .75rem;
}

.room-footer a {
  flex: 1;
  text-align: center;
  padding: .6rem;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  transition: background .2s, color .2s;
  cursor: pointer;
  display: block;
}

.room-footer .btn-view {
  background: var(--light);
  color: var(--dark);
  border: 1.5px solid #e0e0e0;
}

.room-footer .btn-view:hover {
  border-color: var(--red);
  color: var(--red);
}

.room-footer .btn-book {
  background: var(--red);
  color: var(--white);
}

.room-footer .btn-book:hover {
  background: var(--red-dark);
}

/* ===== FEEDBACK ===== */
#feedback {
  background: var(--light);
  padding: 5rem 2rem;
}

.feedback-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.feedback-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  padding: .85rem 1.1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
  resize: none;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: var(--red);
}

.feedback-form textarea {
  min-height: 130px;
}

.feedback-stars {
  display: flex;
  gap: .4rem;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
}

.feedback-stars i {
  color: #ddd;
  transition: color .15s;
}

.feedback-stars i.active {
  color: var(--gold);
}

.btn-feedback {
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
  transition: background .2s, transform .2s;
}

.btn-feedback:hover {
  background: #1db954;
  transform: translateY(-2px);
}

/* ===== PARCEIROS ===== */
#parceiros {
  background: var(--white);
  padding: 4rem 2rem;
}

.parceiros-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.parceiros-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

/* CARD PARCEIRO — adicione ou remova conforme necessário */
.parceiro-card {
  background: var(--light);
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  padding: 1.2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  min-width: 150px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.parceiro-card:hover {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(200, 16, 46, .1);
  transform: translateY(-3px);
}

.parceiro-card img {
  width: 70px;
  height: 50px;
  object-fit: contain;
  filter: grayscale(60%);
  transition: filter .2s;
}

.parceiro-card:hover img {
  filter: grayscale(0%);
}

.parceiro-card span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .04em;
  text-align: center;
}

/* ===== RESTAURANTE ===== */
#restaurante {
  background: var(--dark);
  color: var(--white);
}

.rest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rest-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rest-images .ri-main {
  grid-column: 1 / -1;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.rest-images .ri-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rest-images .ri-small {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.rest-images .ri-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rest-text .section-title {
  color: var(--white);
}

.rest-text .section-desc {
  color: rgba(255, 255, 255, .65);
  max-width: 100%;
}

.rest-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.rest-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.rest-feature-icon {
  background: rgba(245, 184, 0, .15);
  border: 1px solid rgba(245, 184, 0, .3);
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.rest-feature h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .2rem;
}

.rest-feature p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

/* ===== GALERIA ===== */
#galeria {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform .5s ease;
}

.gallery-item:nth-child(1) img {
  aspect-ratio: auto;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200, 16, 46, .0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity .3s, background .3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(200, 16, 46, .35);
}

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#lightbox.open {
  display: flex;
}

#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}

#lightbox .lb-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}

#lightbox .lb-close:hover {
  color: var(--gold);
}
@media(max-width: 768px){
  .fotomobile{
    display: none;
  }
}

/* ===== PORTAL DA BAHIA ===== */
#portal {
  background: var(--white);
}

.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.portal-attractions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.attraction-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.attraction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.attraction-card:hover img {
  transform: scale(1.08);
}

.attraction-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
  color: var(--white);
  padding: 1.5rem .9rem .7rem;
  font-size: .82rem;
  font-weight: 600;
}

.portal-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.portal-text p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.85;
}

/* ===== STATS ===== */
#stats {
  background: var(--red);
  padding: 5rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
}

.stat-label {
  font-size: .85rem;
  letter-spacing: .06em;
  margin-top: .4rem;
  opacity: .85;
}

/* ===== VÍDEO ===== */
#video-section {
  background: var(--dark);
  padding: 6rem 2rem;
  text-align: center;
}

#video-section .section-title {
  color: var(--white);
}

#video-section .section-desc {
  color: rgba(255, 255, 255, .6);
  margin: 0 auto;
}

.video-wrap {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .5);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== CONTATOS ===== */
#contatos {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background: var(--red);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-weight: 600;
  margin-bottom: .25rem;
  font-size: .9rem;
}

.contact-item p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.6;
}

.contact-item a {
  color: var(--red);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--whatsapp);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
}

.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: #0D0D0D;
  color: rgba(255, 255, 255, .7);
  padding: 5rem 2rem 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand .nav-logo {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  transition: background .2s, color .2s;
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .6rem;
  transition: color .2s;
  cursor: pointer;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, .35);
}

/* DESENVOLVEDOR — edite o link */
.footer-bottom a {
  color: var(--gold);
  transition: opacity .2s;
}

.footer-bottom a:hover {
  opacity: .7;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--whatsapp);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  z-index: 999;
  animation: pulse 2.5s infinite;
  transition: transform .2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, .75);
  }
}

/* ============================================================
   MODAL — PÁGINA DE DETALHES DO QUARTO
   ============================================================ */
#room-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  overflow-y: auto;
}

#room-modal.open {
  display: block;
}

.modal-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.room-detail-grid {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.room-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eee;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .14);
}

.room-carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.room-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.room-carousel-slide.active {
  opacity: 1;
}

.room-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, .85);
  border: none;
  color: var(--dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .95rem;
  transition: background .2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
}

.room-carousel-arrow:hover {
  background: var(--white);
}

.room-carousel-arrow.prev {
  left: 1rem;
}

.room-carousel-arrow.next {
  right: 1rem;
}

.room-carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
}

.room-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: background .2s;
}

.room-carousel-dot.active {
  background: var(--white);
}

.room-thumbs {
  display: flex;
  gap: .6rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}

.room-thumb {
  width: 70px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
  flex-shrink: 0;
}

.room-thumb.active {
  border-color: var(--red);
}

.room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.room-detail-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  width: fit-content;
}

.room-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
}

.room-detail-desc {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.85;
}

.room-detail-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.room-detail-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.room-detail-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: var(--dark);
}

.room-detail-feature i {
  color: var(--red);
  width: 18px;
  text-align: center;
}

.room-detail-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.room-detail-ctas .btn-red,
.room-detail-ctas .btn-ghost {
  flex: 1;
  justify-content: center;
}

.room-detail-divider {
  border: none;
  border-top: 1px solid #eee;
}

.more-rooms {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.more-rooms h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.breadcrumb-back {
  max-width: 1200px;
  margin: 1.5rem auto .5rem;
  padding: 0 2rem;
}

.breadcrumb-back a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gray);
  font-size: .85rem;
  cursor: pointer;
  transition: color .2s;
}

.breadcrumb-back a:hover {
  color: var(--red);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 960px) {
  #topbar {
    font-size: .7rem;
    padding: 0 1rem;
  }

  .topbar-left span {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-mobile.open {
    display: flex;
  }

  .sobre-grid,
  .rest-grid,
  .portal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rest-images {
    grid-template-columns: 1fr;
  }

  .rest-images .ri-small {
    display: none;
  }

  .room-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MOBILE — Booking centralizado + botões Sobre centralizados
   ============================================================ */
@media (max-width: 680px) {

  /* Booking: empilha e centraliza */
  .booking-card {
    flex-direction: column;
    align-items: stretch;
    padding: 1.4rem 1.2rem;
  }

  .booking-divider {
    display: none;
  }

  .booking-field {
    width: 100%;
    min-width: unset;
    align-items: center;
    /* centraliza label e input */
  }

  .booking-field label {
    display: block;
    text-align: center;
    width: 100%;
  }

  .booking-field input,
  .booking-field select {
    text-align: center;
    -webkit-appearance: none;
  }

  .btn-buscar {
    width: 100%;
    justify-content: center;
    margin-top: .25rem;
  }

  /* Seção Sobre: centraliza botões e textos no mobile */
  .sobre-text {
    align-items: center;
    text-align: center;
  }

  .sobre-text .section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .sobre-ctas {
    justify-content: center;
    width: 100%;
  }

  /* Outros ajustes mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portal-attractions {
    grid-template-columns: 1fr 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .parceiros-grid {
    gap: 1rem;
  }

  .parceiro-card {
    min-width: 130px;
    padding: .9rem 1rem;
  }
}

@media (max-width: 400px) {
  .portal-attractions {
    grid-template-columns: 1fr;
  }
}