/* ============================================================
   TEMPORADA DA VINDIMA - Família Eloy
   CSS Principal · Dark Mode Sofisticado
   ============================================================ */

/* ---------- RESET & VARIÁVEIS ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Modo Escuro (Default) */
  --bg-deep: #0d0b09;
  --bg-dark: #131009;
  --bg-card: #1a1610;
  --bg-card2: #201c14;
  --wine: #6b1a2a;
  --wine-light: #8b2535;
  --wine-muted: #4a1220;
  --gold: #c9a84c;
  --gold-light: #e0c06a;
  --gold-muted: #8a6e2f;
  --olive: #4a5240;
  --olive-light: #6b7560;
  --cream: #f0e8d8;
  --cream-muted: #c8bfaa;
  --text-main: #e8dfc8;
  --text-muted: #9a9080;
  --border: rgba(201, 168, 76, 0.18);
  --border-light: rgba(201, 168, 76, 0.08);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.18);
  --overlay-hero:
    rgba(13, 11, 9, 0.35), rgba(13, 11, 9, 0.15), rgba(13, 11, 9, 0.55),
    rgba(13, 11, 9, 0.9);
  --bg-glass: rgba(26, 22, 16, 0.85);
  --header-bg: rgba(13, 11, 9, 0.96);
  --text-shadow-dark:
    0 2px 4px rgba(0, 0, 0, 0.95), 0 4px 12px rgba(0, 0, 0, 0.85),
    0 0 20px rgba(0, 0, 0, 0.75);

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", "Helvetica Neue", sans-serif;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ---------- SCROLLBAR ---------- */
html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}
::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- BUTTONS ---------- */
.btn-gold {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    var(--gold) 100%
  );
  color: var(--bg-deep);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}
.btn-gold:hover::after {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

/* ---------- SECTION LABELS & TITLES ---------- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}
.gold-label {
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.section-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gold-muted);
  max-width: 680px;
  line-height: 1.85;
  margin-bottom: 3rem;
}
.section-text strong {
  color: var(--cream);
  font-weight: 500;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
}
#header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  flex-shrink: 0;
  margin-right: auto;
}
.logo-img {
  height: 43px;
  width: auto;
  opacity: 1; /* Sólido para máximo contraste (evita que o fundo brilhe através das cores do logo) */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.95))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 15px rgba(0, 0, 0, 0.75)); /* Sombra tripla reforçada: contraste e leitura máxima no tema claro */
  transition:
    transform var(--transition),
    opacity var(--transition),
    filter var(--transition);
}
.logo-img:hover {
  transform: scale(1.03);
  opacity: 0.98;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 1))
    drop-shadow(0 6px 18px rgba(0, 0, 0, 0.95))
    drop-shadow(0 0 20px rgba(0, 0, 0, 0.85));
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.logo-text em {
  font-style: italic;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}

.btn-cta-header {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cta-header:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.85) brightness(0.65);
  animation: heroZoom 2.6s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(0.98);
  }
  to {
    transform: scale(1.07);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-deep) 0%,
    transparent 40%,
    var(--bg-deep) 100%
  );
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
  animation: heroFadeIn 1.4s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-shadow: var(--text-shadow-dark);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-italic {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
  text-shadow: var(--text-shadow-dark);
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(240, 232, 216, 0.8);
  line-height: 1.8;
  margin-bottom: 2.4rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ============================================================
   SEÇÃO VÍDEO INFORMATIVO
   ============================================================ */
.section-video-info {
  padding: 6rem 0;
  background: var(--bg-dark);
  position: relative;
}
.section-video-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
}
.video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-gold);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  line-height: 0;
}
.interactive-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  transition: transform var(--transition);
}
.interactive-video:hover {
  transform: scale(1.01);
}

/* ============================================================
   SEÇÃO 01: ATMOSFERA
   ============================================================ */
.section-atmosfera {
  padding: 8rem 0 6rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.section-atmosfera::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
}
.section-atmosfera::after {
  content: "";
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 4200px;
  height: 4200px;
  background: url("assets/Logo Borgo del Vino Hotel.png") no-repeat center /
    contain;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px; /* Duas linhas de 240px de altura exata para alinhamento milimétrico */
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.gallery-item--tall {
  grid-row: span 2;
}
.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.8);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(0.9);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1rem 0.8rem;
  background: linear-gradient(to top, var(--bg-deep), transparent);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* ============================================================
   SEÇÃO 01.5: SLIDER DE FOTOS
   ============================================================ */
.section-slider {
  padding: 6rem 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.slider-container {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
  padding: 1rem 0;
  /* Mascara para fade nas pontas */
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.infinite-scroll {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.infinite-scroll:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-50% - 1rem));
  }
}

