/* ============================================================
   HayGifts LP — overrides + seções específicas
   Mobile-first, declarações em ordem: base → md (≥720) → lg (≥1024)
   ============================================================ */

/* ---------- Tokens extras ---------- */
:root {
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 0 rgba(1,27,51,0.04), 0 12px 32px -16px rgba(1,27,51,0.18);
  --shadow-elev: 0 24px 60px -24px rgba(1,27,51,0.28);
  --tap: 44px;
}

/* Body padding pra bottom-bar mobile não sobrepor conteúdo */
@media (max-width: 720px) {
  body { padding-bottom: 76px; }
}

/* ---------- Topbar ---------- */
.lp-topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
}
.lp-topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.lp-topbar__left { display: inline-flex; align-items: center; gap: 18px; opacity: .92; }
.lp-topbar__right { display: inline-flex; align-items: center; gap: 14px; opacity: .92; }
.lp-topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.lp-topbar__item:hover { opacity: 1; color: var(--peach); }
.lp-topbar__dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--peach);
  margin-right: 4px;
}
@media (max-width: 720px) {
  .lp-topbar__left .lp-topbar__item:not(:first-child) { display: none; }
  .lp-topbar__right .lp-topbar__item:nth-child(2) { display: none; }
}

/* ---------- Header ---------- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 238, 231, 0.92);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.lp-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.lp-header__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.lp-header__brand img { height: 30px; width: auto; }
.lp-header__nav { display: none; align-items: center; gap: 28px; }
.lp-header__nav a {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
  position: relative;
  padding: 4px 0;
}
.lp-header__nav a:hover { color: var(--accent); }
.lp-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .2s ease;
}
.lp-header__nav a:hover::after { width: 100%; }
.lp-header__actions { display: flex; align-items: center; gap: 10px; }
.lp-header__cta-mobile { display: inline-flex; }
.lp-header__cta-desktop { display: none; }
@media (min-width: 900px) {
  .lp-header__nav { display: inline-flex; }
  .lp-header__cta-mobile { display: none; }
  .lp-header__cta-desktop { display: inline-flex; }
}

/* ---------- HERO ---------- */
.lp-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(212,94,42,0.06), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(64,92,170,0.05), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 36px 0 56px;
  align-items: center;
}
@media (min-width: 960px) {
  .lp-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    padding: 64px 0 80px;
  }
}
.lp-hero__eyebrow { margin-bottom: 18px; }
.lp-hero__title {
  font-weight: 900;
  font-size: clamp(34px, 7vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
}
.lp-hero__title .accent { color: var(--accent); }
.lp-hero__title .underline {
  background-image: linear-gradient(to top, rgba(251,185,137,0.55) 0 30%, transparent 30% 100%);
  background-repeat: no-repeat;
  padding: 0 4px;
}
.lp-hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--muted);
  margin: 18px 0 26px;
  max-width: 54ch;
  line-height: 1.5;
}
.lp-hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.lp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.lp-hero__trust-item { display: inline-flex; align-items: center; gap: 8px; }
.lp-hero__trust-item svg { color: var(--accent); flex-shrink: 0; }

/* Hero form (inline) */
.lp-hero-form {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-elev);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
@media (min-width: 720px) {
  .lp-hero-form { padding: 28px; }
}
.lp-hero-form__badge {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.lp-hero-form__title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 4px 0 2px;
}
.lp-hero-form__sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 8px;
}

/* Hero visual (alt layout) */
.lp-hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
}
.lp-hero__chip {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 12px 28px -10px rgba(1,27,51,0.3);
}
.lp-hero__chip--a { top: 22%; left: -14px; }
.lp-hero__chip--b { bottom: 14%; right: -10px; }
.lp-hero__chip-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.lp-hero__chip-l { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1; }
.lp-hero__chip-v { font-size: 14px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; margin-top: 3px; }

