/* ============================================================
   lancamento-livro.css  —  v3  (hero responsivo + capa)
   Landing: Solte, Entregue e Confie — O Encontro
   Design: melissa-navy #00063c · gold #ebc071 · Inter
   ============================================================ */

/* ── Reset & base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

.ll-page {
  font-family: 'Inter', system-ui, sans-serif;
  color: #00063c;
}

/* ── Layout helpers ──────────────────────────────────────────── */
.ll-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.ll-container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Animações ───────────────────────────────────────────────── */
@keyframes ll-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ll-pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(235,192,113,.7); }
  50%       { box-shadow: 0 0 0 12px rgba(235,192,113,0); }
}
@keyframes ll-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.ll-fade-up            { animation: ll-fade-up .7s ease both; }
.ll-fade-up-delay-1    { animation-delay: .15s; }
.ll-fade-up-delay-2    { animation-delay: .3s; }
.ll-fade-up-delay-3    { animation-delay: .45s; }

/* ── Scroll-reveal ───────────────────────────────────────────── */
.ll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.ll-reveal.revealed { opacity: 1; transform: none; }

/* ── Eyebrow badge ───────────────────────────────────────────── */
.ll-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ebc071;
  border: 1px solid rgba(235,192,113,.4);
  border-radius: 9999px;
  padding: .35rem 1rem;
}

/* ── Section badge ───────────────────────────────────────────── */
.ll-section-badge {
  display: inline-block;
  background: #ebc071;
  color: #00063c;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 9999px;
  margin-bottom: .5rem;
}

/* ── Tipografia de seção ─────────────────────────────────────── */
.ll-section-head { text-align: left; }
.ll-section-head-center { text-align: center; }

.ll-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin: .25rem 0 1rem;
}
.ll-color-navy  { color: #00063c; }
.ll-color-white { color: #ffffff; }
.ll-color-gray  { color: #6b7280; }

.ll-section-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  /* Texto para fundos claros (branco / gradiente claro). O branco fica só em .ll-section-dark. */
  color: #4b5563;
  max-width: 600px;
  margin: .5rem auto 0;
}
.ll-section-dark .ll-section-lead {
  color: rgba(255, 255, 255, 0.78);
}
.ll-section-lead.ll-color-gray {
  color: #6b7280;
}

.ll-section-cta { margin-top: 2.5rem; text-align: center; }

/* ── Prose ───────────────────────────────────────────────────── */
.ll-prose { color: #374151; font-size: 1.05rem; line-height: 1.75; }
.ll-prose p + p { margin-top: 1rem; }
.ll-prose strong { color: #00063c; }

/* ── Pull quote ──────────────────────────────────────────────── */
.ll-pullquote {
  border-left: 4px solid #ebc071;
  background: linear-gradient(135deg, rgba(235,192,113,.07) 0%, transparent 100%);
  border-radius: 0 .75rem .75rem 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  color: #00063c;
  line-height: 1.7;
}

/* Secção «O livro»: capa + texto (mobile empilhado; desktop duas colunas) */
.ll-book-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  margin: 2rem 0 1.5rem;
}
.ll-book-showcase-cover {
  margin: 0;
  flex-shrink: 0;
  max-width: min(220px, 72vw);
  width: 100%;
}
.ll-book-showcase-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 12px 28px rgba(0, 6, 60, 0.18))
    drop-shadow(0 4px 10px rgba(0, 6, 60, 0.1));
}
.ll-book-showcase-prose {
  width: 100%;
  max-width: 40rem;
}
@media (min-width: 768px) {
  .ll-book-showcase {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2.25rem;
    text-align: left;
  }
  .ll-book-showcase-cover {
    max-width: 240px;
  }
}
@media (min-width: 1024px) {
  .ll-book-showcase-cover {
    max-width: 260px;
  }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.ll-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #ebc071;
  color: #00063c;
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 1.75rem;
  border-radius: .625rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  animation: ll-pulse-gold 2.5s infinite;
  transition: background .2s, transform .15s;
}
.ll-btn-primary:hover { background: #d4a84f; transform: scale(1.03); }

.ll-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: transparent;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.5rem;
  border-radius: .625rem;
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.ll-btn-outline:hover { border-color: #ebc071; color: #ebc071; background: rgba(235,192,113,.08); }

/* ── Seções ──────────────────────────────────────────────────── */
.ll-section-white {
  background: #ffffff;
  padding: 5rem 0;
}
.ll-section-dark {
  background: #00063c;
  padding: 5rem 0;
}
.ll-section-form {
  background: linear-gradient(135deg, #fffbf2 0%, #ffffff 50%, #f0f3ff 100%);
  padding: 5rem 0;
}

/* ── Hero — mobile: intro → capa → texto/CTAs; desktop: copy | capa (centrada) ─ */
.ll-hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #020c4a 0%, #00063c 45%, #061a5c 100%);
  background-size: 200% 200%;
  animation: ll-gradient-shift 14s ease infinite;
  color: #fff;
  padding: clamp(2rem, 6vw, 3.25rem) 0 clamp(2.75rem, 8vw, 4.5rem);
  text-align: center;
}

/* Profundidade sutil sem competir com a capa */
.ll-hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 70% at 50% 35%, transparent 0%, rgba(0, 6, 60, 0.45) 100%);
}

.ll-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ll-hero-orb-1 {
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  background: rgba(235, 192, 113, 0.09);
  top: -12%;
  right: -15%;
  filter: blur(64px);
}
.ll-hero-orb-2 {
  width: min(340px, 85vw);
  height: min(340px, 85vw);
  background: rgba(1, 19, 150, 0.35);
  bottom: -8%;
  left: -12%;
  filter: blur(56px);
}

.ll-hero-inner {
  position: relative;
  z-index: 1;
}

/* Mobile: coluna; ordem visual = título → capa → resto */
.ll-hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3.5vw, 1.75rem);
  max-width: 640px;
  margin: 0 auto;
}

