/* =========================================
   MIX WINES STORE v2 — style-v2.css
   Paleta: #f0ebe2 (creme/fundo claro), #1a0a0e (preto vinho/fundo escuro),
           #6b1226 (bordô), #2a2a2a (texto principal), #8a8078 (texto suave)
   ========================================= */

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

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

body {
  background-color: #f0ebe2;
  color: #2a2a2a;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- SCREEN READER ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- CURSOR ---------- */
#cursor {
  width: 56px;
  height: 56px;
  border: 1px solid #1a0a0e;
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0.4);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              background 0.3s ease,
              border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: multiply;
}

#cursor.visible {
  transform: translate(-50%, -50%) scale(1);
}

#cursor.hover {
  background: #1a0a0e;
  border-color: #1a0a0e;
  transform: translate(-50%, -50%) scale(1.4);
}

#cursor.hover .cursor-text {
  opacity: 1;
  transform: scale(1);
}

.cursor-text {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0ebe2;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
  user-select: none;
}

/* ---------- LOADER ---------- */
#loader {
  position: fixed;
  inset: 0;
  background: #1a0a0e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #f0ebe2;
  letter-spacing: 0.15em;
}

.loader-line {
  width: 200px;
  height: 1px;
  background: rgba(240, 235, 226, 0.15);
  overflow: hidden;
}

.loader-line span {
  display: block;
  height: 100%;
  background: #f0ebe2;
  width: 0;
  animation: loaderProgress 2s ease forwards;
}

@keyframes loaderProgress {
  to { width: 100%; }
}

.loader-counter {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(240, 235, 226, 0.45);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
  mix-blend-mode: normal;
}

.navbar.scrolled {
  background: rgba(240, 235, 226, 0.9);
  backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom-color: rgba(42, 42, 42, 0.1);
}

.navbar.dark {
  background: rgba(26, 10, 14, 0.9);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(240, 235, 226, 0.08);
}

.navbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 200px;
  object-fit: contain;
  transition: height 0.4s ease;
}

/* logo encolhe junto com a navbar ao rolar */
.navbar.scrolled .nav-logo img { height: 38px; }

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.6);
  transition: color 0.3s ease;
}

.nav-links a span {
  font-size: 0.6rem;
  color: rgba(240, 235, 226, 0.35);
  transition: color 0.3s ease;
}

.nav-links a:hover { color: #f0ebe2; }

.navbar.scrolled .nav-links a        { color: rgba(42, 42, 42, 0.55); }
.navbar.scrolled .nav-links a span   { color: rgba(42, 42, 42, 0.3); }
.navbar.scrolled .nav-links a:hover  { color: #2a2a2a; }
.navbar.dark .nav-links a            { color: rgba(240, 235, 226, 0.6); }
.navbar.dark .nav-links a:hover      { color: #f0ebe2; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a0a0e;
  background: #f0ebe2;
  padding: 11px 24px;
  transition: background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.nav-btn:hover { background: #2a2a2a; color: #f0ebe2; }

.navbar.dark .nav-btn {
  background: rgba(240, 235, 226, 0.1);
  color: #f0ebe2;
  border: 1px solid rgba(240, 235, 226, 0.2);
}

.navbar.dark .nav-btn:hover {
  background: #f0ebe2;
  color: #1a0a0e;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: #f0ebe2;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.4s ease;
}

.navbar.scrolled .hamburger span { background: #2a2a2a; }

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(20%);
  transform: scale(1.06);
  animation: heroKen 14s ease forwards;
}

@keyframes heroKen {
  to { transform: scale(1); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(26, 10, 14, 0.55) 0%,
    rgba(26, 10, 14, 0.8) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero-index {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(240, 235, 226, 0.4);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: stretch;
  justify-content: flex-end;
  opacity: 0;
  animation: fadeIn 0.6s ease 1.8s forwards;
}

.hero-index-line {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(240, 235, 226, 0.25);
}

.hero-copy {
  flex: 1;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.4s forwards;
}

.hero-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.5);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.0;
  color: #f0ebe2;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
}

.hero-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeIn 0.6s ease 1.8s forwards;
}

.hero-scroll-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.5);
  transition: color 0.3s ease;
}

.hero-scroll-cta:hover { color: #f0ebe2; }

.hero-tagline {
  font-size: 0.68rem;
  color: rgba(240, 235, 226, 0.35);
  letter-spacing: 0.05em;
  text-align: right;
  max-width: 280px;
}

/* ---------- TICKER ---------- */
.ticker {
  background: #1a0a0e;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(240, 235, 226, 0.06);
  border-bottom: 1px solid rgba(240, 235, 226, 0.06);
}

.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.4);
}

