:root {
  /* Paleta alinhada com o logotipo e a identidade da Quinta Picouto de Cima */
  --burgundy: #877751;        /* bronze quente (cor primária) */
  --burgundy-light: #A89167;
  --burgundy-deep: #5C4F31;
  --gold: #A88646;            /* dourado do logotipo (colunas) */
  --gold-light: #C9A35E;
  --cream: #F5EFE3;
  --cream-dark: #E8DFC9;
  --vine: #3B6D11;
  --vine-deep: #173404;
  --ink: #383F48;             /* cinza-ardósia (texto principal) */
  --stone: #6B645B;
  --paper: #FBF8F1;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* === Acessibilidade === */
/* Skip link — só visível ao ganhar foco por teclado. */
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 100001;
  padding: 10px 16px; background: var(--burgundy-deep); color: var(--paper);
  text-decoration: none; border-radius: 4px; font-family: 'Poppins',sans-serif;
  font-size: 14px; font-weight: 500;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 8px; outline: 2px solid var(--gold); outline-offset: 2px; }

/* Indicador de foco visível para utilizadores de teclado — WCAG 2.4.7.
   Aplica-se globalmente; :focus-visible garante que rato/toque não mostram
   o outline (só teclado). */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Remove qualquer outline residual :focus (mouse/touch) desde que :focus-visible
   funcione — os browsers modernos honram isto. */
:focus:not(:focus-visible) { outline: none; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* Esconde o salto entre HTML default e overrides do Firestore.
   Os elementos com [data-key] começam invisíveis e aparecem juntos quando
   o texts.js termina (ou após failsafe de 2.5s). Layout fica reservado. */
[data-key] { opacity: 0; transition: opacity 0.25s ease; }
html.texts-ready [data-key] { opacity: 1; }

/* Imagens dinâmicas geridas por images.js — fade-in só quando os bytes
   chegaram realmente do Storage (evita ver o background CSS placeholder
   a ser substituído pela foto real). */
[data-image-key] { opacity: 0; transition: opacity 0.4s ease; }
[data-image-key].image-ready { opacity: 1; }

/* Scrollbar fina, tonalidade da marca — modals e drawers.
   Substitui a scrollbar nativa cinzenta grossa por uma fina dourada,
   só visível quando precisa. Track transparente para zero ruído visual. */
.booking-modal .bm-body,
.qco-modal .qco-body,
.qpc-cart-drawer .qcd-items,
.qpc-chat-panel .qcp-log {
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 134, 70, 0.4) transparent;
}
.booking-modal .bm-body::-webkit-scrollbar,
.qco-modal .qco-body::-webkit-scrollbar,
.qpc-cart-drawer .qcd-items::-webkit-scrollbar,
.qpc-chat-panel .qcp-log::-webkit-scrollbar {
  width: 6px;
}
.booking-modal .bm-body::-webkit-scrollbar-track,
.qco-modal .qco-body::-webkit-scrollbar-track,
.qpc-cart-drawer .qcd-items::-webkit-scrollbar-track,
.qpc-chat-panel .qcp-log::-webkit-scrollbar-track {
  background: transparent;
}
.booking-modal .bm-body::-webkit-scrollbar-thumb,
.qco-modal .qco-body::-webkit-scrollbar-thumb,
.qpc-cart-drawer .qcd-items::-webkit-scrollbar-thumb,
.qpc-chat-panel .qcp-log::-webkit-scrollbar-thumb {
  background: rgba(168, 134, 70, 0.35);
  border-radius: 3px;
}
.booking-modal .bm-body::-webkit-scrollbar-thumb:hover,
.qco-modal .qco-body::-webkit-scrollbar-thumb:hover,
.qpc-cart-drawer .qcd-items::-webkit-scrollbar-thumb:hover,
.qpc-chat-panel .qcp-log::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 134, 70, 0.65);
}
.serif { font-family: 'Playfair Display', serif; }

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 248, 241, 0);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled, nav.solid {
  background: rgba(251, 248, 241, 0.97);
  padding: 12px 48px;
  box-shadow: 0 1px 0 rgba(26, 22, 20, 0.06);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 100px;
  width: auto;
  display: block;
  transition: height 0.4s ease;
}
nav.scrolled .logo-img, nav.solid .logo-img {
  height: 76px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
nav.scrolled .nav-menu a, nav.solid .nav-menu a { color: var(--ink); }
.nav-menu a:hover { color: var(--gold-light); }
nav.scrolled .nav-menu a:hover, nav.solid .nav-menu a:hover { color: var(--burgundy); }
.nav-menu a.active { color: var(--gold-light); }
nav.scrolled .nav-menu a.active, nav.solid .nav-menu a.active { color: var(--burgundy); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-switch {
  display: flex;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  color: white;
}
nav.scrolled .lang-switch, nav.solid .lang-switch { color: var(--stone); }
.lang-switch a {
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
  color: inherit;
}
.lang-switch .active { color: var(--gold-light); }
nav.scrolled .lang-switch .active, nav.solid .lang-switch .active { color: var(--burgundy); }
.lang-switch .sep { opacity: 0.4; }

.btn-reserve {
  padding: 10px 22px;
  background: var(--burgundy);
  color: var(--cream);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--burgundy);
  transition: all 0.3s;
}
.btn-reserve:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
nav.scrolled .mobile-toggle, nav.solid .mobile-toggle { color: var(--ink); }

/* === BUTTONS === */
.btn {
  padding: 16px 32px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid;
  font-family: inherit;
}
.btn-primary {
  background: var(--gold);
  color: #2A2014;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 239, 227, 0.4);
}
.btn-ghost:hover {
  background: rgba(245, 239, 227, 0.08);
  border-color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--cream);
}
.btn i { font-size: 14px; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(42, 15, 6, 0.55) 0%, rgba(26, 22, 20, 0.45) 50%, rgba(23, 52, 4, 0.55) 100%),
    linear-gradient(180deg, #2A0F06 0%, #4A1B0C 40%, #173404 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 90px 48px 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.95) contrast(1.05) brightness(0.79);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 40% at 50% 48%, rgba(255,228,160,0.13) 0%, rgba(255,228,160,0) 65%),
    radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(6,21,0,0.5) 92%),
    linear-gradient(180deg, rgba(12,34,0,0.38) 0%, rgba(6,21,0,0.22) 45%, rgba(6,21,0,0.85) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 720px;
  animation: rise 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold-light);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-tag::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold-light);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--cream-dark);
  display: block;
  font-size: 0.85em;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0.88;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  position: absolute;
  bottom: 40px; right: 48px;
  display: flex;
  gap: 28px;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.85;
  z-index: 2;
}
.hero-trust .tr {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-trust .val {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1;
}
.hero-trust .lbl {
  font-size: 9px;
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* === PAGE HEADER (interior pages) === */
.page-header {
  position: relative;
  padding: 200px 48px 100px;
  background:
    linear-gradient(135deg, rgba(42, 15, 6, 0.6), rgba(26, 22, 20, 0.5)),
    linear-gradient(180deg, var(--burgundy-deep), var(--burgundy));
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-header .eyebrow { color: var(--gold-light); justify-content: center; margin-bottom: 20px; }
.page-header .eyebrow::before, .page-header .eyebrow::after { background: var(--gold-light); opacity: 0.5; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-header h1 em { font-style: italic; color: var(--gold-light); }
.page-header p {
  font-size: 17px;
  opacity: 0.85;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* === SECTION === */
.section { padding: 120px 48px; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}
.section-head.align-left { text-align: left; margin: 0 0 50px; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--burgundy);
  opacity: 0.4;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-head h2 em { font-style: italic; color: var(--burgundy); }
.section-head p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.7;
}
.section-dark .section-head h2 { color: var(--cream); }
.section-dark .section-head h2 em { color: var(--gold-light); }
.section-dark .section-head p { color: rgba(245, 239, 227, 0.7); }
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark .eyebrow::before, .section-dark .eyebrow::after { background: var(--gold-light); opacity: 0.5; }

/* === EXPERIENCES === */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.exp-card {
  background: white;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
  border: 1px solid rgba(26, 22, 20, 0.06);
  text-decoration: none;
  color: inherit;
  display: block;
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(74, 27, 12, 0.18);
}
.exp-card.featured { border: 1px solid var(--burgundy); }
.exp-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--burgundy-deep);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 6px 12px;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.exp-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.exp-image.wines {
  background:
    radial-gradient(circle at 30% 40%, rgba(186, 117, 23, 0.3), transparent 50%),
    linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-light) 60%, var(--burgundy-deep) 100%);
}
.exp-image.stay {
  background:
    radial-gradient(circle at 70% 30%, rgba(245, 239, 227, 0.15), transparent 50%),
    linear-gradient(160deg, var(--vine) 0%, var(--vine-deep) 100%);
}
.exp-image.tasting {
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 239, 227, 0.2), transparent 60%),
    linear-gradient(160deg, var(--gold-light) 0%, var(--gold) 50%, #6B4209 100%);
}
.exp-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 64px;
  opacity: 0.9;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.exp-card:hover .exp-icon { transform: scale(1.15) rotate(-3deg); }