/* ---------- Form fields (shared) ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field__row { grid-template-columns: 1fr; gap: 12px; } }
.field__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.field__input, .field__select, .field__textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  outline: 0;
  width: 100%;
  min-height: var(--tap);
  transition: border-color .15s ease, box-shadow .15s ease;
  font-family: inherit;
}
.field__input:focus, .field__select:focus, .field__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,94,42,0.12);
}
.field__input.error, .field__select.error, .field__textarea.error {
  border-color: #C53030;
}
.field__error { font-size: 12px; color: #C53030; font-weight: 600; margin-top: 2px; }
.field__hint { font-size: 12px; color: var(--muted); }
.field__select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23011B33' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field__textarea { min-height: 96px; resize: vertical; }
.field__check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; color: var(--muted);
  line-height: 1.45;
  cursor: pointer;
}
.field__check input {
  accent-color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.field__check a { color: var(--ink); font-weight: 600; text-decoration: underline; }

/* ---------- Marquee logos ---------- */
.lp-logos {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  overflow: hidden;
}
.lp-logos__head {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 24px;
}
.lp-logos__track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: marquee 38s linear infinite;
  width: max-content;
}
@media (prefers-reduced-motion: reduce) { .lp-logos__track { animation: none; } }
.lp-logos__item {
  height: 36px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.lp-logos__item img {
  height: 100%;
  width: auto;
  max-width: 240px;
  filter: grayscale(1) brightness(0) opacity(0.5);
  object-fit: contain;
}
@media (max-width: 720px) {
  .lp-logos__track { gap: 44px; }
  .lp-logos__item { height: 28px; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Benefits bar ---------- */
.lp-benefits {
  background: var(--paper);
  padding: 0;
}
.lp-benefits__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px) { .lp-benefits__row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-benefits__row { grid-template-columns: repeat(4, 1fr); } }
.lp-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) {
  .lp-benefits__item { border-bottom: 0; }
  .lp-benefits__item:last-child { border-right: 0; }
}
@media (max-width: 1023px) and (min-width: 640px) {
  .lp-benefits__item:nth-child(2n) { border-right: 0; }
}
@media (max-width: 639px) {
  .lp-benefits__item { border-right: 0; }
}
.lp-benefits__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-benefits__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.lp-benefits__label {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 4px 0 4px;
  line-height: 1.2;
}
.lp-benefits__desc { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ---------- Section base ---------- */
.lp-section { padding: 64px 0; }
@media (min-width: 720px) { .lp-section { padding: 88px 0; } }
.lp-section--tight { padding: 48px 0; }
.lp-section--paper { background: white; }
.lp-section--ink { background: var(--ink); color: var(--cream); }
.lp-section--ink .lp-section__title { color: var(--cream); }
.lp-section--ink .lp-section__sub { color: rgba(244,238,231,.74); }

.lp-section__head {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 640px;
  margin: 0 0 36px;
}
.lp-section__head--center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }
.lp-section__head--row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  max-width: none;
  gap: 24px;
  flex-wrap: wrap;
}
.lp-section__title {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
}
.lp-section__title .accent { color: var(--accent); }
.lp-section__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
  line-height: 1.5;
}

/* ---------- Categorias ---------- */
.lp-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 720px) { .lp-cats { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .lp-cats { grid-template-columns: repeat(3, 1fr); } }
.lp-cat {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  background: var(--cream-2);
  text-align: left;
  padding: 0;
  font-family: inherit;
  color: inherit;
  display: block;
  width: 100%;
}
.lp-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-elev); }
.lp-cat__bg { position: absolute; inset: 0; }
.lp-cat__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(1,27,51,0.78) 0%, rgba(1,27,51,0.1) 45%, transparent 70%);
}
.lp-cat__content {
  position: relative;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lp-cat__count {
  align-self: flex-start;
  background: rgba(255,255,255,0.94);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 9px;
  border-radius: 999px;
}
.lp-cat__name {
  font-weight: 800;
  font-size: clamp(15px, 2vw, 19px);
  letter-spacing: -0.015em;
  color: white;
  line-height: 1.1;
}
.lp-cat__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: white;
  margin-top: 6px;
  opacity: 0.92;
}

