/* ===================================================================
   Introdução ao Seminário "Problemas no Paraíso" (Landing)
   Estilo: dark + fogo (laranja). Jan Val Ellam.
   =================================================================== */

@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/Satoshi-Variable.woff2') format('woff2-variations'),
       url('/fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:            #0A0A0B;
  --bg-soft:       #111012;
  --surface:       #16151A;
  --surface-2:     #1C1A20;
  --border:        rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.14);

  --fire:          #FFC233;
  --fire-bright:   #FFD95E;
  --fire-deep:     #E89A00;
  --fire-glow:     rgba(255,194,51,.45);

  --text:          #F4EFEA;
  --text-muted:    rgba(244,239,234,.62);
  --text-faint:    rgba(244,239,234,.40);

  --light-card:    #FBF9F6;
  --on-light:      #18120E;
  --on-light-mut:  #6A6259;

  --font-head: 'Satoshi', system-ui, sans-serif;
  --font-serif: 'Satoshi', system-ui, sans-serif;
  --font-body: 'Satoshi', system-ui, sans-serif;

  --max: 980px;
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 90% 50% at 70% -5%, rgba(255,194,51,.16), transparent 60%),
    radial-gradient(ellipse 70% 40% at 10% 105%, rgba(255,194,51,.07), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.1;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 820px; }
.accent { color: var(--fire); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .88rem;
  letter-spacing: .01em; padding: 13px 26px; border-radius: 40px;
  border: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  position: relative;
}
.btn-sm { padding: 12px 22px; font-size: .85rem; }
.btn-fire {
  background: linear-gradient(135deg, var(--fire-bright), var(--fire) 55%, var(--fire-deep));
  color: var(--on-light);
  box-shadow: 0 8px 24px -6px var(--fire-glow), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-fire::after {
  content: ""; width: 16px; height: 16px; background: var(--on-light);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .18s ease;
}
.btn-fire:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FFE89A, var(--fire-bright) 55%, var(--fire));
  box-shadow: 0 14px 32px -8px var(--fire-glow), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-fire:hover::after { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--fire); color: var(--fire-bright); }
.btn-white {
  background: #fff; color: #19171a;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn-white:hover { transform: translateY(-2px); background: #f2f0ee; box-shadow: 0 14px 32px -10px rgba(0,0,0,.55); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 18px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fire); box-shadow: 0 0 10px var(--fire-glow); }

.section { padding: 100px 0; position: relative; }
.section-divider {
  width: calc(100% - 48px); max-width: var(--max); margin: 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,194,51,.35) 50%, transparent);
}
.section-divider::after {
  content: ""; display: block; width: 6px; height: 6px; margin: -3px auto 0;
  border-radius: 50%; background: var(--fire);
  box-shadow: 0 0 12px var(--fire-glow);
}
.section-title {
  font-family: var(--font-head); font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em; font-size: clamp(2rem, 4vw, 3.1rem);
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; line-height: 1.1; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { padding: 40px 40px 60px; }
.hero-card {
  position: relative; overflow: hidden;
  max-width: var(--max); margin: 0 auto; border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.05);
  background: #100f12;
  min-height: 540px;
}
/* arte/PNG ocupa o banner inteiro, atrás do texto */
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
/* scrim p/ legibilidade do texto sobre a arte (ajustável quando o PNG entrar) */
.hero-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(10,9,11,.72) 0%, rgba(10,9,11,.34) 46%, rgba(10,9,11,.04) 78%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 620px; min-height: 540px;
  padding: 48px 48px 52px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}

.hero-datebar {
  display: inline-flex; align-items: stretch; gap: 0;
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.12);
  margin-bottom: 26px;
}
.date-block { display: flex; flex-direction: column; align-items: center; padding: 12px 22px; }
.date-day { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; line-height: 1; color: #fff; }
.date-month { font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }
.date-sep { width: 1px; background: rgba(255,255,255,.16); }

.hero-eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--fire-bright); margin-bottom: 16px; }
.hero-title {
  font-family: var(--font-head); font-weight: 900; text-transform: uppercase;
  font-size: 36px; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 18px;
}
.hero-sub { color: var(--text-muted); font-size: 1.02rem; max-width: 440px; margin-bottom: 30px; }
.hero-cta { margin-bottom: 18px; }
.hero-author { height: 24px; width: auto; opacity: .85; }

/* (hero-img e scrim definidos no bloco .hero-card acima, arte full-bleed) */