.slider-item {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: var(--white);
  font-family: var(--font-body);
  text-align: left;
  z-index: 2;
}

.slider-caption span {
  display: block;
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.3rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.slider-caption p {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
}

/* ============================================================
   SEÇÃO 02: GASTRONOMIA
   ============================================================ */
.section-gastro {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.parallax-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.5) brightness(0.35);
  opacity: 1;
  will-change: transform;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  opacity: 1;
}

.gastro-container {
  position: relative;
  z-index: 2;
}

.gastro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.gastro-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.gastro-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.gastro-card--highlight {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.06);
}

.gastro-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  filter: grayscale(0.3);
}
.gastro-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.gastro-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Wine Premium */
.wine-premium {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  backdrop-filter: blur(8px);
}
.wine-premium-badge {
  position: absolute;
  top: -14px;
  left: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
}
.wine-premium-content {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.wine-img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  flex-shrink: 0;
  filter: saturate(0.85) brightness(0.85);
}
.wine-img-trilha {
  object-position: left 65%;
}
.wine-img-brut {
  width: 220px;
  height: 160px;
  object-fit: cover;
  object-position: center;
}
.wine-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.wine-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.wine-text p strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* ============================================================
   SEÇÃO 03: DATAS
   ============================================================ */
.section-datas {
  padding: 8rem 0;
  background: var(--bg-dark);
  position: relative;
}
.section-datas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
}

.urgency-text {
  color: var(--cream) !important;
  font-style: italic;
  font-size: 0.9rem !important;
  letter-spacing: 0.04em;
}

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

.date-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  cursor: pointer;
}
.date-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--wine-muted);
  transition: background var(--transition);
}
.date-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.date-card:hover::before {
  background: var(--gold);
}

.date-card--featured {
  border-color: var(--border);
  background: var(--bg-card2);
  box-shadow: var(--shadow-gold);
}
.date-card--featured::before {
  background: var(--gold);
}

.date-badge {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1.2rem;
}
.date-card--featured .date-badge {
  color: var(--gold);
}