/* ---------- Como funciona ---------- */
.lp-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .lp-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-steps { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.lp-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.lp-step:hover { transform: translateY(-3px); border-color: var(--ink); }
.lp-step > * { position: relative; z-index: 1; }
.lp-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(212, 94, 42, 0.00) 30%,
    rgba(212, 94, 42, 0.08) 50%,
    rgba(212, 94, 42, 0.00) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
  animation: lp-step-shine 7s ease-in-out infinite;
}
.lp-step:nth-child(1)::before { animation-delay: 0s; }
.lp-step:nth-child(2)::before { animation-delay: 1.4s; }
.lp-step:nth-child(3)::before { animation-delay: 2.8s; }
.lp-step:nth-child(4)::before { animation-delay: 4.2s; }
@keyframes lp-step-shine {
  0%   { left: -75%; }
  35%  { left: 115%; }
  100% { left: 115%; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-step::before { animation: none; opacity: 0; }
}
.lp-step__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.lp-step__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-step__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.2;
}
.lp-step__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Parque fabril (ink section) ---------- */
.lp-factory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) { .lp-factory { grid-template-columns: 1fr 1fr; gap: 56px; } }
.lp-factory__copy { color: var(--cream); }
.lp-factory__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 14px 0 16px;
  color: var(--cream);
}
.lp-factory__desc {
  color: rgba(244,238,231,.72);
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 28px;
  max-width: 50ch;
}
.lp-factory__nums {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.lp-factory__num {
  padding: 18px 20px;
  background: rgba(244,238,231,0.05);
  border: 1px solid rgba(244,238,231,0.10);
  border-radius: 12px;
}
.lp-factory__num-v {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--cream);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lp-factory__num-l {
  font-size: 12px;
  color: rgba(244,238,231,0.72);
  margin-top: 6px;
  line-height: 1.3;
}
.lp-factory__pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 10px;
}
.lp-factory__pill {
  background: rgba(244,238,231,0.08);
  border: 1px solid rgba(244,238,231,0.14);
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}
.lp-factory__visual {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lp-factory__cell { overflow: hidden; border-radius: 10px; }
.lp-factory__cell--a { grid-column: 1/4; grid-row: 1/5; }
.lp-factory__cell--b { grid-column: 4/7; grid-row: 1/4; }
.lp-factory__cell--c { grid-column: 4/7; grid-row: 4/7; }
.lp-factory__cell--d { grid-column: 1/4; grid-row: 5/7; }

/* ---------- Offer block (Kit Onboarding) ---------- */
.lp-offer {
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(251,185,137,0.25), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(212,94,42,0.18), transparent 60%),
    var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media (min-width: 720px) { .lp-offer { padding: 48px; } }
@media (min-width: 960px) { .lp-offer { grid-template-columns: 1.2fr 1fr; gap: 48px; padding: 56px; } }
.lp-offer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: max-content;
}
.lp-offer__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 14px;
  color: var(--cream);
}
.lp-offer__title .price {
  color: var(--peach);
  white-space: nowrap;
  display: inline-block;
  position: relative;
}
.lp-offer__title .small { font-size: 0.55em; font-weight: 700; letter-spacing: 0.02em; vertical-align: super; opacity: .85; }
.lp-offer__title .caret {
  display: inline-block;
  width: 0.08em;
  margin-left: 0.04em;
  background: var(--peach);
  vertical-align: -0.05em;
  align-self: stretch;
  animation: lp-caret-blink 0.9s steps(1) infinite;
}
.lp-offer__title .price .caret { height: 0.85em; }
@keyframes lp-caret-blink {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-offer__title .caret { animation: none; opacity: 0.6; }
}
.lp-offer__desc {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(244,238,231,0.78);
  margin: 0 0 22px;
  max-width: 46ch;
}
.lp-offer__items {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.lp-offer__items li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.lp-offer__items .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(251,185,137,0.18);
  color: var(--peach);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-offer__ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-offer__visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.lp-offer__visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  width: 100%; height: 100%;
}
.lp-offer__visual-grid > div { overflow: hidden; border-radius: 10px; }
.lp-offer__fineprint {
  display: block;
  font-size: 12px;
  color: rgba(244,238,231,0.55);
  margin-top: 14px;
}