.ll-hero-intro {
  width: 100%;
}

.ll-hero-title {
  font-size: clamp(2.05rem, 7.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 1rem 0 0;
  text-wrap: balance;
}
.ll-hero-title-line {
  display: block;
  text-transform: none;
}
.ll-hero-title-line--accent {
  color: #ebc071;
  margin-top: 0.12em;
}

.ll-hero-subtitle-tag {
  display: block;
  font-size: clamp(0.95rem, 2.8vw, 1.2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.65rem;
}

.ll-hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0.25rem 0;
}

/* Halo dourado atrás do mockup */
.ll-hero-cover-glow {
  position: absolute;
  width: min(92%, 320px);
  aspect-ratio: 5 / 6;
  border-radius: 12px;
  background: radial-gradient(
    ellipse at 50% 45%,
    rgba(235, 192, 113, 0.42) 0%,
    rgba(235, 192, 113, 0.08) 45%,
    transparent 72%
  );
  filter: blur(18px);
  transform: translateY(8%) scale(1.05);
  z-index: 0;
}

.ll-hero-cover {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(248px, 72vw);
  width: 100%;
}

.ll-hero-cover-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.22),
    0 28px 56px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.07);
}

/* Arte da capa sem mockup 3D — sombra suave que acompanha o recorte (melhor com PNG/WebP alpha) */
.ll-hero-cover-img--cutout {
  border-radius: 4px;
  box-shadow: none;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.42))
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 40px rgba(235, 192, 113, 0.12));
}

@media (min-width: 400px) {
  .ll-hero-cover {
    max-width: min(268px, 68vw);
  }
}

@media (min-width: 480px) {
  .ll-hero-cover {
    max-width: min(288px, 58vw);
  }
}

.ll-hero-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.ll-hero-desc {
  font-size: clamp(1rem, 3.2vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36em;
  margin: 0 auto 1.25rem;
  text-wrap: pretty;
}

.ll-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.35rem;
}

/* Botões full-width só no telefone estreito (área de polegar) */
@media (max-width: 399px) {
  .ll-hero-ctas .ll-btn-primary,
  .ll-hero-ctas .ll-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

.ll-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  justify-content: center;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
  max-width: 100%;
}

.ll-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ll-hero-meta-item i {
  color: #ebc071;
  flex-shrink: 0;
}

.ll-hero-meta-dot {
  display: none;
  color: rgba(255, 255, 255, 0.25);
}

@media (min-width: 520px) {
  .ll-hero-meta-dot {
    display: inline;
  }
}

/* Endereço completo (CEP) — linha secundária abaixo das meta chips */
.ll-hero-address {
  margin: 0.35rem auto 0;
  max-width: 36rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
}

