/* ─── Fonts ─────────────────────────────────────── */
@font-face { font-family: "Sora"; src: url("fonts/Sora-Light.ttf") format("truetype"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Sora"; src: url("fonts/Sora-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Sora"; src: url("fonts/Sora-Medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Sora"; src: url("fonts/Sora-SemiBold.ttf") format("truetype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Sora"; src: url("fonts/Sora-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Sora"; src: url("fonts/Sora-ExtraBold.ttf") format("truetype"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Walbaum"; src: url("fonts/Walbaum60ptItalic.ttf") format("truetype"); font-style: italic; font-weight: 400; font-display: swap; }
@font-face { font-family: "Walbaum"; src: url("fonts/Walbaum60ptLight.ttf") format("truetype"); font-style: normal; font-weight: 300; font-display: swap; }

/* ─── Tokens ────────────────────────────────────── */
:root {
  --bg: #EFEAE3;
  --bg-deep: #E5DFD5;
  --ink: #0A0A0A;
  --ink-soft: #1a1a1a;
  --muted: #6B6358;
  --line: rgba(10,10,10,0.14);
  --accent: #1B2A47;       /* azul profundo das fotos */
  --accent-deep: #0F1B30;
  --highlight: #0A0A0A;    /* marca-texto preto */
  --highlight-fg: #EFEAE3;
  --radius: 4px;
  --max: 480px;            /* mobile-first canvas */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
html, body { background: var(--bg); color: var(--ink); overflow-x: hidden; }
body {
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle paper grain texture */
body.grain::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.32'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.5;
}

/* ─── Layout shell ──────────────────────────────── */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--bg);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,0,0,0.08);
}

/* ─── Header strip ──────────────────────────────── */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  padding: 16px 20px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 400;
}
.topbar .right { text-align: right; }
.topbar .center { text-align: center; }

