/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(242,239,230,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.navbar--scrolled {
  background: rgba(242,239,230,.96);
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(26,18,8,.06);
}
.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--h-pad);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.navbar-logo img { height: 36px; width: auto; }
.navbar-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.navbar-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.navbar-link:hover { color: var(--gold); }
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}
.navbar-ig {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color .2s;
  flex-shrink: 0;
}
.navbar-ig:hover { color: var(--gold); }
.navbar-cta {
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: .02em;
  white-space: nowrap;
}
/* Mobile: esconder links de nav, manter logo + ig + cta */
@media (max-width: 900px) {
  .navbar-links { display: none; }
  .navbar-inner { gap: 12px; }
}
@media (max-width: 480px) {
  .navbar-cta { padding: 9px 14px; font-size: 12px; }
  .navbar-logo img { height: 28px; }
  .navbar-logo-text { font-size: 15px; }
}

/* ===== TOKENS GLOBAIS ===== */
:root {
  --bg:          #F2EFE6;
  --bg-card:     #EAE6DB;
  --bg-elevated: #E2DDD0;
  --bg-band:     #DDD8CA;

  --gold:        #D4A847;
  --gold-light:  #E8C46A;
  --gold-dark:   #B8902E;
  --gold-dim:    rgba(212,168,71,.12);

  --cream:       #1A1208;
  --muted:       rgba(26,18,8,.65);
  --faint:       rgba(26,18,8,.40);

  --red:         #C0392B;
  --green:       #27AE60;

  --border:      rgba(212,168,71,.30);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --max-w:   1200px;
  --sec-pad: clamp(40px, 5vw, 72px);
  --h-pad:   clamp(16px, 4vw, 64px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITÁRIOS ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--h-pad);
}

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.golden-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BOTÕES ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #0A1628;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: var(--r-md);
  padding: 16px 32px;
  font-size: 15px;
  letter-spacing: .02em;
  transition: filter .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,71,.35);
}

.btn-cta-large {
  font-size: 18px;
  padding: 20px 48px;
  letter-spacing: .03em;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--cream);
  background: transparent;
  border-radius: var(--r-md);
  padding: 14px 28px;
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 500;
  transition: border-color .2s, color .2s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s }
.reveal-delay-2 { transition-delay: .2s }
.reveal-delay-3 { transition-delay: .3s }
.reveal-delay-4 { transition-delay: .45s }
.reveal-delay-5 { transition-delay: .6s }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.card-elevated {
  background: var(--bg-elevated);
}

/* ===== STAT BADGE ===== */
.stat-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,71,.25);
  color: var(--gold-dark);
  font-size: 12px;
  border-radius: var(--r-sm);
  padding: 4px 10px;
  margin-top: 10px;
}

/* ===== PERCEIVED VALUE ===== */
.perceived-value {
  font-size: 11px;
  color: var(--gold-dark);
  background: var(--gold-dim);
  border-radius: var(--r-sm);
  padding: 3px 8px;
  margin-top: 8px;
  display: inline-block;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: hidden;
  user-select: none;
}
.lightbox-overlay.lightbox-zoomed {
  overflow: auto;
  align-items: flex-start;
  justify-content: center;
}
.lightbox-img {
  max-width: min(88vw, 680px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 0 48px rgba(212,168,71,.3);
  display: block;
}
.lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-zoom-controls {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,.7);
  border-radius: var(--r-md);
  padding: 8px 20px;
  z-index: 1002;
}
.lightbox-zoom-controls button {
  color: #fff;
  font-size: 20px;
  padding: 4px 8px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: .85;
  transition: opacity .15s;
}
.lightbox-zoom-controls button:disabled { opacity: .3; cursor: not-allowed; }
.lightbox-zoom-controls span { color: #fff; font-size: 13px; min-width: 48px; text-align: center; }

/* ===== CARROSSEL ===== */
.depo-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}
.depo-viewport {
  display: flex;
  gap: 16px;
  flex: 1;
  overflow: hidden;
}
.depo-frame {
  flex: 0 0 calc(33.333% - 11px);
  height: 300px;
  cursor: pointer;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
.depo-frame-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.depo-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.depo-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.depo-arrow:hover {
  background: var(--bg-elevated);
  border-color: var(--gold);
}
.depo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.depo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--faint);
  border: none;
  padding: 0;
  transition: background .2s, transform .2s;
}
.depo-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-body);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform .3s;
  line-height: 1;
}
.faq-icon.open { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding-bottom: 20px; }

/* ===== RESPONSIVO GLOBAL ===== */

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
  /* Carrossel: 2 imagens */
  .depo-frame { flex: 0 0 calc(50% - 8px); height: 260px; }
  .depo-frame + .depo-frame + .depo-frame { display: none; }

  /* Lightbox */
  .lightbox-img { max-width: 92vw; max-height: 78vh; }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  /* Botões */
  .btn-primary { font-size: 14px; padding: 14px 24px; }
  .btn-cta-large { font-size: 15px; padding: 16px 28px; }
  .btn-secondary { font-size: 14px; padding: 12px 20px; }

  /* Carrossel: 1 imagem */
  .depo-frame { flex: 0 0 100%; height: 220px; }
  .depo-frame + .depo-frame { display: none; }
  .depo-viewport { gap: 0; }

  /* Lightbox */
  .lightbox-img { max-width: 95vw; max-height: 70vh; }
  .lightbox-zoom-controls { bottom: 12px; padding: 6px 14px; }
  .lightbox-zoom-controls button { font-size: 16px; }
  .lightbox-close { top: 10px; right: 14px; font-size: 26px; }

  /* Depo arrows menores */
  .depo-arrow { width: 36px; height: 36px; font-size: 16px; }

  /* Scroll reveal sem deslocamento exagerado */
  .reveal { transform: translateY(14px); }
}