/* ---------- Testimonials ---------- */
.lp-tgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .lp-tgrid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.lp-tcard {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex; flex-direction: column; gap: 18px;
}
.lp-tcard__stars { display: inline-flex; gap: 2px; color: var(--accent); }
.lp-tcard__quote {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
  margin: 0;
}
.lp-tcard__author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.lp-tcard__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: var(--ink);
  font-size: 14px;
}
.lp-tcard__name { font-weight: 700; font-size: 14px; line-height: 1.1; }
.lp-tcard__role { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ---------- Lead magnet ---------- */
.lp-magnet {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 720px) { .lp-magnet { padding: 40px; grid-template-columns: auto 1fr auto; gap: 28px; } }
.lp-magnet__icon {
  width: 80px; height: 100px;
  background: linear-gradient(135deg, var(--ink), #102540);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--peach);
  flex-shrink: 0;
  box-shadow: 0 12px 28px -10px rgba(1,27,51,0.4);
  position: relative;
}
.lp-magnet__icon::before {
  content: 'PDF';
  position: absolute;
  bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(244,238,231,0.7);
}
.lp-magnet__title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.15;
}
.lp-magnet__sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.lp-magnet__cta { flex-shrink: 0; }

/* ---------- FAQ ---------- */
.lp-faq {
  display: flex; flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.lp-faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lp-faq details[open] {
  border-color: var(--ink);
  box-shadow: var(--shadow-card);
}
.lp-faq summary {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
  display: flex; align-items: center;
  min-height: 28px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 22px; height: 22px;
  margin-top: -11px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23011B33' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 5v14M5 12h14'/></svg>");
  background-size: contain;
  transition: transform .25s ease;
}
.lp-faq details[open] summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23011B33' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14'/></svg>");
}
.lp-faq__a {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Form section (final) ---------- */
.lp-formsec {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 960px) {
  .lp-formsec { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
}
.lp-formsec__copy { display: flex; flex-direction: column; gap: 18px; }
.lp-formsec__title {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
}
.lp-formsec__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  max-width: 50ch;
}
.lp-formsec__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lp-formsec__list li { display: flex; gap: 12px; align-items: center; font-size: 15px; font-weight: 500; }
.lp-formsec__list .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-formsec__whats {
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  margin-top: 14px;
}
.lp-formsec__whats-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--whats);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-formsec__whats-l { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1; }
.lp-formsec__whats-v { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; line-height: 1; margin-top: 4px; }
.lp-formsec__whats-cta { margin-left: auto; flex-shrink: 0; }

.lp-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  gap: 14px;
}
@media (min-width: 720px) { .lp-form { padding: 36px; } }

/* Form success state */
.lp-form__success {
  text-align: center;
  padding: 24px 0;
  display: flex; flex-direction: column;
  gap: 14px; align-items: center;
}
.lp-form__success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(37,211,102,0.15);
  color: var(--whats);
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-form__success-title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin: 0; }
.lp-form__success-text { color: var(--muted); font-size: 15px; max-width: 36ch; margin: 0; line-height: 1.5; }

