/* ============================================================
   HYGGE EXPERIENCE VIK — Stylesheet
   Paleta: #0a0a0a (preto) · #6b1a2a (borgoña) · #c9a84c (dourado)
   Fontes: Cormorant Garamond (serif) · Jost (sans-serif)
   ============================================================ */

/* ─── Reset & Variables ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0a0a0a;
  --black-2:    #111111;
  --black-3:    #1a1a1a;
  --black-4:    #242424;
  --burgundy:   #6b1a2a;
  --burgundy-l: #8a2235;
  --gold:       #c9a84c;
  --gold-l:     #e0c06e;
  --gold-d:     #a88930;
  --white:      #f5f0e8;
  --white-dim:  #c8bfb0;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container:  1200px;
  --radius:     2px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.hidden { display: none !important; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
}

.accent { color: var(--gold); }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--white-dim);
}

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-label {
  font-family: 'Cormorant SC', var(--serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
}

.section-subtitle {
  margin-top: 1rem;
  max-width: 60ch;
  margin-inline: auto;
  color: var(--white-dim);
  font-size: 1rem;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-full { width: 100%; justify-content: center; }

.btn-whatsapp {
  background: transparent;
  color: #25d366;
  border: 1px solid #25d366;
  margin-top: 1.5rem;
}

.btn-whatsapp:hover {
  background: #25d366;
  color: var(--black);
  transform: translateY(-2px);
}

/* ─── Scroll margin for fixed header ────────────────────── */
section[id] {
  scroll-margin-top: 80px;
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Header / Nav ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1.25rem 0;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
  padding: 0.75rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition-fast);
}

.nav-logo:hover { opacity: 0.8; }

.nav-logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(73%) sepia(32%) saturate(492%) hue-rotate(357deg) brightness(96%) contrast(88%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active { color: var(--gold); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-gallery {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
  animation: slowzoom 10s ease-in-out infinite alternate;
}

.hero-bg-img.active { opacity: 1; }

@keyframes slowzoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.4) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.7) 80%,
    rgba(10,10,10,0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-pretitle {
  font-family: 'Cormorant SC', var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}

.hero-title {
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--white-dim);
  font-size: 0.75em;
}