.exp-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.1;
  mix-blend-mode: overlay;
}
.exp-body { padding: 32px 28px; }
.exp-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.exp-body p {
  color: var(--stone);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.exp-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 22, 20, 0.08);
}
.exp-price {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 300;
  color: var(--stone);
  font-size: 12px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.exp-price strong {
  color: var(--burgundy);
  font-weight: 600;
  font-size: 20px;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0;
}
.exp-link {
  color: var(--burgundy);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
  font-weight: 500;
}
.exp-card:hover .exp-link { gap: 12px; }

/* === STORY === */
.story-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.story-text .eyebrow { justify-content: flex-start; }
.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--ink);
}
.story-text h2 em {
  font-style: italic;
  color: var(--burgundy);
  display: block;
}
.story-text p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.story-text .lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--burgundy);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 22, 20, 0.1);
}
.stat .n {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--burgundy);
  line-height: 1;
  font-style: italic;
}
.stat .l {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 8px;
}
.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 1;
}
.story-img {
  position: relative;
  overflow: hidden;
  background: var(--burgundy);
}
.story-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence baseFrequency='0.7'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.3;
}
.story-img.a { background: linear-gradient(135deg, var(--vine), var(--vine-deep)); grid-row: 1 / 3; }
.story-img.b { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep)); }
.story-img.c { background: linear-gradient(135deg, var(--gold), #6B4209); }

/* === WINES === */
.wine-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.wine {
  text-align: center;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wine:hover { transform: translateY(-8px); }
.bottle-wrap {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.bottle {
  width: 60px;
  height: 280px;
  position: relative;
  transition: transform 0.5s;
}
.bottle .neck {
  width: 22px;
  height: 70px;
  margin: 0 auto;
  border-radius: 3px 3px 0 0;
}
.bottle .body {
  width: 60px;
  height: 210px;
  border-radius: 6px 6px 12px 12px;
  position: relative;
  overflow: hidden;
}
.bottle.red .neck { background: linear-gradient(90deg, #2A0F06, #4A1B0C, #2A0F06); }
.bottle.red .body { background: linear-gradient(90deg, #2A0F06, #4A1B0C 50%, #2A0F06); }
.bottle.white .neck { background: linear-gradient(90deg, #4D5B2E, #7A8C4A, #4D5B2E); }
.bottle.white .body { background: linear-gradient(90deg, #4D5B2E, #7A8C4A 50%, #4D5B2E); }
.bottle.rose .neck { background: linear-gradient(90deg, #8C3A52, #C4607E, #8C3A52); }
.bottle.rose .body { background: linear-gradient(90deg, #8C3A52, #C4607E 50%, #8C3A52); }
.bottle .label {
  position: absolute;
  top: 90px; left: 8px; right: 8px;
  background: var(--cream);
  padding: 14px 6px;
  text-align: center;
  color: var(--burgundy-deep);
}
.bottle .label .lname {
  font-family: 'Playfair Display', serif;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}
.bottle .label .lyear {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 11px;
  margin-top: 4px;
  color: var(--burgundy);
}
.bottle .label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--burgundy);
  margin: 0 auto 5px;
}
.wine:hover .bottle { transform: rotate(-3deg) scale(1.05); }
.wine h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
}
.wine .wtype {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.wine .wdesc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 239, 227, 0.7);
  max-width: 240px;
  margin: 0 auto 20px;
}
.wine .wprice {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--gold-light);
}

/* === WINE DETAILED CARDS (page) === */
.wine-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}
.wine-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  padding: 50px;
  border: 1px solid rgba(26, 22, 20, 0.06);
}
.wine-detail .bottle-wrap { height: 380px; margin: 0; }
.wine-detail .bottle { width: 75px; height: 340px; }
.wine-detail .bottle .neck { width: 28px; height: 85px; }
.wine-detail .bottle .body { width: 75px; height: 255px; }
.wine-detail .bottle .label { top: 110px; padding: 18px 8px; }
.wine-detail .bottle .label .lname { font-size: 11px; }
.wine-detail .bottle .label .lyear { font-size: 14px; }

.wine-info .wd-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.wine-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}
.wine-info h3 em { font-style: italic; color: var(--burgundy); }
.wine-info > p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  white-space: pre-line; /* preserva quebras de linha/parágrafos do backoffice */
}
.wine-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(26, 22, 20, 0.1);
  border-bottom: 1px solid rgba(26, 22, 20, 0.1);
  margin-bottom: 24px;
}
.wine-specs .sp { font-size: 13px; }
.wine-specs .sp .k {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}
.wine-specs .sp .v {
  color: var(--ink);
  font-weight: 500;
}
.wine-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--stone);
  text-decoration: none;
  margin: -8px 0 22px;
  transition: color 0.15s ease;
}
.wine-pdf-link:hover {
  color: var(--burgundy);
  text-decoration: underline;
}
.wine-pdf-link i {
  font-size: 16px;
  color: var(--burgundy);
}
.wine-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.wine-price-row .price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--burgundy);
  font-style: italic;
}
.wine-price-row .price small {
  font-size: 13px;
  color: var(--stone);
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  margin-left: 8px;
}
.wine-price-row .price-soon {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--stone);
}

/* === STAY / ROOM DETAIL === */
.stay-hero-grid {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.stay-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
}
.stay-text h2 em { font-style: italic; color: var(--burgundy); display: block; }
.stay-text p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.stay-img {
  height: 480px;
  background:
    radial-gradient(circle at 30% 70%, rgba(245, 239, 227, 0.1), transparent 60%),
    linear-gradient(160deg, var(--vine), var(--vine-deep));
  position: relative;
  overflow: hidden;
}
.stay-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.12;
  mix-blend-mode: overlay;
}