/* ---------- Footer ---------- */
.lp-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 28px;
}
.lp-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 720px) { .lp-footer__grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; } }
.lp-footer__brand img { height: 32px; filter: brightness(0) invert(1); }
.lp-footer__slogan {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 16px 0 12px;
  max-width: 28ch;
  line-height: 1.25;
  color: var(--cream);
}
.lp-footer__about { font-size: 14px; color: rgba(244,238,231,0.7); line-height: 1.5; max-width: 40ch; margin: 0; }
.lp-footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,238,231,0.55);
  margin: 0 0 18px;
}
.lp-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lp-footer__list li, .lp-footer__list a {
  font-size: 14px;
  color: rgba(244,238,231,0.82);
  line-height: 1.4;
}
.lp-footer__list a:hover { color: var(--peach); }
.lp-footer__list svg { color: var(--peach); display: inline-block; vertical-align: -3px; margin-right: 8px; }
.lp-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(244,238,231,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: rgba(244,238,231,0.55);
}
.lp-footer__legal { display: flex; gap: 16px; flex-wrap: wrap; }
.lp-footer__legal a:hover { color: var(--peach); }

.lp-footer__group {
  margin-top: 8px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(244,238,231,0.1);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.lp-footer__group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,238,231,0.55);
}
.lp-footer__group-logo {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  opacity: 0.92;
  transition: opacity .2s ease;
}
.lp-footer__group-logo:hover { opacity: 1; }
.lp-footer__group-logo img {
  height: 28px;
  width: auto;
  display: block;
}

/* Touch targets ≥44px no mobile */
@media (max-width: 720px) {
  .btn--sm { padding: 11px 14px; font-size: 13px; min-height: 40px; }
  .lp-formsec__whats-cta { padding: 11px 16px; min-height: 44px; }
  .icon-btn { min-height: 44px; }
}

/* ---------- Mobile bottom bar ---------- */
.lp-bbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 49;
  background: rgba(244,238,231,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  box-shadow: 0 -8px 24px -16px rgba(1,27,51,0.18);
}
@media (min-width: 721px) { .lp-bbar { display: none; } }
.lp-bbar .btn { padding: 13px 16px; font-size: 14px; }

/* ---------- Modal (catálogo) ---------- */
.lp-modal-bg {
  position: fixed; inset: 0;
  background: rgba(1,27,51,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: fade-in .2s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.lp-modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 460px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: pop-in .25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop-in { from { transform: scale(0.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lp-modal__close {
  position: absolute; top: 12px; right: 12px;
  background: var(--cream);
  border: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink);
}
.lp-modal__close:hover { background: var(--cream-2); }
.lp-modal__title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px; }
.lp-modal__sub { font-size: 14px; color: var(--muted); margin: 0 0 22px; line-height: 1.5; }

/* ---------- Cookie banner ---------- */
.lp-cookie {
  position: fixed;
  left: 0; right: 0;
  bottom: 76px; /* acima da bottom-bar mobile */
  z-index: 48;
  padding: 12px 0;
  pointer-events: none;
  animation: lp-cookie-in 0.32s ease;
}
@media (min-width: 721px) {
  .lp-cookie { bottom: 16px; }
}
@keyframes lp-cookie-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-cookie__row {
  background: rgba(1, 27, 51, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--cream);
  border-radius: 16px;
  border: 1px solid rgba(244,238,231,0.10);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.55);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  pointer-events: auto;
}
@media (min-width: 900px) {
  .lp-cookie__row { grid-template-columns: 1fr auto; gap: 24px; padding: 20px 26px; }
}
.lp-cookie__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
}
.lp-cookie__title svg { color: var(--peach); }
.lp-cookie__text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244,238,231,0.78);
  margin: 0;
  max-width: 70ch;
}
.lp-cookie__text a {
  color: var(--peach);
  text-decoration: underline;
  font-weight: 600;
}
.lp-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-cookie__actions .btn--ghost {
  background: rgba(244,238,231,0.08);
  color: var(--cream);
  border-color: rgba(244,238,231,0.18);
}
.lp-cookie__actions .btn--ghost:hover {
  background: rgba(244,238,231,0.14);
}