.hero-vik {
  display: block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.35em;
  font-size: 0.85em;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 2.5rem;
  font-size: 0.8rem;
  color: var(--white-dim);
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta-sep { color: var(--gold); opacity: 0.5; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.7;
  animation: fadeInUp 1s 2s both;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 0.7; transform: translateX(-50%) translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* Hero availability indicator */
.hero-availability {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.85;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.availability-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

/* ─── Image Frames ───────────────────────────────────────── */
.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-frame:hover img { transform: scale(1.04); }

/* ─── VIK Award Badge ────────────────────────────────────── */
.vik-award {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 2px;
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold);
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.vik-award:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
}

.vik-award svg {
  flex-shrink: 0;
  color: var(--gold);
}

.vik-award-title {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.vik-award-sub {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  border-left: 1px solid rgba(201, 168, 76, 0.3);
  padding-left: 0.6rem;
}

/* ─── Sobre ──────────────────────────────────────────────── */
.sobre {
  background: var(--black-2);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.sobre-text p { color: var(--white-dim); margin-bottom: 1.2rem; max-width: 68ch; }
.sobre-text strong { color: var(--white); font-weight: 500; }

.sobre-origin {
  border-left: 2px solid rgba(201, 168, 76, 0.35);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}

.sobre-origin p {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--white-dim);
  margin-bottom: 0 !important;
  line-height: 1.7;
}

.sobre-origin strong {
  color: var(--gold) !important;
  font-style: normal;
}

.sobre-details {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.detail-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 0.5rem;
  text-align: center;
}

.detail-divider {
  width: 1px;
  background: rgba(201, 168, 76, 0.2);
  align-self: stretch;
}

.detail-number {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.detail-number.price { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.detail-label {
  font-size: 0.7rem;
  color: var(--white-dim);
  line-height: 1.4;
}

.sobre-image {
  position: relative;
  height: 520px;
}

.sobre-image .image-frame {
  position: absolute;
  width: 75%;
  height: 80%;
  top: 0;
  right: 0;
}

.sobre-image .image-frame--offset {
  width: 55%;
  height: 55%;
  top: auto;
  bottom: 0;
  right: auto;
  left: 0;
  border: 3px solid var(--black-2);
}

/* ─── Vinhos ─────────────────────────────────────────────── */
.vinhos {
  background: var(--black);
  position: relative;
}

.vinhos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

.vinhos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vinho-card {
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.vinho-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
}

.vinho-card--featured {
  border-color: rgba(201, 168, 76, 0.35);
  background: linear-gradient(135deg, rgba(107, 26, 42, 0.15), rgba(10,10,10,0));
  position: relative;
}

.vinho-card--featured::before {
  content: 'Destaque';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 0 0 4px 4px;
}

.vinho-card-inner {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  height: 100%;
}


.vinho-bottle {
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.vinho-bottle img {
  max-height: 100%;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.6));
  transition: transform var(--transition);
}

.vinho-card:hover .vinho-bottle img {
  transform: translateY(-6px);
}

.vinho-label-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy-l);
  border: 1px solid var(--burgundy);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.vinho-label-tag--gold {
  color: var(--gold-d);
  border-color: var(--gold-d);
}

.vinho-label-tag--rose {
  color: var(--white-dim);
  border-color: rgba(200,191,176,0.4);
}

.vinho-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.25rem;
}

.vinho-subtitle {
  font-size: 0.75rem;
  color: var(--white-dim);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.vinho-divider {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin-bottom: 1.25rem;
}

.vinho-desc {
  color: var(--white-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.vinho-notes {
  margin-top: auto;
}

.vinho-notes li {
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0.8;
  letter-spacing: 0.05em;
  padding: 0.2rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

/* ─── Anfitrião ──────────────────────────────────────────── */
.anfitriao {
  background: var(--black-3);
  overflow: hidden;
}

.anfitriao-text {
  max-width: 72ch;
}

/* ─── Carrossel Quem Somos ───────────────────────────────── */
.qs-carousel {
  position: relative;
  margin: 2.5rem 0;
  overflow: hidden;
}

.qs-carousel-track {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 clamp(1rem, 4vw, 3rem);
  overscroll-behavior-x: contain;
  /* ocultar scrollbar mantendo funcionalidade */
  scrollbar-width: none;
}
.qs-carousel-track::-webkit-scrollbar { display: none; }

.qs-carousel-item {
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 360px);
  aspect-ratio: 3/4;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 2px;
  cursor: pointer;
}

.qs-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.qs-carousel-item:hover img {
  transform: scale(1.04);
}

/* Setas de navegação */
.qs-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(10, 8, 5, 0.75);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  backdrop-filter: blur(6px);
}
.qs-carousel-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}
.qs-carousel-btn:disabled {
  opacity: 0.2;
  cursor: default;
}
.qs-carousel-btn--prev { left: 0.5rem; }
.qs-carousel-btn--next { right: 0.5rem; }

/* Dots */
.qs-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
}
.qs-carousel-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.qs-carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* Fade lateral para indicar overflow */
.qs-carousel::before,
.qs-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 1.6rem; /* deixa os dots visíveis */
  width: clamp(1rem, 3vw, 2.5rem);
  z-index: 5;
  pointer-events: none;
}
.qs-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--black-3), transparent);
}
.qs-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--black-3), transparent);
}

.image-frame--portrait {
  aspect-ratio: 3/4;
  max-height: 600px;
}

.anfitriao-badge { display: none; }

.anfitriao-text .section-label { margin-top: 0; }
.anfitriao-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  overflow-wrap: break-word;
}
.anfitriao-text p { color: var(--white-dim); margin-bottom: 1.1rem; }
.anfitriao-text strong { color: var(--white); font-weight: 500; }

.anfitriao-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
  font-size: 1.5rem;
}

.anfitriao-flags span {
  transition: transform var(--transition-fast);
  cursor: default;
}

.anfitriao-flags span:hover { transform: scale(1.3); }

.anfitriao-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  color: var(--white-dim) !important;
  font-family: var(--serif);
  font-size: 1.05rem;
}

/* ─── A Velada ───────────────────────────────────────────── */
.velada {
  position: relative;
  background:
    linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)),
    url('../assets/images/texturas_suelos.jpg') center/cover fixed;
}

/* iOS Safari não suporta background-attachment: fixed */
@supports (-webkit-touch-callout: none) {
  .velada {
    background:
      linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)),
      url('../assets/images/texturas_suelos.jpg') center/cover scroll;
  }
}