/* ===================================================================
   BENEFÍCIOS
   =================================================================== */
.section-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head .section-title { margin-top: 4px; }
.section-note { color: var(--text-muted); font-size: .98rem; max-width: 330px; text-align: left; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bcard {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; align-items: flex-start;
  transition: transform .2s ease, border-color .2s ease;
}
.bcard:hover { transform: translateY(-4px); border-color: rgba(255,194,51,.4); }
.bcard-media {
  width: 100%; aspect-ratio: 16/10; border-radius: 14px; margin-bottom: 22px;
  overflow: hidden; border: 1px solid var(--border); background: #161416;
}
.bcard-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bcard-title { font-size: 1.2rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 10px; }
.bcard-desc { color: var(--text-muted); font-size: .92rem; line-height: 1.1; margin-bottom: 22px; flex-grow: 1; }
.bcard .btn { width: 100%; align-self: stretch; }

/* ===================================================================
   A AULA
   =================================================================== */
.section-aula { padding: 70px 0 30px; }
.aula-panel {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 56px 44px;
  border: 1px solid var(--border); border-radius: 24px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,194,51,.16), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}
.aula-panel::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(62%, 440px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--fire), transparent);
}
.aula-panel .section-sub { text-align: center; max-width: 580px; margin-top: 14px; }
.aula-detalhes { list-style: none; display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 10px; margin: 28px 0 0; padding: 0; }
.aula-detalhes li {
  display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600;
  color: var(--text); padding: 10px 18px; border: 1px solid var(--border-strong);
  border-radius: 40px; background: rgba(255,255,255,.03);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.aula-detalhes li:hover {
  transform: translateY(-3px);
  border-color: rgba(255,194,51,.45);
  background: rgba(255,194,51,.08);
  box-shadow: 0 10px 24px -12px var(--fire-glow);
}
.aula-detalhes li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--fire); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.aula-detalhes li:hover svg { transform: scale(1.15); }

/* ===================================================================
   PARA PARTICIPAR
   =================================================================== */
.section-participar { text-align: center; }
.part-head { display: flex; flex-direction: column; align-items: center; margin-bottom: 40px; }
.part-head .section-sub { text-align: center; max-width: 520px; margin: 0; }
.part-glass-btn { display: inline-flex; margin-top: 18px; }
.part-cards {
  display: flex; gap: 24px; align-items: flex-start; justify-content: center;
  flex-wrap: wrap; margin-top: 28px;
}
.part-cards .part-glass,
.part-cards .price-card { flex: 1 1 380px; max-width: 430px; margin: 0; }
.part-glass {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-top: 20px; margin-left: auto; margin-right: auto; max-width: 430px; padding: 24px 28px; border-radius: 20px;
  background: rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.22);
}

.price-card {
  max-width: 430px; margin: 0 auto; background: var(--light-card); color: var(--on-light);
  border-radius: 24px; padding: 38px 34px; text-align: left;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
}
.price-label { display: inline-flex; align-items: center; gap: 8px; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--on-light-mut); }
.price-lote-toggle {
  font-size: .66rem; font-weight: 800; letter-spacing: .06em; color: var(--on-light);
  padding: 4px 10px; border-radius: 40px;
  background: rgba(255,194,51,.16); border: 1px solid var(--fire-deep);
}
.price-value { font-family: var(--font-head); font-weight: 900; font-size: 3.2rem; line-height: 1; letter-spacing: -.03em; margin: 8px 0 6px; color: var(--on-light); }
.price-note { color: var(--on-light-mut); font-size: .92rem; margin-bottom: 24px; }
.price-cta { width: 100%; margin-top: 8px; }
.lotes { display: flex; flex-direction: column; gap: 8px; margin: 22px 0 4px; }
.lote {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 4px 10px;
  padding: 12px 16px; border-radius: 14px;
  border: 1px solid rgba(24,18,14,.10); background: rgba(24,18,14,.03);
}
.lote-name { font-family: var(--font-head); font-weight: 800; font-size: .95rem; color: var(--on-light); }
.lote-tag { font-size: .72rem; font-weight: 600; letter-spacing: .04em; color: var(--on-light-mut); }
.lote-price { grid-column: 3; grid-row: 1 / span 2; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--on-light); }
.lote-active { border-color: var(--fire-deep); background: rgba(255,194,51,.14); box-shadow: 0 0 0 1px var(--fire-deep) inset; }
.lote-active .lote-tag { color: var(--fire-deep); font-weight: 700; }
.lote:not(.lote-active) { opacity: .55; }
.lote:not(.lote-active) .lote-price { text-decoration: none; }
.price-list { list-style: none; margin: 26px 0 18px; }
.price-list li { position: relative; padding-left: 30px; font-size: .92rem; color: #3b342d; line-height: 1.1; margin-bottom: 13px; }
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--fire);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat var(--fire);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
/* (botão secundário "Assinar a Orbum" removido, card tem apenas o CTA laranja) */