/* ── Hero desktop (lg): duas colunas, alinhamento editorial ───── */
@media (min-width: 1024px) {
  .ll-hero-section {
    text-align: left;
    padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  }

  .ll-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, min(420px, 36vw));
    grid-template-rows: auto auto;
    column-gap: clamp(2rem, 4vw, 3.5rem);
    row-gap: clamp(1rem, 2vw, 1.5rem);
    align-items: start;
    max-width: 1120px;
    margin: 0;
  }

  .ll-hero-intro {
    grid-column: 1;
    grid-row: 1;
  }

  .ll-hero-body {
    grid-column: 1;
    grid-row: 2;
    align-items: flex-start;
  }

  .ll-hero-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
    width: 100%;
    max-width: 420px;
  }

  .ll-hero-cover-glow {
    width: min(100%, 400px);
    filter: blur(22px);
    transform: translateY(5%) scale(1.08);
  }

  .ll-hero-cover {
    max-width: 100%;
  }

  .ll-hero-title {
    margin-top: 1.25rem;
    font-size: clamp(2.6rem, 3.6vw, 3.65rem);
  }

  .ll-hero-desc {
    margin: 0 0 1.5rem;
    text-align: left;
    max-width: 38rem;
  }

  .ll-hero-ctas {
    justify-content: flex-start;
    margin-bottom: 1.5rem;
  }

  .ll-hero-meta {
    justify-content: flex-start;
    text-align: left;
  }

  .ll-hero-address {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .ll-hero-grid {
    column-gap: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ll-hero-section {
    animation: none;
  }
  .ll-fade-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Benefícios ──────────────────────────────────────────────── */
.ll-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .ll-benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.ll-benefit-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 1rem;
  padding: 1.4rem 1.25rem;
  transition: background .2s, border-color .2s;
}
.ll-benefit-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(235,192,113,.3);
}
.ll-benefit-icon {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  background: linear-gradient(135deg, #ebc071, #d4a84f);
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #00063c;
  box-shadow: 0 4px 14px rgba(235,192,113,.35);
}
.ll-benefit-title {
  display: block;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: .3rem;
}
.ll-benefit-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.62);
  line-height: 1.55;
}

/* ── Autor ───────────────────────────────────────────────────── */
.ll-author-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .ll-author-grid {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }
}
.ll-author-img-wrap {
  flex-shrink: 0;
  position: relative;
  max-width: 260px;
  width: 100%;
  margin: 0 auto;
}
.ll-author-img-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, #ebc071 0%, #011396 100%);
  border-radius: 1.25rem;
  opacity: .3;
  z-index: 0;
}
.ll-author-img-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  display: block;
  width: 100%;
  height: auto;
}

/* ── Timeline ────────────────────────────────────────────────── */
.ll-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}

/* Linha vertical tracejada */
.ll-timeline::before {
  content: '';
  position: absolute;
  left: 5.5rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(235,192,113,.45) 0px,
    rgba(235,192,113,.45) 6px,
    transparent 6px,
    transparent 14px
  );
}
@media (max-width: 639px) {
  .ll-timeline::before { left: 1.5rem; }
}

.ll-timeline-item {
  display: grid;
  grid-template-columns: 5.5rem 2.5rem 1fr;
  align-items: flex-start;
  padding: 1.1rem 0;
}
.ll-timeline-item:first-child { padding-top: 0; }
.ll-timeline-item:last-child  { padding-bottom: 0; }

@media (max-width: 639px) {
  .ll-timeline-item { grid-template-columns: 2.5rem 2rem 1fr; }
}

.ll-timeline-time {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ebc071;
  line-height: 1;
  padding-top: .35rem;
  text-align: right;
  padding-right: .6rem;
  letter-spacing: -.02em;
}
@media (max-width: 639px) {
  .ll-timeline-time { font-size: .85rem; padding-top: .45rem; }
}

.ll-timeline-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: .25rem;
  position: relative;
  z-index: 1;
}
.ll-timeline-dot {
  width: .875rem; height: .875rem;
  border-radius: 50%;
  background: #ebc071;
  border: 2px solid #00063c;
  box-shadow: 0 0 0 3px rgba(235,192,113,.35);
  flex-shrink: 0;
}

.ll-timeline-content { padding-left: 1.25rem; padding-bottom: .5rem; }

.ll-timeline-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .875rem;
  padding: 1.1rem 1.4rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.ll-timeline-card:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(235,192,113,.3);
  transform: translateX(4px);
}
.ll-timeline-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  margin: 0 0 .3rem;
}
.ll-timeline-card-sub {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  margin: 0;
}

/* ── Formulário ──────────────────────────────────────────────── */
.ll-form-card {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,6,60,.12), 0 4px 16px rgba(0,6,60,.06);
  padding: 2.5rem;
  max-width: 480px;
  margin: 0 auto;
  color: #374151; /* texto padrão no cartão — evita herança acidental de cor clara */
}
@media (max-width: 480px) { .ll-form-card { padding: 1.75rem 1.25rem; } }