.velada-timeline {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  margin-top: 3.5rem;
}

.velada-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.25) 5%, rgba(201,168,76,0.25) 95%, transparent);
}

.velada-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  position: relative;
}

.velada-step:last-child { margin-bottom: 0; }

.velada-marker {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.1rem;
  flex-shrink: 0;
}

.velada-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  background: var(--black-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--white-dim);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.velada-marker--gold .velada-num {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.velada-content {
  padding-bottom: 0.5rem;
}

.velada-wine-label {
  font-family: 'Cormorant SC', var(--serif);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.velada-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.velada-desc {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.velada-desc strong { color: var(--white); font-weight: 500; }

.velada-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.velada-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.velada-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.velada-option {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 0.65rem 0.85rem;
  border-radius: 2px;
}

.velada-option-tag {
  font-family: var(--serif);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.6;
}

.velada-option-text {
  font-family: var(--serif);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.5;
}

.velada-note {
  font-size: 0.78rem;
  color: rgba(200,191,176,0.6);
  line-height: 1.6;
  border-left: 1px solid rgba(201,168,76,0.2);
  padding-left: 0.75rem;
  margin-top: 0;
}

.velada-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.12);
  max-width: 720px;
  margin-inline: auto;
}

.velada-duration {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--white-dim);
}

.velada-duration svg { color: var(--gold); flex-shrink: 0; }
.velada-duration strong { color: var(--white); font-weight: 500; }

/* ─── Vídeos ─────────────────────────────────────────────── */
.videos {
  background: var(--black);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

.video-item--main {
  grid-column: 1 / -1;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.video-wrapper--portrait {
  padding-bottom: 177.78%; /* 9:16 */
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.video-placeholder {
  aspect-ratio: 9/16;
  background: var(--black-3);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: border-color var(--transition);
}

.video-placeholder:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.video-placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.5;
}

.video-placeholder p {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.5;
}

.video-caption {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--white-dim);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
}

/* ─── Galeria ────────────────────────────────────────────── */
.galeria {
  background: var(--black-2);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 280px);
  gap: 6px;
  margin-top: 3rem;
}

/* Visual interest: alternate wide items per row */
.galeria-item:nth-child(1)  { grid-column: span 2; }
.galeria-item:nth-child(6)  { grid-column: span 2; }
.galeria-item:nth-child(11) { grid-column: span 2; }

.galeria-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--black-3);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.85) saturate(0.8);
}

.galeria-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(107, 26, 42, 0);
  transition: background 0.4s ease;
}

.galeria-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

.galeria-item:hover::after {
  background: rgba(201, 168, 76, 0.08);
}

/* ─── Lightbox ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.3rem;
}

.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ─── Contato / Formulário ───────────────────────────────── */
.contato {
  background: var(--black-3);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contato-info .section-title { text-align: left; margin-bottom: 1.25rem; }
.contato-info p { color: var(--white-dim); margin-bottom: 1rem; }
.contato-info strong { color: var(--white); }

.contato-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contato-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--white-dim);
}

.contato-detail-item svg { color: var(--gold); flex-shrink: 0; }

/* Form */
.contato-form-wrap {
  background: var(--black-4);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
}

.required { color: var(--gold); }

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.72rem;
  color: var(--white-dim);
  opacity: 0.6;
  text-align: center;
  margin-top: 1rem;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.form-success p { color: var(--white-dim); }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-img {
  height: 140px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: brightness(0) saturate(100%) invert(73%) sepia(32%) saturate(492%) hue-rotate(357deg) brightness(96%) contrast(88%);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.footer-info h4,
.footer-social h4 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-info ul li {
  font-size: 0.85rem;
  color: var(--white-dim);
  padding: 0.2rem 0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--white-dim);
  transition: color var(--transition-fast);
}

.social-link:hover { color: var(--gold); }

.social-link--soon {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--white-dim);
  opacity: 0.5;
}

