/* ============================================================
   Component-specific styles
   ============================================================ */

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(241, 230, 210, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracota); }
.nav-cta {
  padding: 10px 20px;
  font-size: 12px;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(155, 58, 26, 0.06), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(198, 154, 61, 0.05), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-text { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(52px, 7.5vw, 108px);
  margin: 16px 0 24px;
  color: var(--ink);
  line-height: 0.96;
}
.hero-title .accent { font-style: italic; color: var(--terracota); }
.hero-title .accent-gold { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}
.hero-actions .btn { white-space: nowrap; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta > div:not(.hero-meta-divider) {
  display: flex;
  flex-direction: column;
}
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: normal;
  color: var(--terracota);
  line-height: 1;
}
.hero-meta span {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-meta-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}
.hero-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 110px;
  height: 110px;
  color: var(--bg-cream);
  opacity: 0.85;
  transform: rotate(-12deg);
}
.hero-stamp .stamp-text {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  fill: currentColor;
  font-weight: 600;
}
.hero-coords {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--bg-cream);
  background: rgba(43, 24, 16, 0.6);
  padding: 6px 12px;
  backdrop-filter: blur(4px);
}

/* Hero — fullbleed variant */
.hero--fullbleed {
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}
.hero--fullbleed .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero--fullbleed .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(43, 24, 16, 0.78) 0%, rgba(43, 24, 16, 0.4) 60%, transparent 100%);
  z-index: 1;
}
.hero--fullbleed .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero--fullbleed .hero-title { color: var(--on-dark); }
.hero--fullbleed .hero-sub { color: var(--on-dark-soft); }
.on-dark { color: var(--on-dark) !important; }

/* Hero — circular variant */
.hero--circular .hero-content.centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-photo-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  margin: 32px 0;
  border: 8px solid var(--bg-cream-2);
}
.hero-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo { aspect-ratio: 3/4; }
}

/* ---------- MANIFESTO ---------- */
.manifesto {
  padding: var(--section-y) 0;
  background: var(--bg-cream-2);
  position: relative;
}
.manifesto::before, .manifesto::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--line-soft);
}
.manifesto::before { top: 0; }
.manifesto::after { bottom: 0; }
.manifesto-inner { text-align: center; }
.manifesto-text {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.15;
  margin: 24px 0 0;
  color: var(--ink);
  text-wrap: balance;
}
.manifesto-text .accent {
  font-style: italic;
  color: var(--terracota);
}

/* ---------- SOBRE ---------- */
.sobre { padding: var(--section-y) 0; }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.sobre-photos {
  position: relative;
  aspect-ratio: 4/5;
}
.sobre-photo-main {
  position: absolute;
  inset: 0;
  width: 78%;
  height: 88%;
  overflow: hidden;
  border-radius: 4px;
}
.sobre-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobre-photo-second {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  overflow: hidden;
  border-radius: 4px;
  border: 8px solid var(--bg-cream);
}
.sobre-photo-second img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobre-stamp {
  position: absolute;
  top: 20px;
  right: 8%;
  width: 120px;
  height: 120px;
  border: 2px solid var(--terracota);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--terracota);
  transform: rotate(-8deg);
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  font-size: 14px;
  font-weight: 600;
  background: rgba(241, 230, 210, 0.5);
  z-index: 2;
}
.sobre-stamp-year {
  font-size: 10px;
  margin-top: 4px;
  letter-spacing: 0.3em;
}
.sobre-title {
  font-size: clamp(40px, 5vw, 72px);
  margin: 24px 0 32px;
}
.sobre-title .accent {
  font-style: italic;
  color: var(--terracota);
}
.sobre-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.sobre-body strong { color: var(--ink); font-weight: 600; }
.sobre-credits {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.sobre-credits .eyebrow {
  display: block;
  margin-bottom: 8px;
}
.sobre-credits p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
@media (max-width: 880px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-credits { grid-template-columns: 1fr; }
}

/* ---------- PASSAPORTES ---------- */
.passaportes {
  padding: var(--section-y) 0;
  background: var(--bg-deep);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.passaportes::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(198, 154, 61, 0.08), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(155, 58, 26, 0.08), transparent 50%);
  pointer-events: none;
}
.passaportes-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  position: relative;
}
.passaportes-title {
  font-size: clamp(48px, 6vw, 96px);
  margin: 24px 0 24px;
  color: var(--on-dark);
}
.accent-gold { font-style: italic; color: var(--gold); }
.passaportes-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--on-dark-soft);
}

.passaportes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 28px;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 760px) { .passaportes-grid { grid-template-columns: 1fr; max-width: 420px; } }

.passaporte {
  background: var(--bg-cream);
  color: var(--ink);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}
.passaporte:hover { transform: translateY(-6px); }

/* Ajuste fino: Concierge com fundo sutilmente diferente */
.passaportes-grid .passaporte:last-child {
  background: #eadcc2;
}
.passaporte.is-featured {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.passaporte-cover {
  background: var(--terracota);
  color: var(--bg-cream);
  padding: 32px 28px 28px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.passaporte--voo .passaporte-cover { background: var(--brown-2); }
.passaporte--global .passaporte-cover { background: var(--terracota-2); }
.passaporte--primeira .passaporte-cover {
  background: linear-gradient(
    180deg,
    #1a0f08 0%,
    #2b1810 100%
  );
}
.passaporte--primeira {
  box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.8);
}
.passaporte-coa {
  width: 56px;
  height: 56px;
  opacity: 0.85;
  margin-bottom: 12px;
}
.passaporte-coa img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.passaporte--primeira .passaporte-coa img {
  filter: brightness(0) saturate(100%) invert(75%) sepia(36%) saturate(581%) hue-rotate(2deg) brightness(89%) contrast(88%);
}
.passaporte-republic {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 8px;
  opacity: 0.75;
}
.passaporte-nome {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0 0 12px;
  text-transform: lowercase;
  line-height: 1;
}
.passaporte-issued {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.6;
}
.passaporte-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.passaporte-page {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.passaporte-stamp {
  position: absolute;
  top: 20px;
  right: 20px;
}
.stamp-circle {
  width: 58px;
  height: 58px;
  border: 1.5px dashed var(--terracota);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--terracota);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;

  transform: rotate(-8deg); /* 🔥 menos inclinado */
  opacity: 0.7;
  text-align: center;
  line-height: 1.2;
  padding: 6px;
}
.passaporte-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 600;
  margin: 0 0 12px;
}
.passaporte-desc {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 28px;
  color: var(--ink);
  text-transform: lowercase;
  max-width: 100%;
}
.passaporte-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.passaporte-list li {
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
}
.check {
  color: var(--terracota);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.passaporte-para {
  padding: 16px 0;
  border-top: 1px dashed var(--line);
  margin-top: auto;
  margin-bottom: 16px;
}
.passaporte-para .eyebrow {
  display: block;
  font-size: 9px;
  margin-bottom: 6px;
}
.passaporte-para p {
  margin: 0;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.passaporte-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.passaporte-preco-bloco {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.passaporte-preco-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.passaporte-preco {
  font-family: var(--font-tenor);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.passaporte-preco--custom {
  font-family: var(--font-tenor);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--ink);
  line-height: 1.2;
}
.passaporte-cta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.passaporte-cta:hover {
  opacity: 0.7;
}

.passaporte-cta::after {
  content: '—';
  font-weight: 300;
}