/* Modal de preferências ----------------------------------- */
.lp-modal--wide { max-width: 560px; }
.lp-cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0 24px;
}
.lp-cookie-cat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--cream-2);
  border-radius: 12px;
  border: 1px solid var(--line);
  cursor: pointer;
}
.lp-cookie-cat:hover { border-color: var(--line-2); }
.lp-cookie-cat.is-locked { cursor: default; opacity: 0.92; }
.lp-cookie-cat__text { flex: 1; min-width: 0; }
.lp-cookie-cat__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-cookie-cat__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 3px 7px;
  border-radius: 999px;
}
.lp-cookie-cat__desc {
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}
/* Toggle switch */
.lp-cookie-cat__toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}
.lp-cookie-cat__toggle input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.lp-cookie-cat__toggle input:disabled { cursor: default; }
.lp-cookie-cat__slider {
  position: absolute;
  inset: 0;
  background: var(--line-2);
  border-radius: 999px;
  transition: background 0.2s ease;
}
.lp-cookie-cat__slider::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  transition: transform 0.2s ease;
}
.lp-cookie-cat__toggle input:checked + .lp-cookie-cat__slider {
  background: var(--accent);
}
.lp-cookie-cat__toggle input:checked + .lp-cookie-cat__slider::before {
  transform: translateX(18px);
}
.lp-cookie-cat.is-locked .lp-cookie-cat__slider {
  background: var(--ink);
  opacity: 0.6;
}
.lp-cookie-prefs__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .lp-cookie-prefs__actions { flex-direction: column-reverse; }
  .lp-cookie-prefs__actions .btn { width: 100%; }
}

/* ---------- Exit Intent ---------- */
.lp-exit-bg {
  position: fixed; inset: 0;
  background: rgba(1,27,51,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 220;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade-in 0.2s ease;
}
.lp-exit {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  position: relative;
  max-height: 92vh;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  animation: pop-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (min-width: 720px) {
  .lp-exit { grid-template-columns: 0.95fr 1fr; max-height: 86vh; }
}
.lp-exit__close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(244,238,231,0.92);
  border: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink);
  z-index: 2;
}
.lp-exit__close:hover { background: var(--cream-2); }
.lp-exit__art {
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(251,185,137,0.25), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(212,94,42,0.18), transparent 60%),
    var(--ink);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  position: relative;
}
@media (max-width: 719px) {
  .lp-exit__art { padding: 24px; min-height: 220px; }
}
.lp-exit__art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
}
.lp-exit__art-grid > img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
}
.lp-exit__art-tag {
  background: rgba(244,238,231,0.10);
  border: 1px solid rgba(244,238,231,0.18);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.lp-exit__art-tag b { color: var(--peach); font-weight: 800; margin-left: 4px; }
.lp-exit__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  max-height: 92vh;
}
@media (min-width: 720px) {
  .lp-exit__body { padding: 40px 36px; max-height: 86vh; }
}
.lp-exit__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-exit__eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: currentColor;
}
.lp-exit__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.lp-exit__title .accent { color: var(--accent); }
.lp-exit__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 42ch;
}
.lp-exit__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-exit__or {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  margin: 4px 0;
}
.lp-exit__or::before, .lp-exit__or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 22px);
  height: 1px;
  background: var(--line);
}
.lp-exit__or::before { left: 0; }
.lp-exit__or::after { right: 0; }
.lp-exit__skip {
  background: transparent;
  border: 0;
  padding: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
}
.lp-exit__skip:hover { color: var(--ink); }
.lp-exit__success {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.lp-exit__success .lp-exit__title { text-align: center; }
.lp-exit__success .lp-exit__text { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Btn variant ajustes ---------- */
.btn--whats { background: var(--whats); color: white; }
.btn--whats:hover { background: #1eb858; }