/* ─── Type system ───────────────────────────────── */
h1, h2, h3 { font-family: "Sora"; letter-spacing: -0.02em; line-height: 1.02; font-weight: 800; }
h1 { font-size: clamp(34px, 9.5vw, 48px); }
h2 { font-size: clamp(28px, 7.8vw, 38px); line-height: 1.05; }
h3 { font-size: 18px; font-weight: 700; line-height: 1.25; }
.eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--ink); }
.lead { font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.lead-soft { font-size: 15px; line-height: 1.6; color: var(--muted); }
.italic { font-family: "Walbaum"; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

/* Marca-texto highlight (background sticker, like the creatives) */
.mark {
  background: var(--highlight);
  color: var(--highlight-fg);
  padding: 0 0.04em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: inherit;
}
.mark-blue { background: var(--accent); color: #fff; padding: 0 0.04em; }
.underline-deco {
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 100% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
}

/* ─── Sections ──────────────────────────────────── */
section { padding: 56px 20px; position: relative; }
section + section { border-top: 1px solid var(--line); }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 24px;
}
.section-tag .num { font-family: "Walbaum"; font-style: italic; font-weight: 300; font-size: 14px; letter-spacing: 0; }
.section-tag .dot { width: 4px; height: 4px; background: var(--ink); border-radius: 50%; }

/* ─── Hero ──────────────────────────────────────── */
.hero { padding: 0 0 0; }
.hero-top { padding: 8px 20px 0; }
.hero-tag {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; padding: 10px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: flex; justify-content: center; align-items: center;
  margin: 18px 0 32px;
}

.hero h1 {
  padding: 0 20px;
  font-size: clamp(36px, 10vw, 52px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero h1 .italic { font-weight: 400; font-size: 0.92em; }

.hero-sub {
  padding: 32px 20px 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero-sub strong { font-weight: 700; }

.cta-block { padding: 0 20px 56px; }

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%;
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 22px 24px;
  font-family: "Sora";
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover { background: var(--accent); transform: translateY(-1px); }
.btn .arrow { display: inline-block; transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-blue { background: var(--accent); }
.btn-blue:hover { background: var(--accent-deep); }
.btn-micro {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* ─── Problem block ─────────────────────────────── */
.problem { background: var(--bg-deep); }
.problem h2 { margin-bottom: 22px; }
.problem h2 .italic { font-weight: 400; }

/* ─── Solution ──────────────────────────────────── */
.solution h2 .italic { font-weight: 400; }
.solution-photo {
  margin: 36px 0 0;
  width: 100%;
  max-width: 100%;
  height: 360px;
  overflow: hidden;
  background: var(--bg-deep);
}
.solution-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block;
  filter: saturate(0.95) contrast(1.02);
}

/* ─── Founder ───────────────────────────────────── */
.founder { padding: 64px 20px; background: var(--bg-deep); }
.founder h2 .italic { font-weight: 400; }
.founder-grid { display: flex; flex-direction: column; gap: 32px; }
.founder-photo {
  height: 360px;
  overflow: hidden;
  background: var(--accent);
  max-width: 100%;
}
.founder-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ─── Deliverables ──────────────────────────────── */
.deliverables { background: var(--ink); color: var(--bg); }
.deliverables .eyebrow { color: var(--bg); opacity: 0.7; }
.deliverables h2 { color: var(--bg); margin-bottom: 36px; }
.deliverables h2 .italic { font-weight: 400; opacity: 0.8; }
.deliverables-list { display: flex; flex-direction: column; gap: 0; }
.deliverable {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.deliverable:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.deliverable .num {
  font-family: "Walbaum";
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--bg);
  opacity: 0.7;
  line-height: 1;
}
.deliverable h3 { color: var(--bg); margin-bottom: 8px; font-size: 17px; }
.deliverable p { color: var(--bg); opacity: 0.7; font-size: 14px; line-height: 1.55; }
.deliverable strong { font-weight: 700; opacity: 1; }

/* ─── Social proof ──────────────────────────────── */
.proof { padding: 56px 0; }
.proof-inner { padding: 0 20px; }
.proof h2 { margin-bottom: 28px; padding: 0 20px; }
.proof h2 .italic { font-weight: 400; }
.proof-photo {
  width: 100%;
  max-width: 100%;
  height: 360px;
  margin-bottom: 28px;
  overflow: hidden;
}
.proof-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.95) contrast(1.02);
}
.proof-quote {
  padding: 0 20px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}
.proof-quote strong { font-weight: 700; }
.proof-stat {
  margin-top: 28px;
  padding: 24px 20px;
  margin-left: 20px; margin-right: 20px;
  background: var(--accent);
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}
.proof-stat .big {
  font-family: "Sora";
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.proof-stat .small {
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.45;
  opacity: 0.9;
}

/* ─── Tour map + cities ─────────────────────────── */
.tour { background: var(--accent); color: #fff; padding: 64px 0; }
.tour .section-tag { color: #fff; padding: 0 20px; }
.tour .section-tag .dot { background: #fff; }
.tour h2 { color: #fff; padding: 0 20px; margin-bottom: 12px; }
.tour h2 .italic { font-weight: 400; opacity: 0.8; }
.tour-sub { padding: 0 20px; color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 15px; }
.tour-map { padding: 0 20px; margin-bottom: 36px; }
.tour-map svg { width: 100%; height: auto; display: block; }
.cities { padding: 0 20px; display: flex; flex-direction: column; gap: 0; }
.city {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: padding 0.25s ease;
}
.city:last-child { border-bottom: 1px solid rgba(255,255,255,0.18); }
.city:hover { padding-left: 8px; padding-right: 8px; }
.city-info { display: flex; flex-direction: column; gap: 4px; }
.city-date {
  font-family: "Walbaum"; font-style: italic; font-weight: 300;
  font-size: 14px; opacity: 0.7;
}
.city-name {
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
}
.city-vagas {
  text-align: right;
  display: flex; flex-direction: column; gap: 4px;
}
.vagas-num {
  font-family: "Sora"; font-weight: 700; font-size: 20px; line-height: 1;
}
.vagas-label {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.65;
}
.city.sold-out .vagas-num { opacity: 0.4; text-decoration: line-through; }
.city.sold-out::after {
  content: "ESGOTADO";
  font-size: 9px; letter-spacing: 0.22em;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.18);
  padding: 4px 8px;
  margin-left: 12px;
}
.tour-micro {
  padding: 24px 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.5;
}

/* ─── Gallery ───────────────────────────────────── */
.gallery { padding: 64px 0 56px; }
.gallery .section-tag { padding: 0 20px; }
.gallery h2 { padding: 0 20px; margin-bottom: 36px; }
.gallery h2 .italic { font-weight: 400; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 20px;
}
.gallery-item {
  aspect-ratio: 4/5;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 3/2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}
.gallery-placeholder .ico {
  font-family: "Walbaum"; font-style: italic; font-size: 36px;
  margin-bottom: 12px; opacity: 0.4;
}

/* ─── FAQ ──────────────────────────────────────── */
.faq { background: var(--bg-deep); padding: 64px 20px; }
.faq h2 { margin-bottom: 32px; }
.faq h2 .italic { font-weight: 400; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  background: none;
  border: none;
  text-align: left;
  font-family: "Sora";
  color: var(--ink);
  width: 100%;
}
.faq-q .plus {
  font-family: "Walbaum"; font-style: italic; font-weight: 300;
  font-size: 22px; transition: transform 0.3s ease;
  width: 24px; text-align: center;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 0 22px;
}

/* ─── Form (apply) ──────────────────────────────── */
.apply { background: var(--ink); color: var(--bg); padding: 64px 20px 80px; }
.apply .eyebrow { color: var(--bg); opacity: 0.7; }
.apply h2 { color: var(--bg); margin-bottom: 16px; }
.apply h2 .italic { font-weight: 400; opacity: 0.85; }
.apply-sub {
  color: rgba(239,234,227,0.7);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 36px;
}
form.apply-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600;
  color: rgba(239,234,227,0.6);
}
.field label .req { color: var(--bg); opacity: 0.4; }
.field input, .field textarea, .field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(239,234,227,0.25);
  color: var(--bg);
  font-family: "Sora";
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0 12px;
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
}
.field input::placeholder, .field textarea::placeholder {
  color: rgba(239,234,227,0.3);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--bg);
}
.field textarea {
  resize: none;
  min-height: 90px;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23EFEAE3' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
  cursor: pointer;
}
.field select option { background: var(--ink); color: var(--bg); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.apply .btn {
  background: var(--bg);
  color: var(--ink);
  margin-top: 12px;
}
.apply .btn:hover { background: var(--accent); color: #fff; }
.apply .btn-micro { color: rgba(239,234,227,0.5); }

.success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.success.show { display: block; }
.success .check {
  font-family: "Walbaum"; font-style: italic;
  font-size: 80px; line-height: 1;
  margin-bottom: 24px;
  opacity: 0.6;
}
.success h3 { font-size: 24px; margin-bottom: 12px; }
.success p { color: rgba(239,234,227,0.7); }

/* ─── Footer ────────────────────────────────────── */
footer {
  padding: 40px 20px 32px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
footer .brand {
  font-family: "Walbaum"; font-style: italic; font-weight: 300;
  font-size: 24px; color: var(--ink); margin-bottom: 12px;
  letter-spacing: -0.01em;
}

/* ─── Reveal animations ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ─── Sticky bottom CTA (mobile) ────────────────── */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 32px);
  max-width: 448px;
  z-index: 50;
  background: var(--ink);
  color: var(--bg);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.sticky-cta.show { transform: translateX(-50%) translateY(0); }
.sticky-cta .label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.sticky-cta .meta {
  font-size: 10px; opacity: 0.6; margin-top: 2px; letter-spacing: 0.04em;
}
.sticky-cta .arrow {
  font-family: "Walbaum"; font-style: italic; font-size: 24px; line-height: 1;
}

/* ─── Desktop polish ────────────────────────────── */
@media (min-width: 600px) {
  :root { --max: 520px; }
  .shell { margin-top: 32px; margin-bottom: 32px; }
  body { background: #DCD4C7; }
}