.amenities-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.amenity {
  text-align: center;
  padding: 32px 18px;
}
.amenity i {
  font-size: 36px;
  color: var(--burgundy);
  margin-bottom: 14px;
}
.amenity h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.amenity p {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
}

/* === PROVAS / TASTING PACKAGES === */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.package {
  background: white;
  padding: 44px 36px;
  border: 1px solid rgba(26, 22, 20, 0.08);
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}
.package:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(74, 27, 12, 0.18);
}
.package.featured {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
  transform: scale(1.03);
}
.package.featured:hover { transform: scale(1.03) translateY(-6px); }
.pkg-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--burgundy-deep);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 6px 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}
.pkg-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.package.featured .pkg-tag { color: var(--gold-light); }
.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 4px;
}
.package.featured .pkg-price { color: var(--gold-light); }
.pkg-price-unit {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--stone);
  margin-bottom: 32px;
}
.package.featured .pkg-price-unit { color: rgba(245, 239, 227, 0.7); }
.pkg-features {
  list-style: none;
  margin-bottom: 32px;
}
.pkg-features li {
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 22, 20, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.package.featured .pkg-features li { border-bottom-color: rgba(245, 239, 227, 0.15); }
.pkg-features li i {
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 3px;
}
.package.featured .pkg-features li i { color: var(--gold-light); }
.pkg-features li:last-child { border-bottom: none; }
.package .btn-outline { width: 100%; justify-content: center; }
.package.featured .btn-outline {
  background: var(--gold);
  color: var(--burgundy-deep);
  border-color: var(--gold);
}
.package.featured .btn-outline:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--burgundy-deep);
}