.footer-vik-credit a {
  color: var(--gold);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-vik-credit a:hover { opacity: 1; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vinhos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vinho-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin-inline: auto;
  }

  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .galeria-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: 220px;
  }

  .galeria-item:nth-child(1)  { grid-column: span 2; }
  .galeria-item:nth-child(6)  { grid-column: span 2; }
  .galeria-item:nth-child(11) { grid-column: span 2; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Mobile readability */
  body { font-weight: 400; }
  .section-label { font-size: 0.88rem; }
  /* iOS auto-zoom prevention: inputs must be ≥ 16px */
  .form-group input,
  .form-group textarea { font-size: 1rem; }
  .detail-label { font-size: 0.8rem; }
  .countdown-label { font-size: 0.72rem; }
  .vinho-notes li { font-size: 0.78rem; }
  .hero-pretitle { font-size: 0.82rem; }
  .hero-availability { font-size: 0.82rem; opacity: 1; }
  .btn { font-size: 0.85rem; padding: 1rem 2.2rem; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-logo-img { height: 60px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(300px, 85vw);
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    border-left: 1px solid rgba(201, 168, 76, 0.15);
    transition: right var(--transition);
    z-index: 99;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
  }

  .nav-cta {
    margin-top: 1rem;
    padding: 0.7rem 1.5rem !important;
  }

  /* Sections */
  .sobre-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .sobre-image {
    height: 350px;
    order: -1;
  }

  .image-frame--portrait {
    aspect-ratio: 4/3;
    max-height: none;
  }

  .qs-carousel-btn { display: none; }
  .qs-carousel-item { width: 88vw; }
  .qs-carousel-track { padding: 0 clamp(0.75rem, 3vw, 1.5rem); }

  /* Velada */
  .velada-timeline::before { left: 20px; }
  .velada-step { grid-template-columns: 40px 1fr; gap: 1rem; }
  .velada-num { width: 32px; height: 32px; font-size: 0.75rem; }
  .velada-options { grid-template-columns: 1fr; }
  .velada-footer { flex-direction: column; align-items: flex-start; }

  /* Vinhos */
  .vinhos-grid { grid-template-columns: 1fr; }
  .vinho-card:last-child { max-width: 100%; grid-column: auto; }
  .vinho-label-tag { font-size: 0.72rem; }
  .vinho-subtitle { font-size: 0.82rem; }

  /* Videos */
  .videos-grid {
    max-width: 100%;
    gap: 0.75rem;
  }

  /* Galeria */
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }
  .galeria-item { aspect-ratio: 1; }
  .galeria-item:nth-child(1),
  .galeria-item:nth-child(6),
  .galeria-item:nth-child(11) { grid-column: span 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Lightbox buttons */
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.35) 40%,
      rgba(10,10,10,0.72) 80%,
      rgba(10,10,10,0.97) 100%
    );
  }

  .hero-pretitle {
    font-size: 0.78rem;
  }

  .hero-meta {
    font-size: 0.92rem;
    gap: 0.4rem;
    flex-direction: column;
  }

  .hero-meta-sep { display: none; }

  .hero-availability {
    font-size: 0.8rem;
    opacity: 1;
  }

  .sobre-details { flex-direction: column; }
  .detail-divider { width: 100%; height: 1px; }

  .videos-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .video-item--main { grid-column: 1; }

  .video-wrapper--portrait {
    padding-bottom: min(177.78%, 80vh);
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--burgundy-l); }

/* ─── Selection ──────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--black); }

/* ─── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
}

/* ─── Hero Infobox ───────────────────────────────────────── */
.hero-infobox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.4rem;
  margin-bottom: 2rem;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(4px);
  max-width: 480px;
}

.hero-infobox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--white-dim);
  white-space: nowrap;
}

.hero-infobox-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hero-infobox {
    max-width: 100%;
    gap: 0.5rem 1rem;
  }
  .hero-infobox-item { font-size: 0.9rem; }
}

/* ─── Countdown ──────────────────────────────────────────── */
.hero-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.5rem;
}

.countdown-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.countdown-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.25rem;
}

.countdown-sep {
  font-size: 1.8rem;
  color: var(--gold-d);
  line-height: 1;
  margin-bottom: 1rem;
}

.countdown-ended {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ─── Testimonios ────────────────────────────────────────── */
.testimonios { background: var(--black-2); }

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonio-card {
  background: var(--black-3);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.testimonio-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--white-dim);
}

.testimonio-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonio-initials {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonio-name {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .testimonios-grid { grid-template-columns: 1fr; }

  .hero-countdown { gap: 0.3rem; }
  .countdown-block { min-width: 2.8rem; }
  .countdown-label { font-size: 0.75rem; }
  .hero-pretitle { font-size: 0.85rem; }
  .section-label { font-size: 0.8rem; }
}