.ticker-track .sep {
  color: rgba(240, 235, 226, 0.15);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---------- EYEBROW ---------- */
.eyebrow {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.45);
  margin-bottom: 20px;
  display: block;
}

.eyebrow--light {
  color: rgba(240, 235, 226, 0.4);
}

/* ---------- MANIFESTO ---------- */
.manifesto {
  background: #f0ebe2;
  padding: 120px 0;
}

.manifesto-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.manifesto-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: #1a0a0e;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}

.manifesto-headline em {
  font-style: italic;
  color: #6b1226;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a0a0e;
  border: 1px solid rgba(26, 10, 14, 0.3);
  padding: 13px 28px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline:hover {
  background: #1a0a0e;
  color: #f0ebe2;
  border-color: #1a0a0e;
}

.manifesto-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.manifesto-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.5s ease, transform 0.6s ease;
}

.manifesto-img:hover img {
  filter: grayscale(60%);
  transform: scale(1.04);
}

.manifesto-right {
  padding-top: 40px;
}

.manifesto-text {
  font-size: 0.95rem;
  color: #8a8078;
  line-height: 1.9;
  margin-bottom: 24px;
}

.manifesto-text strong {
  color: #2a2a2a;
  font-weight: 500;
}

.manifesto-quote {
  margin-top: 40px;
  padding-left: 20px;
  border-left: 2px solid #6b1226;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #2a2a2a;
  line-height: 1.6;
}

.manifesto-quote footer {
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: #8a8078;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

/* ---------- SELEÇÃO ---------- */
.selecao {
  background: #1a0a0e;
  padding: 120px 0;
}

.selecao-header {
  max-width: 1320px;
  margin: 0 auto 64px;
  padding: 0 40px;
}

.selecao-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.0;
  color: #f0ebe2;
  letter-spacing: -0.01em;
  margin-top: 16px;
}

.selecao-headline em {
  font-style: italic;
  color: rgba(240, 235, 226, 0.45);
}

.selecao-list {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: opacity 0.3s ease;
}

.selecao-list.switching {
  opacity: 0;
}

.selecao-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(240, 235, 226, 0.08);
  transition: background 0.3s ease, padding 0.3s ease;
  cursor: none;
}

.selecao-item:last-child {
  border-bottom: 1px solid rgba(240, 235, 226, 0.08);
}

.selecao-item:hover {
  background: rgba(240, 235, 226, 0.03);
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
}

.selecao-item-img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  flex-shrink: 0;
}

.selecao-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.selecao-item:hover .selecao-item-img img {
  filter: grayscale(0%);
}

.selecao-item-body {
  flex: 1;
}

.selecao-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.selecao-num {
  font-size: 0.6rem;
  color: rgba(240, 235, 226, 0.25);
  letter-spacing: 0.1em;
}

.selecao-tag {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b1226;
}

.selecao-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #f0ebe2;
  letter-spacing: -0.01em;
}

.selecao-item-desc {
  font-size: 0.85rem;
  color: rgba(240, 235, 226, 0.4);
  margin-top: 6px;
  line-height: 1.6;
}

.selecao-item-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240, 235, 226, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 235, 226, 0.3);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.selecao-item:hover .selecao-item-arrow {
  border-color: rgba(240, 235, 226, 0.4);
  color: #f0ebe2;
  transform: rotate(45deg);
}