/* === EXPERIÊNCIAS (cards com foto) === */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.experience {
  background: white;
  border: 1px solid rgba(26, 22, 20, 0.08);
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.experience:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(74, 27, 12, 0.18);
}
.experience.featured { border: 2px solid var(--burgundy); }
.exp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: var(--gold);
  color: var(--burgundy-deep);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 6px 12px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
}
.exp-img {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
}
.exp-body {
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.exp-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.exp-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.exp-price {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 4px;
}
.exp-price-unit {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--stone);
  margin-bottom: 20px;
}
.exp-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}
.exp-features li {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(26, 22, 20, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  color: var(--ink);
}
.exp-features li i { color: var(--burgundy); flex-shrink: 0; margin-top: 3px; }
.exp-features li:last-child { border-bottom: none; }
.exp-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 22px;
  flex: 1;
  white-space: pre-line; /* preserva quebras de linha/parágrafos do backoffice */
}
.experience .btn-outline { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .experiences-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 600px) {
  .experiences-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* === REVIEWS === */
.rating-head {
  text-align: center;
  margin-bottom: 60px;
}
.stars-big {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 10px;
}
.rating-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.rating-head h2 em { font-style: italic; color: var(--burgundy); }
.rating-meta {
  color: var(--stone);
  font-size: 13px;
  letter-spacing: 1px;
}
.rating-meta strong { color: var(--burgundy); font-weight: 600; }
.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  background: white;
  padding: 36px 30px;
  border-left: 2px solid var(--gold);
  position: relative;
}
.review .quote-mark {
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--burgundy);
  opacity: 0.1;
  line-height: 1;
}
.review .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-size: 14px;
}
.review p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 22px;
}
.review .author {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.review .source {
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* === CTA BAND === */
.cta-band {
  padding: 80px 48px;
  background:
    linear-gradient(135deg, rgba(42, 15, 6, 0.85), rgba(74, 27, 12, 0.85)),
    linear-gradient(180deg, var(--burgundy), var(--burgundy-deep));
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.1;
  mix-blend-mode: overlay;
}
.cta-band-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 18px;
}
.cta-band h2 em { font-style: italic; color: var(--gold-light); }
.cta-band p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* === CONTACT === */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-map {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 50px -24px rgba(92, 79, 49, 0.35);
  border: 1px solid var(--cream-dark, #E8DFC9);
}
.contact-map iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}
@media (max-width: 720px) {
  .contact-map iframe { height: 320px; }
}

/* FAQ (accordion nativo) */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark, #E8DFC9);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--burgundy-deep, #5C4F31);
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\002B';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--gold, #A88646);
  transition: transform 0.2s;
  font-family: 'Poppins', sans-serif;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-answer {
  padding: 0 44px 24px 0;
  color: var(--stone, #6b6358);
  line-height: 1.7;
  font-size: 15px;
}
.faq-item .faq-answer a { color: var(--burgundy); text-decoration: underline; }
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}
.contact-info h2 em { font-style: italic; color: var(--burgundy); display: block; }
.contact-info > p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-item .ci-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item .ci-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-item .ci-body p, .contact-item .ci-body a {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
  text-decoration: none;
}
.contact-item .ci-body a:hover { color: var(--burgundy); }

.contact-form {
  background: white;
  padding: 48px;
  border: 1px solid rgba(26, 22, 20, 0.08);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--ink);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 22, 20, 0.2);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--burgundy);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form button { width: 100%; justify-content: center; }