/* ===================================================================
   SOBRE JAN
   =================================================================== */
.sobre-helper { color: var(--text-muted); font-size: .9rem; margin-bottom: 36px; }
.link-fire { color: var(--fire-bright); font-weight: 600; }
.sobre-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
figure.sobre-foto {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease, border-color .5s ease;
}
.sobre-foto:hover {
  transform: translateY(-6px);
  border-color: rgba(255,194,51,.45);
  box-shadow: 0 22px 50px -12px rgba(0,0,0,.55), 0 0 36px -8px var(--fire-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.sobre-foto img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.sobre-foto:hover img { transform: scale(1.05); }
.sobre-name {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.25);
}
.sobre-name strong { display: block; font-size: 1.15rem; font-weight: 800; color: #fff; }
.sobre-name span { font-size: .82rem; color: rgba(255,255,255,.85); }
.sobre-texto .section-title { margin-bottom: 18px; }
.sobre-texto p { color: var(--text-muted); margin-bottom: 14px; }
.sobre-texto p strong { color: var(--text); }
/* (faixa de aparições na mídia removida) */

/* ===================================================================
   FAQ
   =================================================================== */
.faq-title { text-align: center; margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(255,194,51,.35); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-weight: 600; font-size: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--fire); }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: #fff; border-radius: 2px;
  transform: translate(-50%,-50%); transition: transform .2s ease;
}
.faq-icon::before { width: 11px; height: 2.5px; }
.faq-icon::after { width: 2.5px; height: 11px; }
.faq-item[open] .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item p { padding: 0 24px 22px; color: var(--text-muted); font-size: .94rem; line-height: 1.1; }

/* ===================================================================
   CTA FINAL + FOOTER
   =================================================================== */
.section-final { text-align: center; padding: 90px 0; }
.final-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.final-inner .section-sub { text-align: center; }
.footer { padding: 36px 0; border-top: 1px solid var(--border); text-align: center; }
.footer p { color: var(--text-faint); font-size: .82rem; }

/* ---------- WhatsApp float ---------- */
#wpp-float {
  position: fixed; z-index: 9999; right: 22px; bottom: 140px; width: 56px; height: 56px;
  border-radius: 50%; background: #25d366; display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.5);
}
#wpp-float svg { width: 30px; height: 30px; }

/* ---------- Sticky CTA ---------- */
#sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9000;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 22px; border-radius: 18px;
  background: rgba(30,27,32,.72);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.22);
}
.sticky-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.sticky-text { font-weight: 600; font-size: .9rem; color: var(--text); }
.sticky-lote { font-weight: 700; font-size: .8rem; color: var(--fire); letter-spacing: .01em; }

/* ---------- Modal ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(8,7,9,.62); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay[hidden] { display: none; }
.modal-card {
  background: rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(28px) saturate(180%); backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,.20); border-radius: 22px; padding: 38px 34px; max-width: 440px; width: 100%; position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.25);
}
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: var(--text-muted); font-size: 28px; cursor: pointer; line-height: 1; }
.modal-header { text-align: center; margin-bottom: 18px; }
.modal-eyebrow { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--fire-bright); margin-bottom: 10px; }
.modal-logo { display: block; height: 34px; width: auto; margin: 0 auto 16px; object-fit: contain; }
.modal-title { font-size: 1.4rem; font-weight: 800; line-height: 1.12; }
.modal-title .accent { color: var(--fire-bright); }
.modal-sub { font-size: .92rem; color: var(--text-muted); margin-top: 8px; }
.modal-note {
  position: relative; overflow: hidden; text-align: center; font-size: .88rem; line-height: 1.5; color: var(--text);
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.04) 42%, rgba(255,194,51,.10));
  -webkit-backdrop-filter: blur(16px) saturate(160%); backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.28); border-radius: 16px;
  padding: 16px 18px; margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.45), inset 0 -1px 0 rgba(255,255,255,.10);
}
.modal-note::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.18), transparent); pointer-events: none;
}
.modal-note strong { color: var(--fire-bright); font-weight: 800; }
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text-muted); }
.form-group input {
  background: rgba(255,255,255,.05); border: 1px solid var(--border-strong); border-radius: 10px;
  padding: 9px 14px; font-family: var(--font-body); font-size: .98rem; color: var(--text); outline: none;
}
.form-group input:focus { border-color: var(--fire); }
.modal-submit { width: 100%; margin-top: 6px; }
.modal-privacy { text-align: center; font-size: .76rem; color: var(--text-faint); }

/* ---------- Animações de entrada ---------- */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.hero-card.fade-in { transition-delay: .05s; }