.date-number {
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.1rem;
}
.date-month {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.date-edition {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.date-time {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.btn-date {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  padding: 0.85rem 1rem;
}

/* ============================================================
   SEÇÃO 04: INVESTIMENTO
   ============================================================ */
.section-reserva {
  padding: 8rem 0;
  background: var(--bg-deep);
  position: relative;
  display: flex;
  overflow: hidden;
}
.section-reserva::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
}
.section-reserva::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 4200px;
  height: 4200px;
  background: url("assets/Logo Borgo del Vino Hotel.png") no-repeat center /
    contain;
  opacity: 0.1;
  filter: brightness(0.9);
  pointer-events: none;
  z-index: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.pricing-card--premium {
  border-color: var(--border);
  background: var(--bg-card2);
  box-shadow: var(--shadow-gold);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 2px;
  white-space: nowrap;
}

.pricing-installment {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gold-muted);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  font-style: italic;
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.pricing-name em {
  color: var(--gold-light);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pricing-price span {
  font-size: 1.2rem;
  color: var(--gold-muted);
}

.pricing-features {
  margin-bottom: 1.5rem;
}
.pricing-features li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-features li::before {
  content: "•";
  color: var(--gold-muted);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.pricing-card--premium .pricing-features li::before {
  color: var(--gold);
}
.pricing-features li.has-submenu {
  display: block;
}
.pricing-features li.has-submenu::before {
  content: none;
}
.pricing-features li.has-submenu > .submenu-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-features li.has-submenu > .submenu-title::before {
  content: "•";
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.pricing-features li.has-submenu ul {
  list-style: none;
  padding-left: 1.6rem;
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.pricing-features li.has-submenu ul li {
  border-bottom: none;
  padding: 0.1rem 0;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li.has-submenu ul li::before {
  content: "*";
  color: var(--gold-muted);
  font-size: 0.9rem;
}

.pricing-card .btn-outline,
.pricing-card .btn-gold {
  width: 100%;
  text-align: center;
}

.installment-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2rem;
  letter-spacing: 0.06em;
}

/* ============================================================
   SEÇÃO 05: FAQ
   ============================================================ */
.section-faq {
  padding: 8rem 0;
  background: var(--bg-dark);
  position: relative;
}
.section-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
}

.faq-list {
  max-width: 740px;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  text-align: left;
  padding: 1.4rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--gold-light);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold-muted);
  flex-shrink: 0;
  transition:
    transform var(--transition),
    color var(--transition);
  font-weight: 300;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    padding 0.4s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.4rem;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-answer p strong {
  color: var(--cream);
  font-weight: 500;
}

/* ============================================================
   QUOTE FINAL
   ============================================================ */
.section-quote {
  padding: 7rem 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.final-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}
.final-quote::before {
  content: "\201C";
  font-size: 6rem;
  color: var(--wine-muted);
  position: absolute;
  top: -2rem;
  left: 0;
  font-style: normal;
  line-height: 1;
  opacity: 0.6;
}
.final-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-top: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  padding: 5rem 0 0;
  border-top: 1px solid var(--border-light);
}

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

.footer-brand .logo-footer .logo-text {
  font-size: 1.5rem;
}
.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  letter-spacing: 0.06em;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.6rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-contact-link:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  color: #fff;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   ANIMATIONS (REVEAL ON SCROLL)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

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

/* Elementos filhos que devem ter transição em cascata */
.gastro-card,
.date-card,
.pricing-card,
.gallery-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

/* Stagger (cascata) */
.gastro-card:nth-child(1),
.date-card:nth-child(1),
.pricing-card:nth-child(1),
.gallery-item:nth-child(1) {
  transition-delay: 0.05s;
}
.gastro-card:nth-child(2),
.date-card:nth-child(2),
.pricing-card:nth-child(2),
.gallery-item:nth-child(2) {
  transition-delay: 0.15s;
}
.gastro-card:nth-child(3),
.date-card:nth-child(3),
.pricing-card:nth-child(3),
.gallery-item:nth-child(3) {
  transition-delay: 0.25s;
}
.gastro-card:nth-child(4),
.date-card:nth-child(4),
.pricing-card:nth-child(4),
.gallery-item:nth-child(4) {
  transition-delay: 0.35s;
}
.gastro-card:nth-child(5),
.date-card:nth-child(5),
.pricing-card:nth-child(5),
.gallery-item:nth-child(5) {
  transition-delay: 0.45s;
}
.gastro-card:nth-child(6),
.date-card:nth-child(6),
.pricing-card:nth-child(6),
.gallery-item:nth-child(6) {
  transition-delay: 0.55s;
}

/* Quando o pai (.reveal) ganha a classe .visible, os filhos aparecem */
.reveal.visible .gastro-card,
.reveal.visible .date-card,
.reveal.visible .pricing-card,
.reveal.visible .gallery-item {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVIDADE PREMIUM
   ============================================================ */
@media (max-width: 1200px) {
  .header-inner {
    gap: 1.2rem;
  }
  .nav-links {
    gap: 1.4rem;
  }
  .nav-links a {
    font-size: 0.68rem;
  }
  .btn-cta-header {
    padding: 0.5rem 1.1rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 1024px) {
  .gastro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .header-inner {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    justify-items: center;
    padding: 0 1.5rem;
    gap: 0;
  }
  .header-inner::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
  }
  .nav-links,
  .btn-cta-header {
    display: none;
  }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1010;
    justify-self: end;
  }
  .logo {
    position: relative;
    z-index: 1010;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }
  .logo-img {
    height: 38px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  #header.menu-open {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-deep);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.mobile-open a {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--text-main);
  }
}

@media (max-width: 768px) {
  .section-reserva::after {
    width: 690px;
    height: 690px;
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.12;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0.8rem;
  }
  .gallery-item {
    aspect-ratio: 4/3; /* Garante proporção de aspecto elegante e consistente para todas as fotos no tablet */
  }
  .gallery-item--tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .gallery-item--wide {
    grid-column: span 1; /* Sobrescreve o span 2 do desktop para formar um grid 2x2 perfeito e simétrico */
    aspect-ratio: 4/3;
  }
  .slider-item {
    width: 300px;
    height: 300px;
  }

  .gastro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .dates-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 1.5rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 2rem;
  }

  .wine-premium-content {
    flex-direction: column;
  }
  .wine-img {
    width: 100%;
    height: 260px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-links,
  .footer-contact {
    align-items: center;
  }

  .section-text {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-item--tall {
    aspect-ratio: 4/5;
  }
  .gallery-item--wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
  .gallery-item {
    aspect-ratio: 4/3;
  }

  .slider-item {
    width: 260px;
    height: 260px;
  }

  .container {
    padding: 0 1.2rem;
  }
  .header-inner {
    padding: 0 1rem;
    grid-template-columns: 32px 1fr 32px;
  }
  .header-inner::before {
    width: 32px;
  }
  .logo-img {
    height: 33px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }
  .section-atmosfera,
  .section-gastro,
  .section-datas,
  .section-reserva,
  .section-faq,
  .section-galeria {
    padding: 4rem 0;
  }
  .section-quote {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2.2rem;
  }
  .final-quote {
    font-size: 1.25rem;
    padding: 0 1rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 350px) {
  .hamburger {
    display: none !important;
  }
  .header-inner {
    grid-template-columns: 1fr;
    padding: 0 0.8rem;
  }
  .header-inner::before {
    display: none !important;
  }
  .logo-img {
    height: 30px;
  }
}