/* === GALLERY === */
.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.12;
  mix-blend-mode: overlay;
}
.g-item:hover { transform: scale(0.98); }
.g-item .g-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(26, 22, 20, 0.75));
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.g-item:hover .g-cap { opacity: 1; }
.g-cap .lab {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
}
.g-cap .sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}
.g-photo {
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
  text-decoration: none;
}
.g-photo:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; }
.g-photo:nth-child(7n+4) { grid-column: span 2; }
.g-vine { background: linear-gradient(135deg, var(--vine), var(--vine-deep)); grid-column: span 2; grid-row: span 2; }
.g-wine { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep)); }
.g-cellar { background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy)); }
.g-house { background: linear-gradient(135deg, var(--gold), #6B4209); grid-column: span 2; }
.g-event { background: linear-gradient(135deg, var(--ink), var(--stone)); }
.g-interior { background: linear-gradient(135deg, var(--burgundy-deep), var(--ink)); }
.g-grapes { background: linear-gradient(135deg, var(--vine-deep), #0C2200); }
.g-bottles { background: linear-gradient(135deg, var(--burgundy), var(--gold)); }

/* === FOOTER === */
footer {
  background: var(--ink);
  color: rgba(245, 239, 227, 0.65);
  padding: 80px 48px 30px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245, 239, 227, 0.1);
}
.footer-brand .fname {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 6px;
}
.footer-brand .fsince {
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 22px;
}
.footer-brand address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-brand address a { color: inherit; text-decoration: none; }
.footer-brand address a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(245, 239, 227, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 227, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}
.socials a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(186, 117, 23, 0.1);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 13px; }
.footer-col a {
  color: rgba(245, 239, 227, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }
.newsletter p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.news-form {
  display: flex;
  border: 1px solid rgba(245, 239, 227, 0.2);
}
.news-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 14px;
  color: var(--cream);
  font-family: inherit;
  font-size: 13px;
  outline: none;
}
.news-form input::placeholder { color: rgba(245, 239, 227, 0.4); }
.news-form button {
  background: var(--burgundy);
  border: none;
  color: var(--cream);
  padding: 0 18px;
  cursor: pointer;
  transition: background 0.3s;
}
.news-form button:hover { background: var(--burgundy-light); }
.footer-bottom {
  max-width: 1280px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 1px;
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom a { color: rgba(245, 239, 227, 0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }

/* Disclaimer legal — Beber com moderação */
.footer-legal-notice {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 16px;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(245, 239, 227, 0.55);
  text-align: center;
  border-top: 1px solid rgba(245, 239, 227, 0.08);
}
.footer-version {
  margin-left: 10px;
  font-size: 10px;
  letter-spacing: 0.5px;
  opacity: 0.35;
  font-variant-numeric: tabular-nums;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled, nav.solid { padding: 12px 24px; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 24px;
    gap: 18px;
    border-top: 1px solid rgba(26, 22, 20, 0.08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { color: var(--ink); }
  .mobile-toggle { display: block; }
  .hero, .page-header { padding-left: 24px; padding-right: 24px; }
  .page-header { padding-top: 140px; padding-bottom: 70px; }
  .hero-trust { right: 24px; bottom: 24px; gap: 18px; }
  .section, footer, .cta-band { padding-left: 24px; padding-right: 24px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .exp-grid, .reviews-grid, .wine-grid, .packages-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-grid, .stay-hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 60px 24px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .wine-detail { grid-template-columns: 1fr; gap: 30px; padding: 36px 28px; text-align: center; }
  .wine-detail .bottle-wrap { margin: 0 auto; }
  .wine-specs { text-align: left; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .package.featured { transform: none; }
  .package.featured:hover { transform: translateY(-6px); }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .story-stats { grid-template-columns: 1fr; gap: 18px; }
  .hero-trust { display: none; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-vine, .g-house { grid-column: span 1; }
  .g-vine { grid-row: span 1; }
  .nav-right { gap: 10px; }
  .lang-switch { gap: 5px; font-size: 10px; letter-spacing: 0.5px; }
}

/* === LODGING UNITS (dinâmico de Firestore) === */
.lodging-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}
.lodging-unit {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.lodging-unit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.lodging-unit .lu-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--cream);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: var(--stone);
  font-size: 18px;
}
.lodging-unit .lu-clickable { cursor: zoom-in; }
.lodging-unit .lu-expand {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 3;
}
.lodging-unit:hover .lu-expand { opacity: 1; }
@media (hover: none) {
  .lodging-unit .lu-expand { opacity: 1; }
}

/* Carousel de fotos por unidade */
.lodging-unit .lu-carousel {
  display: block;
  position: relative;
  overflow: hidden;
}
.lodging-unit .lu-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.lodging-unit .lu-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.lodging-unit .lu-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--burgundy-deep, #5C4F31);
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  z-index: 2;
}
.lodging-unit .lu-arrow:hover { background: #fff; }
.lodging-unit .lu-prev { left: 10px; }
.lodging-unit .lu-next { right: 10px; }
.lodging-unit:hover .lu-arrow { opacity: 1; }
.lodging-unit .lu-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.3px;
}
.lodging-unit .lu-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.lodging-unit .lu-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lodging-unit .lu-dot.active {
  background: #fff;
  transform: scale(1.3);
}
/* Mobile/touch: setas sempre visiveis (sem hover) */
@media (hover: none) {
  .lodging-unit .lu-arrow { opacity: 1; background: rgba(255, 255, 255, 0.92); }
}
.lodging-unit .lu-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.lodging-unit h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.lodging-unit .lu-meta {
  font-size: 12px;
  color: var(--stone);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.lodging-unit > .lu-body > p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 14px;
  white-space: pre-line; /* preserva quebras de linha/parágrafos do backoffice */
}
.lodging-unit .lu-amenities {
  list-style: none;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.lodging-unit .lu-amenities li {
  font-size: 12px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.lodging-unit .lu-amenities li i { color: var(--gold); font-size: 14px; }
.lodging-unit .lu-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.lodging-unit .lu-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--burgundy);
}
.lodging-unit .lu-price small { font-size: 11px; color: var(--stone); font-family: 'Poppins', sans-serif; }

/* === BOOKING MODAL (reservas de provas) === */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(56, 63, 72, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.booking-modal.open { display: flex; animation: bmFadeIn 0.2s ease; }
@keyframes bmFadeIn { from { opacity: 0; } to { opacity: 1; } }
.booking-modal .bm-body {
  background: var(--paper);
  border-radius: 6px;
  padding: 26px 28px 20px;
  max-width: 560px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  position: relative;
  animation: bmSlideUp 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
@keyframes bmSlideUp {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.booking-modal .bm-close {
  position: absolute;
  top: 10px; right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--stone);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.booking-modal .bm-close:hover { color: var(--burgundy); }
.booking-modal .bm-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}
.booking-modal .bm-intro {
  font-size: 12px;
  color: var(--stone);
  margin-bottom: 22px;
  line-height: 1.5;
}
.booking-modal .bm-field { margin-bottom: 10px; }
.booking-modal .bm-title { margin-bottom: 4px; }
.booking-modal .bm-intro { margin-bottom: 14px; }
.booking-modal .bm-field label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--stone);
  margin-bottom: 5px;
  font-weight: 500;
}
.booking-modal .bm-field input,
.booking-modal .bm-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  font-family: inherit;
  font-size: 14px;
  background: white;
  color: var(--ink);
  box-sizing: border-box;
}
.booking-modal .bm-field input:focus,
.booking-modal .bm-field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(135, 119, 81, 0.15);
}
.booking-modal .bm-field input[readonly] {
  background: var(--cream);
  cursor: default;
  font-weight: 500;
}
.booking-modal .bm-field textarea { resize: vertical; min-height: 64px; }
.booking-modal .bm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking-modal .bm-row .bm-field { margin-bottom: 14px; }
.booking-modal .bm-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}
.booking-modal .bm-btn-cancel,
.booking-modal .bm-btn-submit {
  padding: 12px 22px;
  letter-spacing: 1.5px;
  font-size: 11px;
  border-radius: 3px;
  border: 1px solid;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
}
.booking-modal .bm-btn-cancel {
  background: transparent;
  color: var(--stone);
  border-color: var(--cream-dark);
}
.booking-modal .bm-btn-cancel:hover {
  background: var(--cream);
  color: var(--ink);
}
.booking-modal .bm-btn-submit {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}
.booking-modal .bm-btn-submit:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
}
.booking-modal .bm-btn-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.booking-modal .bm-feedback {
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 3px;
  margin-top: 6px;
  display: none;
  line-height: 1.4;
}
.booking-modal .bm-feedback.success {
  display: block;
  background: rgba(74, 122, 58, 0.1);
  color: #2D5A1B;
  border-left: 3px solid #4A7A3A;
}
.booking-modal .bm-feedback.error {
  display: block;
  background: rgba(184, 58, 46, 0.1);
  color: #872C22;
  border-left: 3px solid #B83A2E;
}
@media (max-width: 540px) {
  .booking-modal .bm-row { grid-template-columns: 1fr; gap: 0; }
  .booking-modal .bm-body { padding: 28px 22px 22px; }
}

/* === CHAT WIDGET (FAQ bot) === */
.qpc-chat-fab {
  position: fixed;
  bottom: 24px; right: 92px;          /* à esquerda do cart FAB */
  width: 56px; height: 56px;
  background: var(--burgundy);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.2s, background 0.2s, opacity 0.2s;
}
.qpc-chat-fab:hover { transform: translateY(-2px); background: var(--burgundy-deep); }
.qpc-chat-fab i { font-size: 22px; }
.qpc-chat-fab.hidden { opacity: 0; pointer-events: none; transform: scale(0.8); }

.qpc-chat-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 380px; max-width: calc(100vw - 32px);
  height: 560px; max-height: calc(100vh - 80px);
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  display: flex; flex-direction: column;
  z-index: 250;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s, opacity 0.25s;
  overflow: hidden;
}
.qpc-chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.qcp-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  background: var(--burgundy);
  color: var(--cream);
}
.qcp-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
}
.qcp-sub { font-size: 11px; opacity: 0.7; letter-spacing: 0.5px; }
.qcp-actions { display: flex; gap: 4px; }
.qcp-actions button {
  background: transparent; border: none; color: var(--cream);
  width: 32px; height: 32px;
  border-radius: 4px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.15s;
}
.qcp-actions button:hover { background: rgba(255,255,255,0.15); }