/* ---------- PAGINAÇÃO SELEÇÃO ---------- */
.selecao-pagination {
  max-width: 1320px;
  margin: 48px auto 0;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.selecao-page-btn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid rgba(240, 235, 226, 0.12);
  color: rgba(240, 235, 226, 0.4);
  cursor: none;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.selecao-page-btn:hover {
  border-color: rgba(240, 235, 226, 0.4);
  color: #f0ebe2;
}

.selecao-page-btn.active {
  background: #6b1226;
  border-color: #6b1226;
  color: #f0ebe2;
}

/* ---------- PROCESSO ---------- */
.processo {
  background: #f0ebe2;
  padding: 120px 0;
}

.processo-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.processo-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: #1a0a0e;
  letter-spacing: -0.01em;
  margin-bottom: 60px;
}

.processo-headline em {
  font-style: italic;
  color: #6b1226;
}

.processo-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.processo-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-top: 1px solid rgba(42, 42, 42, 0.1);
}

.processo-step:last-child {
  border-bottom: 1px solid rgba(42, 42, 42, 0.1);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: #6b1226;
  flex-shrink: 0;
  width: 28px;
  line-height: 1.3;
}

.processo-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #1a0a0e;
  margin-bottom: 8px;
}

.processo-step p {
  font-size: 0.88rem;
  color: #8a8078;
  line-height: 1.8;
}

.processo-media-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.processo-img {
  overflow: hidden;
}

.processo-img--top {
  aspect-ratio: 4/3;
}

.processo-img--bottom {
  aspect-ratio: 16/9;
}

.processo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.5s ease, transform 0.6s ease;
}

.processo-img:hover img {
  filter: grayscale(40%);
  transform: scale(1.03);
}

/* ---------- NÚMEROS ---------- */
.numeros {
  background: #1a0a0e;
  padding: 120px 0;
}

.numeros-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(240, 235, 226, 0.06);
  border: 1px solid rgba(240, 235, 226, 0.06);
  margin: 48px 0 64px;
}

.numero-item {
  background: #1a0a0e;
  padding: 48px 32px;
  position: relative;
  transition: background 0.3s ease;
}

.numero-item:hover {
  background: #2e1218;
}

.numero-val {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 400;
  color: #f0ebe2;
  line-height: 1;
  letter-spacing: -0.02em;
}

.numero-plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #6b1226;
  vertical-align: super;
  line-height: 1;
}

.numero-item p {
  font-size: 0.78rem;
  color: rgba(240, 235, 226, 0.4);
  letter-spacing: 0.06em;
  margin-top: 16px;
  text-transform: uppercase;
}

.numeros-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.numeros-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.5s ease;
}

.numeros-img:hover img {
  filter: grayscale(50%);
}

/* ---------- DEPOIMENTOS ---------- */
.deps {
  background: #f0ebe2;
  padding: 120px 0;
}

.deps-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.deps-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: #1a0a0e;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
}

.deps-headline em {
  font-style: italic;
  color: #6b1226;
}

.deps-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dep {
  padding: 40px;
  border: 1px solid rgba(42, 42, 42, 0.1);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.dep:hover {
  border-color: rgba(42, 42, 42, 0.25);
  transform: translateY(-4px);
}

.dep-stars {
  color: #6b1226;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.dep blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: #2a2a2a;
  line-height: 1.7;
  margin-bottom: 32px;
}

.dep-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dep-av {
  width: 42px;
  height: 42px;
  background: #1a0a0e;
  color: rgba(240, 235, 226, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.dep-meta strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a0a0e;
}

.dep-meta span {
  display: block;
  font-size: 0.72rem;
  color: #8a8078;
  margin-top: 2px;
}

/* ---------- LOCALIZAÇÃO ---------- */
.localizacao {
  background: #1a0a0e;
  padding: 120px 0;
}

.loc-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.loc-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: #f0ebe2;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
}

.loc-headline em {
  font-style: italic;
  color: rgba(240, 235, 226, 0.4);
}

.loc-infos {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.loc-info-block strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.35);
  margin-bottom: 8px;
}

.loc-info-block p {
  font-size: 0.92rem;
  color: rgba(240, 235, 226, 0.65);
  line-height: 1.8;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a0a0e;
  background: #f0ebe2;
  padding: 14px 28px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-dark:hover {
  background: rgba(240, 235, 226, 0.85);
}

.loc-map {
  height: 520px;
  overflow: hidden;
  filter: grayscale(50%) contrast(1.05);
  position: sticky;
  top: 100px;
}

.loc-map iframe {
  width: 100%; height: 100%;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0e0407;
  padding: 80px 0 0;
}

.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid rgba(240, 235, 226, 0.06);
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #f0ebe2;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.footer-claim {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(240, 235, 226, 0.2);
  line-height: 1.2;
}