/* ===================================================================
   RESPONSIVO
   =================================================================== */
@media (max-width: 920px) {
  .hero-card { min-height: auto; }
  .hero-content { padding: 40px 28px 44px; min-height: 380px; max-width: none; }
  .hero-card::after { background: linear-gradient(180deg, rgba(10,9,11,.42), rgba(10,9,11,.78)); }
  .cards-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 32px; }
  .section-note { text-align: left; }
  .sobre-grid { grid-template-columns: 1fr; gap: 28px; }
  .sobre-texto { order: -1; }
  .sobre-foto { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 540px) {
  .section { padding: 70px 0; }
  .section-sub, .hero-sub { font-size: 15px; }
  .bcard-desc, .faq-item p, .price-note, .price-list li, .section-note { font-size: 14px; }
  .hero-title { font-size: 32px; order: 1; margin-bottom: 14px; }
  .hero-datebar { order: -2; margin-bottom: 18px; }
  .hero-author { order: -3; height: 16px; margin-bottom: 16px; align-self: flex-start; }
  .hero-sub { order: 2; margin-bottom: 22px; max-width: 250px; }
  .hero-cta { order: 3; margin-bottom: 0; }
  .hero { padding: 20px 14px 12px; }
  .hero-card { aspect-ratio: 348 / 760; min-height: 0; }
  .hero-card::after { background: linear-gradient(180deg, rgba(10,9,11,.80) 0%, rgba(10,9,11,.50) 34%, rgba(10,9,11,0) 60%); }
  .hero-img { object-position: center 38%; }
  .hero-eyebrow { display: none; }
  .hero-content { padding: 32px 22px 36px; min-height: 0; height: 100%; justify-content: flex-start; }
  .date-block { padding: 10px 16px; }
  .container { padding: 0 18px; }
  .part-head { margin-bottom: 18px; }
  .price-card { padding: 30px 24px; }
  .sticky-text {
    font-size: .8rem; font-weight: 700; line-height: 1.2; color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .sticky-lote { font-size: .72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sticky-info { gap: 2px; min-width: 0; flex: 1; }
  #sticky-cta {
    left: 0; right: 0; bottom: 0; top: auto;
    transform: none; opacity: 1; pointer-events: auto;
    border-radius: 16px 16px 0 0;
    justify-content: space-between; gap: 12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(30,27,32,.82);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    border: none;
    border-top: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 -8px 30px rgba(0,0,0,.55);
  }
  #sticky-cta .btn { width: auto; flex-shrink: 0; padding: 7px 13px; font-size: .72rem; }
  #sticky-cta .btn svg { width: 13px; height: 13px; }
  #wpp-float { bottom: 120px; right: 16px; }

  /* Modais (check-in / checkout) cabendo no mobile */
  .modal-overlay { align-items: flex-start; justify-content: center; padding: 16px 14px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .modal-card { padding: 26px 20px; border-radius: 18px; margin: auto; }
  .modal-header { margin-bottom: 14px; }
  .modal-title { font-size: 1.2rem; }
  .modal-sub { font-size: 14px; margin-top: 6px; }
  .modal-note { padding: 13px 15px; font-size: 14px; line-height: 1.4; margin-bottom: 16px; }
  .modal-form { gap: 12px; }
  .form-group label { font-size: 13px; }
  .form-group input { padding: 10px 13px; font-size: 15px; }
  .modal-submit { margin-top: 4px; white-space: nowrap; padding: 13px 18px; }
  .modal-privacy { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; }
  .ember, .ember-orb, .ember-waves .wave { animation: none; }
  html { scroll-behavior: auto; }
}
