/* ===========================================
   HOTEL OURO LAVRAS — Design System
   Sofisticado · Mineiro · Acolhedor
   =========================================== */

:root {
  /* Cores */
  --bg: #FAF8F4;
  --bg-soft: #F4EFE7;
  --bg-deep: #0F0E0C;
  --bg-deep-2: #1A1814;

  --ink: #0F0E0C;
  --ink-soft: #4A453D;
  --ink-mute: #8A8377;

  --gold: #B08D57;
  --gold-dark: #8C6F44;
  --gold-light: #D4B788;
  --gold-glow: rgba(176, 141, 87, 0.18);

  --line: #E5DDD0;
  --line-dark: #2A2620;

  /* Tipografia */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamento */
  --container: 1280px;
  --pad-x: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(5rem, 10vw, 8rem);

  /* Outros */
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-card: 0 30px 60px -30px rgba(15, 14, 12, 0.25);
  --transition: 320ms cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--bg); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ====== Tipografia base ====== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}
.eyebrow-light {
  color: var(--gold-light);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.eyebrow-light::before { background: var(--gold-light); }

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}
.h2.light { color: var(--bg); }
.h2.light em { color: var(--gold-light); }

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 600px;
}
.section-lead.light { color: rgba(250, 248, 244, 0.7); }

/* ====== Botões ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--bg);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn.full { width: 100%; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand { display: flex; align-items: center; }
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
  transition: var(--transition);
}
.site-header.scrolled .brand-logo { height: 38px; }

/* Hero (header transparente sobre foto escura) — logo dourada já contrasta bem,
   mas adicionamos um leve glow/brilho para destacar */
.site-header:not(.scrolled) .brand-logo {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)) brightness(1.18);
}

.brand-logo-footer {
  height: 52px;
  filter: brightness(1.05);
}

.nav-desktop {
  display: flex;
  gap: 2.25rem;
  font-size: 0.875rem;
  font-weight: 400;
}
.nav-desktop a {
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  transition: var(--transition);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-desktop a:hover { color: var(--gold-dark); }
.nav-desktop a:hover::after { width: 100%; }
.site-header:not(.scrolled) .nav-desktop a { color: rgba(250,248,244,0.85); }
.site-header:not(.scrolled) .nav-desktop a:hover { color: var(--gold-light); }

.btn-reserva {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-reserva:hover {
  background: var(--gold);
  color: var(--bg);
}
.site-header:not(.scrolled) .btn-reserva {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.site-header:not(.scrolled) .btn-reserva:hover {
  background: var(--gold-light);
  color: var(--bg-deep);
}

/* Nav mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}
.site-header:not(.scrolled) .nav-toggle span { background: var(--bg); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--ink); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--ink); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile .btn-reserva.mobile {
  margin-top: 1rem;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--bg);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15,14,12,0.75) 0%,
      rgba(15,14,12,0.55) 35%,
      rgba(15,14,12,0.55) 60%,
      rgba(15,14,12,0.88) 100%),
    linear-gradient(90deg,
      rgba(15,14,12,0.55) 0%,
      rgba(15,14,12,0.15) 55%,
      rgba(15,14,12,0) 100%);
}

.hero-content {
  max-width: 820px;
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0,0,0,0.4);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(250,248,244,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: var(--transition);
  animation: bobble 2.5s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
.hero-scroll:hover { color: var(--gold-light); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--section-y) 0; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}
.section-head .eyebrow { display: inline-block; }
.section-head .eyebrow::before { display: none; }
.section-head p { margin: 0 auto; }

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

/* ====== SOBRE ====== */
.section-sobre { background: var(--bg); }
.sobre-text p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  max-width: 520px;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.sobre-stats div { display: flex; flex-direction: column; gap: 4px; }
.sobre-stats strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1;
}
.sobre-stats span { font-size: 0.75rem; color: var(--ink-mute); line-height: 1.4; }

.sobre-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.sobre-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}
.sobre-media:hover img { transform: scale(1.03); }
.sobre-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--bg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-card);
  max-width: 220px;
}
.sobre-badge span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.sobre-badge strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1;
}
.sobre-badge span:last-child {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ====== ACOMODAÇÕES ====== */
.section-acomodacoes { background: var(--bg-soft); }

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

.room-card {
  background: var(--bg);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid transparent;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--line);
}

.room-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.room-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.room-card:hover .room-media img { transform: scale(1.05); }

.room-flag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--ink);
  color: var(--bg);
  padding: 6px 14px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
}

.room-card.featured .room-flag {
  background: var(--gold-dark);
}

.room-body { padding: 2rem; display: flex; flex-direction: column; flex: 1; }

.room-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.room-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.room-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}

.room-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.room-features {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.room-features li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  position: relative;
  padding-left: 16px;
}
.room-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--gold);
}

.room-cta {
  margin-top: auto;
  font-size: 0.875rem;
  color: var(--ink);
  font-weight: 500;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  transition: var(--transition);
}
.room-cta:hover { color: var(--gold-dark); padding-left: 6px; }

/* ====== CAFÉ DA MANHÃ ====== */
.section-cafe {
  background: var(--bg);
  padding-bottom: clamp(5rem, 10vw, 8rem);
}
.cafe-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.cafe-media {
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: 2px;
}
.cafe-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}
.cafe-media:hover img { transform: scale(1.04); }