.footer-claim em {
  color: rgba(240, 235, 226, 0.5);
  font-style: normal;
}

.footer-nav {
  display: flex;
  gap: 64px;
  flex-shrink: 0;
}

.footer-nav-col h4 {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.25);
  margin-bottom: 20px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col a {
  font-size: 0.88rem;
  color: rgba(240, 235, 226, 0.4);
  transition: color 0.3s ease;
}

.footer-nav-col a:hover { color: #f0ebe2; }

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(240, 235, 226, 0.2);
}

/* ---------- MOBILE MENU ---------- */
@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  /* O menu e' filho da .navbar, que ganha backdrop-filter ao rolar
     (.scrolled / .dark). Um ancestral com backdrop-filter vira containing
     block de descendentes position:fixed, o que prenderia o overlay dentro
     da altura da barra. Com o menu aberto, zeramos esses efeitos: o overlay
     cobre a tela toda de qualquer forma. */
  body.menu-open .navbar,
  body.menu-open .navbar.scrolled,
  body.menu-open .navbar.dark {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
  }

  body.menu-open .hamburger span,
  body.menu-open .navbar.scrolled .hamburger span {
    background: #f0ebe2;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  /* O overlay mobile e' sempre escuro, entao os links ficam sempre claros —
     as variantes .scrolled / .dark da navbar nao valem aqui dentro. */
  .nav-links a,
  .navbar.scrolled .nav-links a,
  .navbar.dark .nav-links a {
    font-size: 1rem;
    color: rgba(240, 235, 226, 0.7);
    justify-content: center;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .navbar.scrolled .nav-links a:hover,
  .navbar.dark .nav-links a:hover {
    color: #f0ebe2;
  }

  .nav-links a span { display: none; }

  .nav-btn { display: none; }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .manifesto-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .manifesto-right {
    grid-column: 1 / -1;
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

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

  .deps-slider {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-body { padding-bottom: 48px; }
  .hero-index { display: none; }

  .processo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .processo-media-col {
    position: static;
    flex-direction: row;
  }

  .processo-img--top,
  .processo-img--bottom {
    flex: 1;
    aspect-ratio: 1;
  }

  .loc-inner {
    grid-template-columns: 1fr;
  }

  .loc-map {
    position: static;
    height: 300px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .navbar-inner { padding: 0 20px; }
  .nav-logo img { height: 38px; max-width: 150px; }
  .navbar.scrolled .nav-logo img { height: 32px; }
  .manifesto { padding: 80px 0; }
  .manifesto-grid {
    padding: 0 20px;
    grid-template-columns: 1fr;
  }
  .manifesto-right {
    grid-template-columns: 1fr;
    grid-column: 1;
  }

  .selecao { padding: 80px 0; }
  .selecao-header, .selecao-list { padding: 0 20px; }
  .selecao-item {
    grid-template-columns: 60px 1fr auto;
    gap: 16px;
  }
  .selecao-item-img { width: 60px; height: 60px; }
  .selecao-item-title { font-size: 1.2rem; }

  .processo { padding: 80px 0; }
  .processo-inner { padding: 0 20px; }
  .processo-media-col { flex-direction: column; }

  .numeros { padding: 80px 0; }
  .numeros-inner { padding: 0 20px; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .numeros-img { height: 240px; }

  .deps { padding: 80px 0; }
  .deps-inner { padding: 0 20px; }
  .deps-slider { grid-template-columns: 1fr; }

  .localizacao { padding: 80px 0; }
  .loc-inner { padding: 0 20px; gap: 48px; }

  .footer-top { padding: 0 20px 48px; }
  .footer-bottom { padding: 20px; flex-direction: column; text-align: center; }
  .footer-nav { gap: 32px; }

  #cursor { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .hero-body { padding: 0 20px 48px; flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-foot { align-items: flex-start; }
  .hero-tagline { text-align: left; }
  .numeros-grid { grid-template-columns: 1fr; }
}
