:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --card:#ffffff;
  --line:#e5e7eb;
  --accent:#b90f1f;
  --shadow: 0 18px 45px rgba(0,0,0,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:var(--bg);
}

img{max-width:100%;height:auto;}


a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 16px}

/* HERO */
.hero{
  position:relative;
  min-height:70vh;
  max-height:860px;
  background-image: var(--hero);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #000;
  background-position:center;
  padding-bottom: 110px; /* espaço para os cards sobrepostos */
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.30) 40%, rgba(255,255,255,0) 100%);
}
.hero-top{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-top-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-weight:700;
  letter-spacing:.2px;
}

.brand-logo{
  width:56px;
  height:56px;
  display:block;
  object-fit:contain;
  border-radius: 10px;
  background: rgba(255,255,255,.10);
  padding:4px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  flex: 0 0 auto;
}

@media (max-width: 520px){
  .brand-logo{ width:48px; height:48px; }
}
.brand-badge{
  width:42px;height:42px;
  display:grid;place-items:center;
  background: rgba(185,15,31,.95);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  font-weight:800;
}
.brand-text{white-space:nowrap}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  color: rgba(255,255,255,.92);
  font-size:14px;
  padding: 8px 6px;
  border-radius: 10px;
}
.nav a:hover{background: rgba(255,255,255,.12)}
.nav a.active{color:#fff}

.hero-content{
  position:relative;
  z-index:2;
  padding: 90px 0 24px;
}
.hero h1{
  margin:0;
  font-size: clamp(34px, 4vw, 58px);
  color:#fff;
  font-weight:800;
}
.hero-sub{
  margin: 14px 0 0;
  color: rgba(255,255,255,.92);
  font-size: 18px;
  max-width: 760px;
}
.hero-actions{
  margin-top: 26px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight:700;
}
.btn-primary{
  background: var(--accent);
  color:#fff;
  box-shadow: 0 14px 30px rgba(185,15,31,.25);
}
.btn-primary:hover{filter:brightness(1.05)}
.btn-ghost{
  background: rgba(255,255,255,.18);
  color:#fff;
  border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover{background: rgba(255,255,255,.24)}

.btn-whatsapp{
  background: rgba(37, 211, 102, .95);
  color:#0b1a0f;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .22);
}
.btn-whatsapp:hover{filter:brightness(1.03)}
.btn-whatsapp i{margin-right:8px; font-size:18px}

/* FEATURE CARDS */
.hero-cards{
  position:absolute;
  left:0;
  right:0;
  bottom:-46px;
  z-index:3;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card{
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}
.feature-icon{font-size:28px}
.feature-card h3{margin:10px 0 6px; font-size:16px}
.feature-card p{margin:0; color:var(--muted); font-size:14px; line-height:1.45}

.page{background:#fff}
.section{padding: 58px 0}
.section#sobre{padding-top: 110px}
.section.alt{background:#f7f7f8}
h2{margin:0 0 14px; font-size:28px}
.muted{color:var(--muted); line-height:1.7}
.small{font-size:13px}
	.about-block{max-width: 860px; margin: 0 0 14px}

.grid-2{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 22px;
}

/* Reservas: dá um pouco mais de largura para o painel de Unidades (evita quebra de texto) */
#reservas .grid-2{
  grid-template-columns: 1fr 420px;
  align-items: start;
}
@media (max-width: 1100px){
  #reservas .grid-2{ grid-template-columns: 1fr; }
}
.panel, .info-box{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
}
.info-row{display:flex; align-items:center; justify-content:space-between; padding:10px 0; border-bottom:1px dashed var(--line)}
.info-row:last-child{border-bottom:0}

.chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.chip{background:#f3f4f6; border:1px solid var(--line); padding:8px 10px; border-radius:999px; font-size:13px}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.room-card{
  display:block;
  background: var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.room-thumb{
  height: 160px;
  background: linear-gradient(135deg, rgba(185,15,31,.22), rgba(0,0,0,.06));
  background-size: cover;
  background-position: center;
}
.room-body{padding:14px 16px 16px}
.room-body h3{margin:0 0 6px}
.room-card:hover{transform: translateY(-2px); transition: transform .15s ease}

/* Cartão desabilitado (sem fotos) - não abre nada ao clicar */
.room-card.is-disabled{
  opacity: 1;
  cursor: default;
  transform: none !important;
}
.room-card.is-disabled .room-thumb{
  filter: none;
}

.media{border-radius:16px; overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow)}
.media img{width:100%; height:auto; display:block}
.media iframe{width:100%; height:320px; border:0; display:block}

.contact-grid{display:grid; grid-template-columns: 1fr; gap: 10px; margin-top: 12px}
.contact-card{border:1px solid var(--line); border-radius:14px; padding:12px 12px}

.footer{padding: 26px 0; border-top:1px solid var(--line); background:#fff}
.footer-inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}

/* Admin link (top) */
.admin-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  padding: 10px 12px;
  border:1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  color:#fff;
  background: rgba(0,0,0,.18);
}
.admin-link:hover{background: rgba(0,0,0,.28)}
.admin-link.logout{border-style:solid; color:#ffd1d1}
.icon-lock{width:14px;height:14px;fill:currentColor}

@media (max-width: 980px){
  .hero{padding-bottom: 34px}
  .hero-cards{position:static; grid-template-columns:1fr; margin-top: 18px}
  .section#sobre{padding-top: 58px}
  .grid-2{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .nav{gap:10px}
  .hero-content{padding-top: 70px}
}

/* RECEPTION GALLERY (HOME > SOBRE) */
.recepcao-gallery{
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.recepcao-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 10px;
}
.recepcao-head h3{
  margin:0;
  font-size: 18px;
}
.recepcao-actions{
  display:flex;
  gap:8px;
}
.recepcao-btn{
  width:38px;
  height:38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display:grid;
  place-items:center;
}
.recepcao-btn:hover{ background: #f9fafb; }
.recepcao-track{
  display:flex;
  gap:14px;
  overflow:auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: none; /* Firefox */
}
.recepcao-track::-webkit-scrollbar{ display:none; }
.recepcao-item{
  flex: 0 0 auto;
  width: min(520px, 86vw);
  scroll-snap-align: start;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: #f3f4f6;
}
.recepcao-item img{
  width:100%;
  height: 320px;
  display:block;
  object-fit: cover;
}
@media (min-width: 920px){
  /* 2 imagens visíveis por vez no desktop */
  .recepcao-item{ width: calc((100% - 14px) / 2); }
  .recepcao-item img{ height: 340px; }
}


/* TURISMO GALLERY (HOME > TURISMO) */
.turismo-gallery{
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.turismo-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 10px;
}
.turismo-head h3{
  margin:0;
  font-size: 18px;
}
.turismo-actions{
  display:flex;
  gap:8px;
}
.turismo-btn{
  width:38px;
  height:38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display:grid;
  place-items:center;
}
.turismo-btn:hover{ background: #f9fafb; }
.turismo-track{
  display:flex;
  gap:14px;
  overflow:auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: none; /* Firefox */
}
.turismo-track::-webkit-scrollbar{ display:none; }
.turismo-item{
  flex: 0 0 auto;
  width: min(520px, 86vw);
  scroll-snap-align: start;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: #f3f4f6;
}
.turismo-item img{
  width:100%;
  height: 320px;
  display:block;
  object-fit: cover;
}
@media (min-width: 920px){
  /* 2 imagens visíveis por vez no desktop */
  .turismo-item{ width: calc((100% - 14px) / 2); }
  .turismo-item img{ height: 340px; }
}


/* =========================
   Modal de Reserva (painel vermelho)
   ========================= */
body.vh-modal-open{ overflow:hidden; }
.vh-modal{ position:fixed; inset:0; z-index: 9999; display:none; }
.vh-modal.is-open{ display:block; }
.vh-modal-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.55); }
.vh-modal-dialog{
  position:relative;
  height:100%;
  width:100%;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:18px;
  padding-top: clamp(16px, 6vh, 64px);
}

/* Painel menor (não ocupa a tela toda) */
.vh-reserva-panel{
  width:min(460px, 92vw);
  max-height: 86vh;
  background:#a40016;
  color:#fff;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  overflow:auto;
}

.vh-reserva-head{ display:flex; align-items:flex-start; justify-content:space-between; gap:14px; padding:14px 16px 6px; }
.vh-reserva-kicker{ font-size:.75rem; opacity:.9; letter-spacing:.03em; text-transform:uppercase; }
.vh-reserva-head h2{ margin:6px 0 0; font-size:1.35rem; line-height:1.15; }
.vh-modal-close{ border:0; background:rgba(255,255,255,.12); color:#fff; width:36px; height:36px; border-radius: 10px; font-size: 22px; cursor:pointer; }
.vh-modal-close:hover{ background:rgba(255,255,255,.18); }

.vh-reserva-form{ padding: 10px 16px 14px; display:grid; gap:8px; }
.vh-field{ display:grid; gap:4px; }
.vh-field span{ font-size:.85rem; opacity:.95; }
.vh-field input, .vh-field select, .vh-field textarea{ resize: vertical; min-height: 58px; }
.vh-field textarea{ resize: vertical; min-height: 72px; }
.vh-opt{ font-style: normal; font-size:.8em; opacity:.85; }

.vh-row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
@media (max-width: 520px){
  .vh-row{ grid-template-columns: 1fr; }
}

.vh-reserva-submit{
  width:100%;
  border:0;
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.18);
  color:#fff;
  font-weight: 700;
  cursor:pointer;
}
.vh-reserva-submit:hover{ background: rgba(255,255,255,.24); }
.vh-reserva-note{ font-size:.82rem; opacity:.92; line-height:1.25; }

.vh-reserva-warning{
  margin-top:10px;
  margin-bottom:10px;
  background: rgba(255,243,205,.95);
  color:#3b2f00;
  border-left: 4px solid #ffc107;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: .9rem;
  line-height: 1.25;
}

/* Café da manhã (galeria) */
.cafe-gallery{ margin-top:16px; }
.cafe-track{ display:flex; gap:14px; overflow:auto; scroll-snap-type:x mandatory; padding-bottom:4px; }
.cafe-item{ flex: 0 0 82%; scroll-snap-align:start; border-radius:16px; overflow:hidden; box-shadow: 0 10px 25px rgba(0,0,0,.10); }
.cafe-item img{ width:100%; height:260px; object-fit:cover; display:block; cursor: zoom-in; }
@media (min-width: 920px){
  .cafe-item{ flex: 0 0 calc((100% - 14px) / 2); }
  .cafe-item img{ height: 320px; }
}

/* Lightbox (galeria ampliada) */
.vh-lightbox{ position:fixed; inset:0; z-index: 10000; display:none; }
.vh-lightbox.is-open{ display:block; }
.vh-lightbox-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.78); }
.vh-lightbox-inner{ position:relative; height:100%; width:100%; display:flex; align-items:center; justify-content:center; padding:18px; }
.vh-lightbox-img{ max-width: min(1100px, 96vw); max-height: 82vh; border-radius: 14px; box-shadow: 0 24px 70px rgba(0,0,0,.45); background:#111; object-fit:contain; }
.vh-lightbox-btn{ position:absolute; top:50%; transform: translateY(-50%); border:0; width:44px; height:44px; border-radius: 14px; cursor:pointer; background: rgba(255,255,255,.14); color:#fff; display:grid; place-items:center; }
.vh-lightbox-btn:hover{ background: rgba(255,255,255,.22); }
.vh-lightbox-prev{ left:16px; }
.vh-lightbox-next{ right:16px; }
.vh-lightbox-close{ position:absolute; top:18px; right:18px; transform:none; }


/* Reserva CTA */
button[data-open-reserva]{font-size:18px;padding:14px 22px;border-radius:14px}

.unit-info{display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:10px;margin-top:10px}
.unit-info>div{display:flex;align-items:baseline;justify-content:space-between;background:#fff;border:1px solid rgba(15,23,42,.12);border-radius:12px;padding:10px 12px}
.unit-info b{font-size:12px;color:#0f172a;letter-spacing:.2px}
.unit-info span{font-size:13px;color:#334155}


/* Unidades / Informações (Home) */
.unit-tabs{display:flex;gap:6px;flex-wrap:wrap;margin-top:8px}
.unit-tab{border:1px solid rgba(15,23,42,.12);background:#f8fafc;color:#0f172a;padding:5px 10px;border-radius:999px;font-weight:800;font-size:13px;cursor:pointer;box-shadow:0 8px 22px rgba(2,6,23,.06)}
.unit-tab.active{background:#0f172a;color:#fff;border-color:rgba(15,23,42,.35)}

/* Painel de Unidades: impede ultrapassar a galeria da esquerda (altura é sincronizada via JS) */
.unidades-panel{display:flex;flex-direction:column;overflow:visible;align-self:start}



/* Tamanho do painel de Unidades (mantém no mesmo local e evita ocupar área da galeria) */
#reservas .unidades-panel{display:flex;flex-direction:column;overflow:visible;align-self:start}
/* Compactação extra do painel de Unidades */
.panel.unidades-panel{display:flex;flex-direction:column;overflow:visible;align-self:start}
.unidades-panel h3{margin:0 0 4px 0;font-size:16px}
.unit-cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:6px;
  margin-top:8px;
  overflow:visible;
  -webkit-overflow-scrolling: touch;
  padding-right: 0;
  max-height:none;
}

.unit-cards::-webkit-scrollbar{width:6px}
.unit-cards::-webkit-scrollbar-thumb{background:rgba(148,163,184,.9);border-radius:999px}

/* Mantém compatibilidade (classes antigas podem existir) */
.unit-info-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:12px;
}
.info-card{
  display:flex;
  gap:8px;
  align-items:center;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  padding:6px 8px;
  box-shadow:0 8px 22px rgba(2,6,23,.06);
  min-height:54px;
}
.info-icon{
  width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;
  border-radius:999px;
  background:rgba(2,132,199,.10);
  font-size:14px;
  flex:0 0 28px;
}
.info-text{min-width:0}
.info-label{
  font-size:13px;
  font-weight:900;
  color:#0f172a;
  line-height:1.15;
  margin-top:0;
  white-space: normal;
}
.info-value{
  margin-top:1px;
  font-size:11.5px;
  font-weight:700;
  color:#334155;
  line-height:1.25;
}

@media (max-width: 520px){
  .unit-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:8px;
  margin-top:10px;
  overflow:visible;
  -webkit-overflow-scrolling: touch;
  padding-right: 0;
  max-height:none;
}
  .unit-info-grid{ grid-template-columns:1fr; }
}

@media (max-width: 420px){
  .info-label{
    font-size:12.5px;
  }
}

/* Contato > Redes sociais */
.social-box{ margin-top:14px; }
.social-title{ font-weight:800; margin-bottom:8px; }
.social-ig, .social-disabled{ display:inline-flex; align-items:center; gap:10px; padding:10px 12px; border-radius:14px; border:1px solid rgba(15,23,42,.12); background:#fff; }
.social-ig{ text-decoration:none; color:#0f172a; }
.social-ig:hover{ box-shadow:0 10px 24px rgba(2,6,23,.08); }
.social-disabled{ opacity:.65; }
.social-disabled .ig-icon{ filter: grayscale(1); }
@media (max-width:720px){
  .unit-info-grid{grid-template-columns:1fr}
}
.room-amenities{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.badge{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;background:rgba(185,15,31,.08);color:var(--accent);font-size:12px;font-weight:700;border:1px solid rgba(185,15,31,.18)}

/* Categoria (Apartamentos) */
.cat-hero{display:grid;grid-template-columns: 360px 1fr;gap:18px;align-items:stretch;margin:18px 0 24px}
.cat-hero-media{height:220px;border-radius:18px;background:#f1f5f9;background-size:cover;background-position:center;cursor:pointer;border:1px solid rgba(15,23,42,.12)}
.cat-hero-body h2{margin:0}
@media(max-width:900px){.cat-hero{grid-template-columns:1fr}.cat-hero-media{height:200px}}
/* Modal + Gallery */
.modal{position:fixed;inset:0;display:none;z-index:9999}
.modal.open{display:block}
.modal-backdrop{position:absolute;inset:0;background:rgba(2,6,23,.65)}
.modal-dialog{position:relative;max-width:980px;margin:5vh auto;background:#fff;border-radius:18px;padding:14px;border:1px solid rgba(255,255,255,.2);box-shadow:0 30px 80px rgba(0,0,0,.35)}
.modal-lg{max-width:1050px}
.modal-close{position:absolute;top:10px;right:12px;width:42px;height:42px;border-radius:12px;border:1px solid rgba(15,23,42,.12);background:#fff;font-size:26px;line-height:1;cursor:pointer}
.gallery{position:relative}
.gallery-track{display:flex;overflow:hidden;scroll-behavior:smooth;border-radius:14px}
.gallery-item{min-width:100%}
.gallery-item img{width:100%;height:70vh;object-fit:contain;background:#0b1220;border-radius:14px}
.gallery-nav{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:999px;border:1px solid rgba(255,255,255,.25);background:rgba(2,6,23,.55);color:#fff;font-size:28px;cursor:pointer}
.gallery-nav.prev{left:12px}
.gallery-nav.next{right:12px}
@media(max-width:900px){.gallery-item img{height:62vh}.modal-dialog{margin:3vh 12px}}


/* Gallery thumbnails (modal) */
.gallery-thumbs{display:flex;gap:10px;overflow-x:auto;padding:10px 2px;margin-top:10px;-webkit-overflow-scrolling:touch}
.gallery-thumb{flex:0 0 auto;border:2px solid transparent;border-radius:12px;background:transparent;padding:0;cursor:pointer}
.gallery-thumb img{width:92px;height:58px;object-fit:cover;border-radius:10px;display:block;opacity:.8}
.gallery-thumb.active{border-color:rgba(255,255,255,.95)}
.gallery-thumb.active img{opacity:1}
@media(max-width:900px){.gallery-thumb img{width:72px;height:48px}}

/* Clickable hero image as button */
button.hero-img{border:0;padding:0;cursor:pointer}

/* Redes sociais (ao lado do maps) */
.social-box{margin-top:14px;padding-top:12px;border-top:1px solid rgba(15,23,42,.08)}
.social-title{font-weight:800;color:#0f172a;margin-bottom:8px}
.social-ig{display:inline-flex;align-items:center;gap:10px;padding:10px 12px;border-radius:12px;border:1px solid rgba(15,23,42,.10);background:#fff;box-shadow:0 8px 22px rgba(2,6,23,.06);text-decoration:none;color:#0f172a;font-weight:800}
.social-ig:hover{transform:translateY(-1px)}
.ig-icon{width:38px;height:38px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:rgba(236,72,153,.10)}

/* Rodapé (estilo dark) */
.vh-footer{background:#2f2f2f;color:#fff;padding:34px 0 0;margin-top:40px}
.vh-footer-inner{display:grid;grid-template-columns:140px 1fr 1fr 1fr;gap:28px;align-items:start}
.vh-footer-logo{max-width:110px;max-height:110px;object-fit:contain;border-radius:8px}
.vh-footer-logo-fallback{width:110px;height:110px;border-radius:10px;background:rgba(255,255,255,.10);display:flex;align-items:center;justify-content:center;font-weight:900;font-size:28px}
.vh-footer-title{font-weight:900;margin-bottom:10px}
.vh-footer-text{color:rgba(255,255,255,.92);line-height:1.5;margin:6px 0}
.vh-footer-text a{color:#fff;text-decoration:underline;text-underline-offset:3px}
.vh-footer-social{display:inline-flex;align-items:center;gap:10px;padding:10px 12px;border-radius:12px;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.08);color:#fff;text-decoration:none;font-weight:800}
.vh-footer-social:hover{background:rgba(255,255,255,.12)}
.vh-footer-bottom{margin-top:26px;border-top:1px solid rgba(255,255,255,.12);padding:14px 0}
.vh-footer-copy{color:rgba(255,255,255,.85);font-size:.92rem}
@media(max-width:980px){
  .vh-footer-inner{grid-template-columns:1fr;gap:18px}
  .vh-footer-brand{display:flex;justify-content:center}
}


/* === AJUSTE (v12): Unidades no tamanho/estilo da referência === */
/* Mantém o painel de Unidades “elegante” e mais baixo (não invade a galeria). */
#reservas .panel.unidades-panel{display:flex;flex-direction:column;overflow:visible;align-self:start}
#reservas .panel.unidades-panel h3{ margin-top:0; margin-bottom:10px; font-size:34px; }

/* Abas (Vitor Hotel I / II) no estilo pill */
#reservas .unit-tabs{display:flex;gap:8px;flex-wrap:wrap;margin-top:8px}
#reservas .unit-tab{border:1px solid rgba(15,23,42,.12);background:#f8fafc;color:#0f172a;padding:7px 12px;border-radius:999px;font-weight:800;cursor:pointer;box-shadow:0 8px 22px rgba(2,6,23,.06)}

/* Grade dos cards */
#reservas .unit-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:8px;
  margin-top:10px;
  overflow:visible;
  -webkit-overflow-scrolling: touch;
  padding-right: 0;
  max-height:none;
}

/* Card (não quadrado: cantos bem arredondados) */
#reservas .info-card{
  display:flex;
  gap:10px;
  align-items:center;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:8px 10px;
  box-shadow:0 8px 22px rgba(2,6,23,.06);
  min-height:72px;
}

/* Ícone com fundo circular */
#reservas .info-icon{
  width:34px;height:34px;
  display:flex;align-items:center;justify-content:center;
  border-radius:999px;
  background:rgba(2,132,199,.10);
  font-size:16px;
  flex:0 0 34px;
}

/* Textos no tamanho do print */
#reservas .info-label{
  font-size: 15px;
  font-weight:900;
  color:#0f172a;
  line-height:1.15;
  margin-top:0;
  white-space: nowrap;
}

#reservas .info-value{
  margin-top:2px;
  font-size:12px;
  font-weight:700;
  color:#334155;
  line-height:1.25;
}

/* Mobile: empilha e mantém compacto */
@media(max-width:720px){
  #reservas .panel.unidades-panel h3{ font-size:28px; }
  #reservas .unit-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:8px;
  margin-top:10px;
  overflow:visible;
  -webkit-overflow-scrolling: touch;
  padding-right: 0;
  max-height:none;
}
  #reservas .info-card{
  display:flex;
  gap:10px;
  align-items:center;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:8px 10px;
  box-shadow:0 8px 22px rgba(2,6,23,.06);
  min-height:72px;
}
  #reservas .info-icon{
  width:34px;height:34px;
  display:flex;align-items:center;justify-content:center;
  border-radius:999px;
  background:rgba(2,132,199,.10);
  font-size:16px;
  flex:0 0 34px;
}
}



/* Hidden helper (for lightbox sources) */
.vh-hidden{display:none!important;}


/* Social links (Contato) */
.social-links{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:8px;
}
.social-links .social-btn{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:6px 10px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  text-decoration:none;
  font-size:14px;
}
.social-links .social-btn i{
  font-size:16px;
}

/* === Contato (cards por unidade) === */
.vh-contato-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:12px;
}

.vh-contato-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  padding:14px;
  box-shadow:0 8px 18px rgba(2,6,23,.05);
}

.vh-contato-title{
  font-size:20px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:10px;
}

.vh-contato-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.vh-contato-row:last-child{ margin-bottom:0; }

.vh-contato-ico{
  width:34px;
  height:34px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  flex:0 0 34px;
}

.vh-ico-phone{ background:#111827; }
.vh-ico-mail{ background:#60a5fa; }

.vh-contato-ico i{ font-size:15px; }

.vh-contato-link,
.vh-contato-text{
  font-size:16px;
  font-weight:700;
  color:#334155;
  text-decoration:none;
  word-break:break-word;
  line-height:1.25;
}
.vh-contato-link:hover{ text-decoration:underline; text-underline-offset:3px; }

@media (max-width: 720px){
  .vh-contato-card{ padding:12px; }
  .vh-contato-title{ font-size:18px; }
  .vh-contato-link,
  .vh-contato-text{ font-size:15px; }
  .vh-contato-ico{ width:32px;height:32px;flex-basis:32px; }
}

/* Modal simples: feedback após envio de reserva */
#reservaSentModal{align-items:center;justify-content:center}
.vh-reserva-sent-box{
  width:min(620px, calc(100vw - 28px));
  background:#fff;
  border-radius:18px;
  padding:16px 16px;
  box-shadow:0 16px 48px rgba(0,0,0,.18);
}
.vh-reserva-sent-head{display:flex;align-items:center;justify-content:space-between;gap:12px}
.vh-reserva-sent-head h3{margin:0;font-size:18px;letter-spacing:.2px}
.vh-reserva-sent-text{margin:10px 0 0 0;color:#334155;line-height:1.4}

.vh-reserva-sent-actions{margin-top:14px;display:flex;justify-content:flex-end}
.vh-reserva-sent-btn{border:0;border-radius:12px;padding:10px 14px;font-weight:800;cursor:pointer;background:#111827;color:#fff}
.vh-reserva-sent-btn:hover{filter:brightness(1.05)}

/* Botão fechar visível no modal de confirmação */
#reservaSentModal .vh-modal-close{
  background:#f1f5f9;
  color:#0f172a;
}
#reservaSentModal .vh-modal-close:hover{ background:#e2e8f0; }

/* Contatos extras ao lado da localização */
.vh-local-contacts{margin-top:12px;display:flex;flex-direction:column;gap:10px}
.vh-local-contact{display:flex;align-items:center;gap:10px;font-weight:700;color:#334155}
.vh-local-contact a{color:#334155;text-decoration:none}
.vh-local-contact a:hover{text-decoration:underline; text-underline-offset:3px}
.vh-local-ico{width:32px;height:32px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#111827;color:#fff;flex:0 0 32px}
.vh-local-ico i{font-size:15px}



/* === UNIDADES – VERSÃO COMPACTA === */
.unidades-box {
    padding: 12px 14px;
    border-radius: 10px;
}
.unidades-box h3 {
    font-size: 16px;
    margin-bottom: 8px;
}
.unidades-lista {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 12px;
}
.unidade-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    line-height: 1.25;
}
.unidade-item i {
    font-size: 14px;
    min-width: 18px;
}
@media (max-width: 768px) {
    .unidades-lista {
        grid-template-columns: 1fr;
    }
}
