/**
 * Landing «Para anfitriões» — inspirada em fluxos tipo Holidu /host, tokens CheckInAll.
 */
.host-lp {
  --host-lp-teal: #0d9488;
  --host-lp-teal-dark: #0f766e;
  --host-lp-sand: #faf8f5;
  --host-lp-ink: #1a1a1a;
  --host-lp-muted: #5c5c5c;
  --host-lp-radius: 16px;
  /* Alinhar à largura padrão do site (checkinall-home.css: --max-w 1920px) */
  --host-lp-max: var(--max-w, 1920px);
}

.host-lp main {
  max-width: var(--max-w, 1920px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

.host-lp-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(230, 30, 77, 0.09) 0%, transparent 55%),
    radial-gradient(90% 60% at 0% 100%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--host-lp-sand) 100%);
  border-bottom: 1px solid var(--border);
}

.host-lp-hero-inner {
  max-width: var(--host-lp-max);
  margin: 0 auto;
  box-sizing: border-box;
}

.host-lp-kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.host-lp-hero h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--host-lp-ink);
  margin: 0 0 1.25rem;
  max-width: none;
}

.host-lp-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--host-lp-muted);
  max-width: 52ch;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

.host-lp-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.host-lp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.host-lp-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--host-lp-teal);
  flex-shrink: 0;
}

.host-lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}

.host-lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border-radius: var(--host-lp-radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.host-lp-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.host-lp-btn--primary {
  background: linear-gradient(135deg, var(--host-lp-teal) 0%, var(--host-lp-teal-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.host-lp-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
  color: #fff;
}

.host-lp-btn--ghost {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}

.host-lp-btn--ghost:hover {
  border-color: rgba(230, 30, 77, 0.35);
  color: var(--accent);
}

.host-lp-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.host-lp-band {
  padding: 2.5rem 1.25rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.host-lp-band-inner {
  max-width: var(--host-lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.host-lp-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--host-lp-ink);
  line-height: 1.2;
}

.host-lp-stat span {
  font-size: 0.9rem;
  color: var(--host-lp-muted);
}

.host-lp-section {
  padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
}

.host-lp-section:nth-child(even) {
  background: var(--bg);
}

.host-lp-section-inner {
  max-width: var(--host-lp-max);
  margin: 0 auto;
}

.host-lp-section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--host-lp-ink);
  margin: 0 0 0.5rem;
  text-align: center;
}

.host-lp-section .host-lp-sub {
  text-align: center;
  color: var(--host-lp-muted);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.host-lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.host-lp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--host-lp-radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.host-lp-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 30, 77, 0.12);
}

.host-lp-card-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.host-lp-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--host-lp-ink);
}

.host-lp-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--host-lp-muted);
  line-height: 1.55;
}

.host-lp-steps {
  counter-reset: hoststep;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .host-lp-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.host-lp-step {
  position: relative;
  padding: 1.35rem 1.35rem 1.35rem 3.5rem;
  background: var(--bg-card);
  border-radius: var(--host-lp-radius);
  border: 1px solid var(--border);
}

.host-lp-step::before {
  counter-increment: hoststep;
  content: counter(hoststep);
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #c4184a 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.host-lp-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.host-lp-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--host-lp-muted);
  line-height: 1.5;
}

.host-lp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.host-lp-checklist li {
  display: flex;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
  color: var(--text);
}

.host-lp-checklist li:last-child {
  border-bottom: 0;
}

.host-lp-checklist li::before {
  content: '✓';
  color: var(--host-lp-teal);
  font-weight: 800;
  flex-shrink: 0;
}

.host-lp-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.host-lp-quote {
  background: var(--bg-card);
  border-radius: var(--host-lp-radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.host-lp-quote blockquote {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
}

.host-lp-quote figcaption {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--host-lp-muted);
}

.host-lp-cta-final {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  color: #e8e8ed;
}

.host-lp-cta-final h2 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.host-lp-cta-final p {
  margin: 0 auto 1.5rem;
  max-width: 42ch;
  opacity: 0.88;
  font-size: 1rem;
}

.host-lp-cta-final .host-lp-btn--primary {
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.45);
}

.host-lp-footer-mini {
  padding: 2rem 1.25rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.host-lp-footer-mini a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.host-lp-footer-mini a:hover {
  text-decoration: underline;
}

.host-lp nav.menu-bar a.host-lp-nav-active {
  font-weight: 700;
  color: var(--accent);
}

/* ——— Responsividade landing ——— */
@media (min-width: 640px) {
  .host-lp-hero h1 {
    max-width: 18ch;
  }
}

.host-lp nav.menu-bar > .wrap {
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 4px;
  column-gap: 0.15rem;
  mask-image: linear-gradient(to right, #000 92%, transparent 100%);
}
.host-lp nav.menu-bar > .wrap > a {
  flex-shrink: 0;
  font-size: clamp(0.78rem, 2.8vw, 0.9rem);
  padding: 0.35rem 0.55rem;
}

@media (max-width: 520px) {
  .host-lp-hero {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .host-lp-section {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .host-lp-band {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 480px) {
  .host-lp-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .host-lp-btn {
    width: 100%;
    box-sizing: border-box;
    min-height: 48px;
  }
  .host-lp-cta-final .host-lp-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .host-lp-cta-final .host-lp-btn {
    width: 100%;
  }
  .host-lp-band-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .host-lp-grid {
    grid-template-columns: 1fr;
  }
  .host-lp-quotes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .host-lp-step {
    padding-left: 3rem;
  }
}

.host-lp-footer-mini p {
  margin: 0;
  line-height: 1.55;
  word-break: break-word;
}
.host-lp-footer-mini p + p {
  margin-top: 0.65rem;
}