.cafe-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.cafe-list {
  list-style: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cafe-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.cafe-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 16px; height: 1px;
  background: var(--gold);
}

/* ====== SLOGAN ORIGINAL na seção Lavras ====== */
.lavras-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--gold-dark);
  padding: 1rem 1.25rem 1rem 1.5rem;
  border-left: 2px solid var(--gold);
  margin: 1.5rem 0 1.75rem 0 !important;
  background: linear-gradient(90deg, var(--gold-glow), transparent);
}

/* ====== EXPERIÊNCIA (dark) ====== */
.section-experiencia {
  background: var(--bg-deep);
  color: var(--bg);
  position: relative;
}
.section-experiencia .h2.light { color: var(--bg); }
.section-experiencia .section-lead.light { color: rgba(250,248,244,0.65); }

.amen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.amen {
  background: var(--bg-deep);
  padding: 2.25rem 1.75rem;
  transition: var(--transition);
}
.amen:hover { background: var(--bg-deep-2); }
.amen svg {
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.amen h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--bg);
}
.amen p {
  font-size: 0.875rem;
  color: rgba(250,248,244,0.6);
  line-height: 1.55;
}

/* ====== LAVRAS ====== */
.section-lavras { background: var(--bg); }
.lavras-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.lavras-text p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 2rem; }

.poi-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.poi {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.poi:last-child { border-bottom: none; }
.poi-dist {
  display: grid;
  place-items: center;
  min-width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.poi div { display: flex; flex-direction: column; gap: 4px; }
.poi strong { font-weight: 500; font-size: 1rem; color: var(--ink); }
.poi span { font-size: 0.85rem; color: var(--ink-mute); }

.lavras-media {
  aspect-ratio: 5/6;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--line);
}
.lavras-media iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* ====== GALERIA ====== */
.section-galeria { background: var(--bg-soft); }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  cursor: zoom-in;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 400ms ease;
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.05); }

/* ====== DEPOIMENTOS ====== */
.section-depoimentos {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.quote-wrap {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}
blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ====== CONTATO ====== */
.section-contato {
  background: var(--bg-deep);
  color: var(--bg);
}
.section-contato .h2.light { color: var(--bg); }
.section-contato .light { color: rgba(250,248,244,0.7); }

.contato-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-dark);
}
.contato-info > div { display: flex; flex-direction: column; gap: 6px; }
.contato-info span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.contato-info strong {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--bg);
}
.contato-info a { transition: var(--transition); }
.contato-info a:hover { color: var(--gold-light); }

.contato-form {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contato-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.contato-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.contato-form input,
.contato-form select,
.contato-form textarea {
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  transition: var(--transition);
}
.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg);
}
.contato-form textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ====== FOOTER ====== */
.footer {
  background: var(--bg-deep-2);
  color: rgba(250,248,244,0.7);
  padding: 4rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  max-width: 320px;
  color: rgba(250,248,244,0.55);
}
.footer-cnpj {
  margin-top: 1rem !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.05em;
  color: rgba(250,248,244,0.35) !important;
  line-height: 1.6;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.footer-col a, .footer-col span {
  font-size: 0.875rem;
  color: rgba(250,248,244,0.6);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.75rem;
  color: rgba(250,248,244,0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ====== WHATSAPP FLOAT ====== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 95;
  transition: var(--transition);
  animation: pulseWa 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
}

/* ====== LIGHTBOX ====== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,14,12,0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.open { display: flex; animation: fadeIn 280ms ease; }
.lightbox img {
  max-width: min(1200px, 100%);
  max-height: 90vh;
  object-fit: contain;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ====== COOKIE BANNER (LGPD) ====== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-deep);
  color: var(--bg);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  z-index: 90;
  display: none;
  border: 1px solid var(--line-dark);
}
.cookie-banner.visible {
  display: block;
  animation: cookieUp 360ms cubic-bezier(.2,.7,.2,1);
}
@keyframes cookieUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  min-width: 240px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(250,248,244,0.85);
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.cookie-btn-accept {
  background: var(--gold);
  color: var(--bg-deep);
}
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-ghost {
  background: transparent;
  color: rgba(250,248,244,0.7);
  border-color: var(--line-dark);
}
.cookie-btn-ghost:hover { color: var(--bg); border-color: var(--gold-light); }

/* ====== REVEAL ANIMATION ====== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .grid-2, .lavras-grid, .cafe-grid { grid-template-columns: 1fr; gap: 3rem; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .amen-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .sobre-stats { gap: 1rem; }
}

@media (max-width: 720px) {
  .nav-desktop, .btn-reserva:not(.mobile) { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }

  .brand-logo { height: 40px; }
  .site-header.scrolled .brand-logo { height: 34px; }

  .cookie-inner { flex-direction: column; align-items: stretch; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
  .lavras-slogan { font-size: 1.1rem; padding: 0.875rem 1rem; }

  .hero-content { padding-top: 7rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-scroll { display: none; }

  .rooms-grid { grid-template-columns: 1fr; }
  .amen-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .sobre-stats { grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }
  .sobre-stats strong { font-size: 1.5rem; }

  .contato-info { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .sobre-badge { left: 1rem; bottom: 1rem; padding: 1rem; }
  .section-head { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
  .amen-grid { grid-template-columns: 1fr; }
  .room-features { grid-template-columns: 1fr; }
  .poi { gap: 1rem; }
  .poi-dist { min-width: 54px; height: 54px; font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