.qcp-log {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--paper);
  scroll-behavior: smooth;
}
.qcp-msg { display: flex; max-width: 85%; }
.qcp-msg-user { align-self: flex-end; }
.qcp-msg-assistant { align-self: flex-start; }
.qcp-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  word-wrap: break-word;
}
.qcp-msg-user .qcp-bubble {
  background: var(--burgundy);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}
.qcp-msg-assistant .qcp-bubble {
  background: var(--cream-dark);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.qcp-bubble a { color: inherit; text-decoration: underline; }

.qcp-bubble-typing { padding: 12px 16px; display: flex; gap: 4px; align-items: center; }
.qcp-bubble-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--burgundy-deep);
  opacity: 0.4;
  animation: qcpDot 1.2s infinite;
}
.qcp-bubble-typing span:nth-child(2) { animation-delay: 0.15s; }
.qcp-bubble-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes qcpDot {
  0%, 60%, 100% { opacity: 0.4; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.qcp-suggested {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 0 16px 10px;
  background: var(--paper);
}
.qcp-chip {
  background: var(--cream-dark);
  border: 1px solid var(--border, rgba(0,0,0,0.08));
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}
.qcp-chip:hover { background: var(--gold-light); color: white; border-color: var(--gold); }

.qcp-form {
  display: flex; gap: 8px;
  padding: 12px 16px;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.qcp-input {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 22px;
  padding: 9px 16px;
  font-size: 14px;
  font-family: inherit;
  background: white;
  color: var(--ink);
}
.qcp-input:focus { outline: none; border-color: var(--burgundy); }
.qcp-send {
  width: 40px; height: 40px;
  border: none; border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.15s;
}
.qcp-send:hover:not(:disabled) { background: var(--burgundy-deep); }
.qcp-send:disabled { opacity: 0.5; cursor: not-allowed; }
.qcp-note {
  padding: 6px 16px 10px;
  font-size: 10px;
  color: var(--ink);
  opacity: 0.5;
  text-align: center;
  background: white;
}

@media (max-width: 560px) {
  .qpc-chat-fab { right: 24px; bottom: 92px; }   /* empilhar acima do cart no mobile */
  .qpc-chat-panel {
    bottom: 0; right: 0; left: 0;
    width: 100%; max-width: 100%;
    height: 100vh; max-height: 100vh;
    border-radius: 0;
  }
}

/* === LOJA: CART FAB === */
.qpc-cart-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--burgundy);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.2s, background 0.2s;
}
.qpc-cart-fab:hover { transform: translateY(-2px); background: var(--burgundy-deep); }
.qpc-cart-fab i { font-size: 22px; }
.qpc-cart-fab .qpc-cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  background: var(--gold);
  color: #2A2014;
  font-size: 11px;
  font-weight: 600;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border: 2px solid var(--paper);
}
.qpc-cart-fab:not(.has-items) .qpc-cart-badge { display: none; }
/* Cesto vazio: esconder o FAB inteiro (evita sobrepor CTAs no fundo, sobretudo
   mobile). Reaparece assim que há itens — refreshBadge() alterna .has-items. */
.qpc-cart-fab:not(.has-items) { display: none; }