.ll-form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
.ll-form-group label { font-size: .85rem; font-weight: 600; color: #00063c; }
.ll-required { color: #ef4444; }
.ll-form-group input {
  padding: .85rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: .625rem;
  font-size: 1rem;
  font-family: inherit;
  color: #00063c;
  outline: none;
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
}
.ll-form-group input:focus {
  border-color: #ebc071;
  box-shadow: 0 0 0 3px rgba(235,192,113,.2);
  background: #fff;
}
.ll-form-group input::placeholder { color: #9ca3af; }

.ll-form-submit {
  width: 100%;
  padding: 1rem;
  background: #ebc071;
  color: #00063c;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: .625rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  animation: ll-pulse-gold 2.5s infinite;
  transition: background .2s, transform .15s;
}
.ll-form-submit:hover:not(:disabled) { background: #d4a84f; transform: scale(1.02); }
.ll-form-submit:disabled { opacity: .7; cursor: not-allowed; animation: none; }

.ll-form-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.1rem;
  justify-content: center;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid #f3f4f6;
}
.ll-form-info-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: #6b7280;
  font-weight: 500;
}
.ll-form-info-item i { color: #ebc071; font-size: .85rem; }
.ll-form-obs { margin-top: .9rem; font-size: .77rem; color: #6b7280; text-align: center; line-height: 1.5; }

.ll-field-error { font-size: .77rem; color: #ef4444; margin-top: .2rem; display: none; }
.ll-field-error.visible { display: block; }

/* ── Sucesso ─────────────────────────────────────────────────── */
.ll-success-state { display: none; flex-direction: column; align-items: center; text-align: center; gap: 1rem; padding: 1rem 0; }
.ll-success-state.active { display: flex; }
.ll-success-icon {
  width: 3.75rem; height: 3.75rem;
  background: linear-gradient(135deg, #ebc071, #d4a84f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #00063c;
}
.ll-success-title { font-size: 1.2rem; font-weight: 700; color: #00063c; margin: 0; }
.ll-success-desc  { color: #4b5563; line-height: 1.6; margin: 0; }
.ll-success-note  { font-size: .82rem; color: #9ca3af; margin: 0; }

/* ── Footer simplificado ─────────────────────────────────────── */
.ll-footer {
  background: #00063c;
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 2rem 1.25rem;
  font-size: .8rem;
  line-height: 1.7;
}
.ll-footer a { color: #ebc071; text-decoration: none; }
.ll-footer a:hover { text-decoration: underline; }

/* ── Modal de inscrição (lançamento) ─────────────────────────────
   A classe Tailwind arbitrária z-[60] não existe em output.css (o build não
   inclui utilitários não vistos pelo scanner). Sem z-index explícito, o modal
   fixed empilha como auto e fica atrás do menu do site (z-index: 50). */
#modal-lancamento-inscricao {
  z-index: 10000;
}

/* ── Navbar minimalista (LP tráfego pago — sem fuga) ─────────── */
.ll-nav-minimal {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 6, 60, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.ll-nav-minimal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.ll-nav-minimal-logo img {
  display: block;
  height: 3.25rem;
  width: auto;
}

/* ── Formulário inline no hero (mobile) ─────────────────────── */
.ll-hero-inline-form {
  width: 100%;
  max-width: 24rem;
  margin: 1rem auto 0;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.ll-hero-inline-label {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ebc071;
  text-align: center;
}
.ll-hero-inline-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ll-hero-inline-fields input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
}
.ll-hero-inline-fields input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.ll-hero-inline-fields input:focus {
  outline: none;
  border-color: #ebc071;
  box-shadow: 0 0 0 2px rgba(235, 192, 113, 0.35);
}
.ll-hero-inline-error {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #fca5a5;
  text-align: center;
}
.ll-hero-inline-submit {
  width: 100%;
  margin-top: 0.65rem;
}
.ll-hero-inline-success {
  width: 100%;
  max-width: 24rem;
  margin: 1rem auto 0;
  padding: 1rem;
  text-align: center;
  border-radius: 1rem;
  background: rgba(235, 192, 113, 0.15);
  border: 1px solid rgba(235, 192, 113, 0.35);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
}
.ll-hero-go-now {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 700;
  color: #ebc071;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ll-hero-go-now--modal {
  color: #011396;
}

@media (min-width: 1024px) {
  .ll-hero-inline-form,
  .ll-hero-inline-success {
    display: none !important;
  }
}

/* ── Sticky CTA mobile ──────────────────────────────────────── */
.ll-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(0, 6, 60, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(235, 192, 113, 0.25);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}
.ll-sticky-cta-btn {
  width: 100%;
  animation: none;
}
@media (min-width: 1024px) {
  .ll-sticky-cta {
    display: none !important;
  }
}

/* Espaço para sticky não cobrir conteúdo no mobile */
@media (max-width: 1023px) {
  .ll-page {
    padding-bottom: 4.5rem;
  }
}

button.ll-btn-primary {
  font-family: inherit;
}