/* === LOJA: CART DRAWER === */
.qpc-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}
.qpc-cart-drawer.open { display: block; }
.qpc-cart-drawer .qcd-overlay {
  position: absolute;
  inset: 0;
  background: rgba(56, 63, 72, 0.6);
  animation: qcdFadeIn 0.2s ease;
}
@keyframes qcdFadeIn { from { opacity: 0 } to { opacity: 1 } }
.qpc-cart-drawer .qcd-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  animation: qcdSlide 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.18);
}
@keyframes qcdSlide { from { transform: translateX(100%) } to { transform: translateX(0) } }
.qpc-cart-drawer .qcd-head {
  padding: 22px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--cream-dark);
}
.qpc-cart-drawer .qcd-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.qpc-cart-drawer .qcd-close {
  background: none;
  border: none;
  color: var(--stone);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.qpc-cart-drawer .qcd-close:hover { color: var(--burgundy); }
.qpc-cart-drawer .qcd-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
}
.qpc-cart-drawer .qcd-empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--stone);
  font-size: 13px;
}
.qpc-cart-drawer .qcd-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: flex-start;
}
.qpc-cart-drawer .qcd-img {
  width: 64px;
  aspect-ratio: 1;
  background: var(--cream);
  background-size: cover;
  background-position: center;
  border-radius: 3px;
}
.qpc-cart-drawer .qcd-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.qpc-cart-drawer .qcd-price { font-size: 11px; color: var(--stone); margin-bottom: 6px; }
.qpc-cart-drawer .qcd-qty { display: flex; align-items: center; gap: 4px; }
.qpc-cart-drawer .qcd-q-dec, .qpc-cart-drawer .qcd-q-inc {
  width: 24px; height: 24px;
  border: 1px solid var(--cream-dark);
  background: white;
  border-radius: 3px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink);
  padding: 0;
}
.qpc-cart-drawer .qcd-q-dec:hover, .qpc-cart-drawer .qcd-q-inc:hover { background: var(--cream); }
.qpc-cart-drawer .qcd-q-input {
  width: 44px;
  height: 24px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  font-family: inherit;
  font-size: 12px;
  -moz-appearance: textfield;
}
.qpc-cart-drawer .qcd-q-input::-webkit-outer-spin-button,
.qpc-cart-drawer .qcd-q-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qpc-cart-drawer .qcd-rm {
  background: transparent;
  border: none;
  color: var(--stone);
  cursor: pointer;
  padding: 4px;
  margin-left: 6px;
}
.qpc-cart-drawer .qcd-rm:hover { color: var(--danger, #B83A2E); }
.qpc-cart-drawer .qcd-line {
  font-weight: 500;
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
  margin-left: auto;
}
.qpc-cart-drawer .qcd-foot {
  padding: 18px 24px 22px;
  border-top: 1px solid var(--cream-dark);
  background: white;
}
.qpc-cart-drawer .qcd-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  margin-bottom: 4px;
}
.qpc-cart-drawer .qcd-total strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--burgundy);
}
.qpc-cart-drawer .qcd-ship {
  font-size: 11px;
  color: var(--stone);
  margin-bottom: 14px;
}
.qpc-cart-drawer .qcd-checkout {
  width: 100%;
  padding: 14px;
  background: var(--burgundy);
  color: var(--cream);
  border: 1px solid var(--burgundy);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.qpc-cart-drawer .qcd-checkout:hover { background: var(--burgundy-deep); }
.qpc-cart-drawer .qcd-checkout:disabled { opacity: 0.5; cursor: not-allowed; }
.qpc-cart-drawer .qcd-clear {
  width: 100%;
  margin-top: 8px;
  background: transparent;
  border: none;
  color: var(--stone);
  font-size: 11px;
  cursor: pointer;
  text-decoration: underline;
  padding: 6px;
}
.qpc-cart-drawer .qcd-clear:hover { color: var(--danger, #B83A2E); }

/* === LOJA: CHECKOUT MODAL (usa estrutura do booking) === */
.qco-modal {
  position: fixed;
  inset: 0;
  background: rgba(56, 63, 72, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.qco-modal.open { display: flex; animation: bmFadeIn 0.2s ease; }
.qco-modal .qco-body {
  background: var(--paper);
  border-radius: 6px;
  padding: 24px 28px 20px;
  max-width: 620px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  position: relative;
  animation: bmSlideUp 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.qco-modal .qco-close {
  position: absolute;
  top: 10px; right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--stone);
  cursor: pointer;
  padding: 4px 8px;
}
.qco-modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}
.qco-modal .co-summary {
  background: var(--cream);
  padding: 12px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.qco-modal .co-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink);
  padding: 3px 0;
}
.qco-modal .co-row.co-total {
  border-top: 1px solid var(--cream-dark);
  padding-top: 8px;
  margin-top: 6px;
  font-size: 15px;
}
.qco-modal .co-row.co-total strong {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--burgundy);
}
.qco-modal .bm-field { margin-bottom: 12px; }
.qco-modal .bm-field label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--stone);
  margin-bottom: 4px;
}
.qco-modal .bm-field input,
.qco-modal .bm-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  font-family: inherit;
  font-size: 14px;
  background: white;
  color: var(--ink);
  box-sizing: border-box;
}
.qco-modal .bm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.qco-modal .co-age {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(168, 134, 70, 0.12);
  border: 2px solid var(--gold);
  padding: 14px 16px;
  border-radius: 4px;
  margin-top: 14px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.qco-modal .co-age:hover { background: rgba(168, 134, 70, 0.2); }
.qco-modal .co-age input {
  margin: 2px 0 0 0;
  width: 18px; height: 18px;
  accent-color: var(--burgundy);
  flex-shrink: 0;
  cursor: pointer;
}
.qco-modal .co-age:has(input:checked) {
  background: rgba(74, 27, 12, 0.08);
  border-color: var(--burgundy);
}
.qco-modal .bm-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }
.qco-modal .bm-btn-cancel, .qco-modal .bm-btn-submit {
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid;
}
.qco-modal .bm-btn-cancel {
  background: transparent;
  color: var(--stone);
  border-color: var(--cream-dark);
}
.qco-modal .bm-btn-submit {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}
@media (max-width: 540px) {
  .qco-modal .bm-row { grid-template-columns: 1fr; gap: 0; }
}

/* === ADD TO CART BUTTON nos vinhos === */
.wine-info .add-to-cart {
  background: var(--burgundy);
  color: var(--cream);
  border: 1px solid var(--burgundy);
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.wine-info .add-to-cart:hover { background: var(--burgundy-deep); border-color: var(--burgundy-deep); }
.wine-info .add-to-cart:disabled { opacity: 0.7; cursor: default; }

/* Aviso no checkout sobre pagamento offline */
.qco-modal .co-payment-note {
  background: rgba(168, 134, 70, 0.08);
  border-left: 3px solid var(--gold);
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--burgundy-deep);
  margin-top: 12px;
  border-radius: 0 3px 3px 0;
}

/* === GALERIA: SECÇÕES DE ÁLBUNS === */
#albumsContainer {
  max-width: 1280px;
  margin: 0 auto;
}
.album-section {
  margin-bottom: 60px;
}
.album-section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
}
.album-section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}
.album-section-head .album-date {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-top: 6px;
}
.album-section-head .album-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--stone);
  margin: 0;
  max-width: 640px;
  justify-self: end;
}
.album-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.album-photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
  cursor: zoom-in;
  border-radius: 3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.album-photo:hover {
  transform: scale(0.98);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.album-photo:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 700px) {
  .album-section-head { grid-template-columns: 1fr; gap: 12px; }
  .album-section-head .album-desc { justify-self: stretch; }
  .album-section-head h2 { font-size: 26px; }
  .album-photos { grid-template-columns: repeat(2, 1fr); }
}

/* === GALERIA: LIGHTBOX === */
.qpc-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.96);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  user-select: none;
}
.qpc-lightbox.open { display: flex; animation: lbFadeIn 0.18s ease; }
@keyframes lbFadeIn { from { opacity: 0 } to { opacity: 1 } }
.qpc-lightbox .lb-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 80px;
  box-sizing: border-box;
}
.qpc-lightbox .lb-stage img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  cursor: zoom-in;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  -webkit-user-drag: none;
}
.qpc-lightbox .lb-close,
.qpc-lightbox .lb-prev,
.qpc-lightbox .lb-next {
  position: absolute;
  /* Acima da imagem: com zoom, o `transform: scale()` da img cria um stacking
     context e, vindo depois no DOM, tapava as setas/fechar. z-index mantém-nos por cima. */
  z-index: 2;
  background: rgba(245, 239, 227, 0.1);
  border: 1px solid rgba(245, 239, 227, 0.25);
  color: var(--cream);
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.2s, border-color 0.2s;
}
.qpc-lightbox .lb-close:hover,
.qpc-lightbox .lb-prev:hover,
.qpc-lightbox .lb-next:hover {
  background: rgba(245, 239, 227, 0.2);
  border-color: rgba(245, 239, 227, 0.5);
}
.qpc-lightbox .lb-close {
  top: 18px; right: 22px;
  width: 42px; height: 42px;
  font-size: 24px;
  line-height: 1;
}
.qpc-lightbox .lb-prev, .qpc-lightbox .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  font-size: 24px;
}
.qpc-lightbox .lb-prev { left: 22px; }
.qpc-lightbox .lb-next { right: 22px; }
.qpc-lightbox .lb-caption {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 14px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-align: center;
  max-width: 80%;
  padding: 0 16px;
}
.qpc-lightbox .lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 239, 227, 0.6);
  font-size: 11px;
  letter-spacing: 2px;
}
@media (max-width: 700px) {
  .qpc-lightbox .lb-stage { padding: 50px 14px; }
  .qpc-lightbox .lb-prev { left: 8px; width: 40px; height: 40px; }
  .qpc-lightbox .lb-next { right: 8px; width: 40px; height: 40px; }
  .qpc-lightbox .lb-close { top: 12px; right: 12px; }
  .qpc-lightbox .lb-caption { font-size: 13px; bottom: 44px; }
}


/* === MOBILE QUICK WINS === */
/* Touch targets responsivos: remove o delay de 300ms em iOS e o flash azul ao tocar */
.btn, .btn-reserve, .exp-link, .add-to-cart, .mobile-toggle, .nav-menu a,
.exp-card, .package, .experience, .lodging-unit {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(135, 119, 81, 0.15);
}
/* Inputs em iOS não fazem zoom se font-size >= 16px */
@media (max-width: 600px) {
  input[type=text], input[type=email], input[type=tel], input[type=url],
  input[type=number], input[type=date], input[type=search], select, textarea {
    font-size: 16px;
  }
  .hero h1 { letter-spacing: -0.5px; }
  .hero-sub { font-size: 16px; }
  .section { padding-top: 60px; padding-bottom: 60px; }
  .page-header { padding-top: 120px; padding-bottom: 50px; }
}
/* Quem prefere menos animação não fica com transforms hover nem fades agressivos */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .package.featured, .package.featured:hover,
  .exp-card:hover, .package:hover, .experience:hover, .lodging-unit:hover,
  .wine-detail:hover {
    transform: none !important;
  }
}
