/* ==========================================================================
   SuplixIA — Landing page design system
   Self-contained stylesheet (the theme's Tailwind build is pre-purged, so
   the landing uses its own `lp-` namespace). Colors derive from the theme
   CSS variables, so light/dark mode keep working automatically.
   ========================================================================== */

/* Paleta base (RGB triples). Nas páginas do tema, o snippet css.twig define
   os mesmos valores; aqui eles garantem que páginas standalone (home, login,
   /comecar) funcionem sem depender do tema. */
:root {
  --color-primary: 36 40 44;
  --color-secondary: 90 93 96;
  --color-tertiary: 172 174 175;
  --color-accent: 36 40 44;
  --color-contrast-primary: 255 255 255;
  --color-contrast-secondary: 245 246 246;
  --color-contrast-accent: 211 243 107;
  --color-line-primary: 200 201 202;
  --color-line-secondary: 227 228 228;
  --color-line-tertiary: 245 246 246;
  --color-line-accent: 36 40 44;
  --color-info: 0 166 251;
  --color-success: 48 200 98;
  --color-failure: 254 81 87;
}

:root[data-mode="dark"] {
  --color-primary: 227 228 228;
  --color-secondary: 172 174 175;
  --color-tertiary: 118 120 123;
  --color-contrast-primary: 36 40 44;
  --color-contrast-secondary: 22 25 27;
  --color-line-primary: 145 147 149;
  --color-line-secondary: 118 120 123;
  --color-line-tertiary: 63 66 70;
  --color-line-accent: 211 243 107;
}

:root {
  --lp-ink: rgb(var(--color-primary));
  --lp-muted: rgb(var(--color-secondary));
  --lp-faint: rgb(var(--color-tertiary));
  --lp-bg: rgb(var(--color-contrast-primary));
  --lp-surface: rgb(var(--color-contrast-secondary));
  --lp-accent: rgb(var(--color-contrast-accent));
  --lp-border: rgb(var(--color-line-secondary) / .55);
  --lp-border-strong: rgb(var(--color-line-secondary));
  --lp-shadow-sm: 0 1px 2px rgb(16 20 24 / .05);
  --lp-shadow-md: 0 8px 24px -8px rgb(16 20 24 / .12);
  --lp-shadow-lg: 0 24px 64px -16px rgb(16 20 24 / .18);
  --lp-radius: 1.25rem;
  --lp-radius-lg: 1.75rem;
}

:root[data-mode="dark"] {
  --lp-border: rgb(var(--color-line-tertiary) / .8);
  --lp-border-strong: rgb(var(--color-line-tertiary));
  --lp-shadow-sm: 0 1px 2px rgb(0 0 0 / .4);
  --lp-shadow-md: 0 8px 24px -8px rgb(0 0 0 / .5);
  --lp-shadow-lg: 0 24px 64px -16px rgb(0 0 0 / .6);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

.lp {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--lp-ink);
  overflow-x: clip;
}

.lp * {
  -webkit-font-smoothing: antialiased;
}

.lp-section {
  padding: 4.5rem 0;
  position: relative;
}

@media (min-width: 1024px) {
  .lp-section {
    padding: 6.5rem 0;
  }
}

.lp-section-head {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .lp-section-head {
    margin-bottom: 4rem;
  }
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem .875rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--lp-muted);
  margin-bottom: 1.25rem;
}

.lp-eyebrow .ti {
  color: var(--lp-ink);
  font-size: 1rem;
}

.lp-h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -.035em;
  margin: 0;
}

.lp-h2 {
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.03em;
  margin: 0;
}

.lp-h3 {
  font-size: 1.1875rem;
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: -.015em;
  margin: 0;
}

.lp-sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--lp-muted);
  margin: 1.25rem auto 0;
  max-width: 38rem;
}

.lp-highlight {
  background-image: linear-gradient(rgb(211 243 107 / .95), rgb(211 243 107 / .95));
  background-repeat: no-repeat;
  background-size: 100% .3em;
  background-position: 0 92%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 .08em;
  margin: 0 -.08em;
}

:root[data-mode="dark"] .lp-highlight {
  background-image: linear-gradient(rgb(211 243 107 / .28), rgb(211 243 107 / .28));
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 3.25rem;
  padding: 0 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, opacity .18s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

.lp-btn:active {
  transform: scale(.98);
}

.lp-btn .ti {
  font-size: 1.25rem;
  transition: transform .18s ease;
}

.lp-btn:hover .ti-arrow-right {
  transform: translateX(3px);
}

.lp-btn-primary {
  background: var(--lp-ink);
  color: var(--lp-bg);
  box-shadow: var(--lp-shadow-md);
}

.lp-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-btn-accent {
  background: var(--lp-accent);
  color: rgb(36 40 44);
  box-shadow: 0 8px 24px -8px rgb(211 243 107 / .6);
}

.lp-btn-accent:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.lp-btn-ghost {
  background: transparent;
  color: var(--lp-ink);
  border-color: var(--lp-border-strong);
}

.lp-btn-ghost:hover {
  background: var(--lp-surface);
}

.lp-btn-sm {
  height: 2.5rem;
  padding: 0 1.125rem;
  font-size: .9375rem;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.lp-header-wrap {
  position: sticky;
  top: .75rem;
  z-index: 50;
  margin-top: .75rem;
}

.lp-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .625rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: rgb(var(--color-contrast-primary) / .78);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: var(--lp-shadow-sm);
}

.lp-header-logo img {
  display: block;
  max-width: 128px;
  max-height: 2.25rem;
  width: auto;
}

.lp-nav {
  display: none;
}

@media (min-width: 1024px) {
  .lp-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
  }
}

.lp-nav a {
  display: block;
  padding: .5rem .875rem;
  border-radius: 999px;
  font-size: .9375rem;
  font-weight: 550;
  color: var(--lp-muted);
  text-decoration: none !important;
  transition: color .15s ease, background-color .15s ease;
}

.lp-nav a:hover {
  color: var(--lp-ink);
  background: var(--lp-surface);
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
}

.lp-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  font-size: 1.25rem;
  color: var(--lp-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}

.lp-icon-btn:hover {
  background: var(--lp-surface);
  color: var(--lp-ink);
}

.lp-hide-xs {
  display: none;
}

@media (min-width: 480px) {
  .lp-hide-xs {
    display: inline;
  }

  .lp-show-xs {
    display: none;
  }
}

@media (max-width: 479.9px) {
  .lp-header {
    padding: .5rem .625rem;
    gap: .75rem;
  }

  .lp-header .lp-btn-sm {
    padding: 0 .875rem;
    font-size: .875rem;
  }

  .lp-header-logo img {
    max-width: 104px;
  }
}

.lp-mobile-toggle {
  display: inline-flex;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .lp-mobile-toggle {
    display: none;
  }
}

.lp-mobile-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  right: 0;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--lp-bg);
  box-shadow: var(--lp-shadow-lg);
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .125rem;
}

.lp-mobile-menu a {
  display: block;
  padding: .75rem 1rem;
  border-radius: .75rem;
  font-weight: 550;
  text-decoration: none !important;
  color: var(--lp-ink);
}

.lp-mobile-menu a:hover {
  background: var(--lp-surface);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.lp-hero {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 3.5rem;
  position: relative;
}

@media (min-width: 1024px) {
  .lp-hero {
    padding-top: 6rem;
  }
}

.lp-hero::before {
  content: "";
  position: absolute;
  top: -12rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(56rem, 100vw);
  height: 34rem;
  background:
    radial-gradient(38% 55% at 32% 40%, rgb(211 243 107 / .35), transparent 70%),
    radial-gradient(38% 55% at 68% 45%, rgb(147 197 253 / .30), transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  z-index: -1;
}

:root[data-mode="dark"] .lp-hero::before {
  opacity: .35;
}

.lp-hero-inner {
  max-width: 52rem;
  margin: 0 auto;
}

.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .875rem;
  margin-top: 2.25rem;
}

.lp-hero-note {
  margin-top: 1.125rem;
  font-size: .875rem;
  color: var(--lp-faint);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .375rem 1.25rem;
}

.lp-hero-note span {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
}

.lp-hero-note .ti {
  font-size: 1rem;
  color: rgb(var(--color-success));
}

/* Product mock ------------------------------------------------------------ */

.lp-mock-stage {
  position: relative;
  max-width: 46rem;
  margin: 4rem auto 0;
}

.lp-mock {
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  background: var(--lp-bg);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  text-align: left;
}

.lp-mock-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--lp-border);
  background: var(--lp-surface);
}

.lp-mock-dots {
  display: flex;
  gap: .375rem;
}

.lp-mock-dots i {
  width: .625rem;
  height: .625rem;
  border-radius: 999px;
  background: var(--lp-border-strong);
  display: block;
}

.lp-mock-title {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  font-weight: 600;
}

.lp-mock-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--lp-ink);
  color: var(--lp-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .6875rem;
  font-weight: 700;
}

.lp-mock-status {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  margin-left: auto;
  font-size: .75rem;
  font-weight: 600;
  color: rgb(var(--color-success));
}

.lp-mock-status i {
  width: .5rem;
  height: .5rem;
  border-radius: 999px;
  background: rgb(var(--color-success));
  display: block;
}

.lp-mock-body {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

@media (min-width: 640px) {
  .lp-mock-body {
    padding: 1.75rem;
  }
}

.lp-msg {
  max-width: 78%;
  padding: .75rem 1rem;
  border-radius: 1.125rem;
  font-size: .9375rem;
  line-height: 1.5;
}

.lp-msg-in {
  align-self: flex-start;
  background: var(--lp-surface);
  border-bottom-left-radius: .375rem;
}

.lp-msg-out {
  align-self: flex-end;
  background: var(--lp-ink);
  color: var(--lp-bg);
  border-bottom-right-radius: .375rem;
}

.lp-msg-tag {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  padding: .375rem .875rem;
  border-radius: 999px;
  background: rgb(var(--color-success) / .1);
  color: rgb(var(--color-success));
}

.lp-msg-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: .3rem;
  padding: .875rem 1rem;
  background: var(--lp-surface);
  border-radius: 1.125rem;
  border-bottom-left-radius: .375rem;
}

.lp-msg-typing i {
  width: .4375rem;
  height: .4375rem;
  border-radius: 999px;
  background: var(--lp-faint);
  animation: lp-typing 1.2s infinite ease-in-out;
}

.lp-msg-typing i:nth-child(2) { animation-delay: .15s; }
.lp-msg-typing i:nth-child(3) { animation-delay: .3s; }

@keyframes lp-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.lp-float {
  position: absolute;
  display: none;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1.125rem;
  border-radius: 1rem;
  border: 1px solid var(--lp-border);
  background: var(--lp-bg);
  box-shadow: var(--lp-shadow-md);
  font-size: .875rem;
  font-weight: 600;
  animation: lp-float 5s ease-in-out infinite;
}

@media (min-width: 1280px) {
  .lp-float {
    display: flex;
  }
}

.lp-float small {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  color: var(--lp-muted);
}

.lp-float-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: .75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.lp-float-1 {
  top: 18%;
  left: -14rem;
}

.lp-float-1 .lp-float-icon {
  background: rgb(48 200 98 / .12);
  color: rgb(var(--color-success));
}

.lp-float-2 {
  bottom: 14%;
  right: -14rem;
  animation-delay: 1.6s;
}

.lp-float-2 .lp-float-icon {
  background: var(--lp-accent);
  color: rgb(36 40 44);
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */

.lp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  background: var(--lp-border);
  overflow: hidden;
}

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

.lp-stat {
  background: var(--lp-bg);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.lp-stat strong {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.lp-stat span {
  display: block;
  margin-top: .25rem;
  font-size: .875rem;
  color: var(--lp-muted);
}

/* --------------------------------------------------------------------------
   Cards / grids
   -------------------------------------------------------------------------- */

.lp-grid {
  display: grid;
  gap: 1.25rem;
}

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

@media (min-width: 1024px) {
  .lp-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .lp-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 640px) and (max-width: 1023.9px) {
  .lp-grid-3, .lp-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.lp-card {
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--lp-bg);
  padding: 1.75rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-md);
  border-color: var(--lp-border-strong);
}

.lp-card p {
  margin: .625rem 0 0;
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--lp-muted);
}

.lp-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: .875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}

.lp-card-accent .lp-card-icon {
  background: var(--lp-accent);
  border-color: transparent;
  color: rgb(36 40 44);
}

/* Solutions band ----------------------------------------------------------- */

.lp-band {
  border-radius: calc(var(--lp-radius-lg) + .5rem);
  background: var(--lp-surface);
  padding: 3rem 1.25rem;
}

@media (min-width: 1024px) {
  .lp-band {
    padding: 5rem 4rem;
  }
}

.lp-band .lp-card {
  border-color: transparent;
  box-shadow: var(--lp-shadow-sm);
}

.lp-band .lp-card:hover {
  box-shadow: var(--lp-shadow-md);
}

.lp-band .lp-card-icon {
  background: var(--lp-bg);
}

/* --------------------------------------------------------------------------
   How it works
   -------------------------------------------------------------------------- */

.lp-steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: lp-step;
}

@media (min-width: 1024px) {
  .lp-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.lp-step {
  position: relative;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  padding: 2rem 1.75rem;
  counter-increment: lp-step;
  background: var(--lp-bg);
}

.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--lp-ink);
  color: var(--lp-bg);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.lp-step:last-child .lp-step-num {
  background: var(--lp-accent);
  color: rgb(36 40 44);
}

.lp-step p {
  margin: .625rem 0 0;
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--lp-muted);
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.lp-cycle {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.lp-cycle-track {
  display: inline-flex;
  gap: .25rem;
  padding: .25rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
}

.lp-cycle-track button {
  border: none;
  cursor: pointer;
  padding: .625rem 1.375rem;
  border-radius: 999px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--lp-muted);
  background: transparent;
  transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.lp-cycle-track button.is-active {
  background: var(--lp-bg);
  color: var(--lp-ink);
  box-shadow: var(--lp-shadow-sm);
}

.lp-plans {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

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

@media (min-width: 1200px) {
  .lp-plans {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-plan {
  display: flex;
  flex-direction: column;
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  background: var(--lp-bg);
  padding: 2rem;
  transition: transform .25s ease, box-shadow .25s ease;
}

.lp-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-md);
}

.lp-plan-featured {
  background: rgb(22 25 27);
  border-color: rgb(22 25 27);
  color: rgb(245 246 246);
  box-shadow: var(--lp-shadow-lg);
}

:root[data-mode="dark"] .lp-plan-featured {
  background: rgb(10 12 13);
  border-color: var(--lp-accent);
}

.lp-plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-plan-name {
  font-size: 1.125rem;
  font-weight: 650;
  letter-spacing: -.01em;
}

.lp-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .3125rem .75rem;
  border-radius: 999px;
  background: var(--lp-accent);
  color: rgb(36 40 44);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.lp-plan-desc {
  margin: .5rem 0 0;
  font-size: .9063rem;
  line-height: 1.55;
  color: var(--lp-muted);
}

.lp-plan-featured .lp-plan-desc {
  color: rgb(172 174 175);
}

.lp-plan-price {
  display: flex;
  align-items: baseline;
  gap: .375rem;
  margin-top: 1.75rem;
}

.lp-plan-price .money {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}

.lp-plan-price span {
  font-size: .9375rem;
  color: var(--lp-muted);
}

.lp-plan-featured .lp-plan-price span {
  color: rgb(172 174 175);
}

.lp-plan .lp-btn {
  width: 100%;
  margin-top: 1.75rem;
}

.lp-plan-featured .lp-btn-primary {
  background: var(--lp-accent);
  color: rgb(36 40 44);
  box-shadow: none;
}

.lp-plan-features {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.lp-plan-featured .lp-plan-features {
  border-top-color: rgb(255 255 255 / .12);
}

.lp-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9375rem;
  line-height: 1.5;
}

.lp-plan-features li .ti {
  font-size: 1.25rem;
  line-height: 1.4rem;
  flex-shrink: 0;
}

.lp-plan-features li .ti-circle-check-filled {
  color: rgb(var(--color-success));
}

.lp-plan-featured .lp-plan-features li .ti-circle-check-filled {
  color: var(--lp-accent);
}

.lp-plan-features li.is-off {
  color: var(--lp-faint);
}

.lp-plan-features li.is-off .ti {
  color: var(--lp-faint);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.lp-faq {
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.lp-faq-item {
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-bg);
  overflow: hidden;
  transition: border-color .2s ease;
}

.lp-faq-item[data-open] {
  border-color: var(--lp-border-strong);
}

.lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.0313rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--lp-ink);
}

.lp-faq-q .ti {
  font-size: 1.25rem;
  color: var(--lp-muted);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.lp-faq-item[data-open] .lp-faq-q .ti {
  transform: rotate(45deg);
}

.lp-faq-a {
  padding: 0 1.5rem 1.375rem;
  font-size: .9688rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */

.lp-cta {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--lp-radius-lg) + .5rem);
  background: rgb(22 25 27);
  color: rgb(255 255 255);
  text-align: center;
  padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
  .lp-cta {
    padding: 6rem 4rem;
  }
}

.lp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(42% 60% at 22% 10%, rgb(211 243 107 / .22), transparent 70%),
    radial-gradient(42% 60% at 80% 90%, rgb(147 197 253 / .16), transparent 70%);
  pointer-events: none;
}

.lp-cta > * {
  position: relative;
}

.lp-cta .lp-sub {
  color: rgb(199 202 204);
}

.lp-cta .lp-hero-note {
  color: rgb(150 154 157);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.lp-footer {
  margin: 4rem 0 2.5rem;
  border-top: 1px solid var(--lp-border);
  padding-top: 3rem;
}

.lp-footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .lp-footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.lp-footer-brand img {
  max-width: 128px;
  display: block;
}

.lp-footer-brand address {
  font-style: normal;
  margin-top: 1.25rem;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--lp-muted);
}

.lp-footer-cols {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.lp-footer-col h4 {
  margin: 0 0 1rem;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--lp-faint);
}

.lp-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.lp-footer-col a {
  font-size: .9375rem;
  color: var(--lp-muted);
  text-decoration: none !important;
  transition: color .15s ease;
}

.lp-footer-col a:hover {
  color: var(--lp-ink);
}

.lp-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lp-border);
  font-size: .875rem;
  color: var(--lp-muted);
}

.lp-social {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  font-size: 1.125rem;
  color: var(--lp-muted);
  text-decoration: none !important;
  transition: background-color .15s ease, color .15s ease;
}

.lp-social a:hover {
  background: var(--lp-surface);
  color: var(--lp-ink);
}

/* --------------------------------------------------------------------------
   Scroll reveal (activated only when JS adds .lp-js to <html>)
   -------------------------------------------------------------------------- */

.lp-js .lp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.lp-js .lp-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .lp-js .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lp-float,
  .lp-msg-typing i {
    animation: none;
  }
}
/* ==========================================================================
   Standalone-page additions (home.twig / login.twig / comecar.twig)
   These pages don't load the app Tailwind build, so a few generic helpers
   and the auth/wizard components live here.
   ========================================================================== */

.hidden { display: none !important; }
[x-cloak] { display: none !important; }

.lp-page {
  min-height: 100vh;
  background: var(--lp-bg);
  color: var(--lp-ink);
  font-family: var(--font-family-primary, 'Inter', sans-serif);
  -webkit-font-smoothing: antialiased;
}

.lp-container {
  width: 100%;
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .lp-container {
    padding: 0 1.5rem;
  }
}

/* Sticky mobile CTA ------------------------------------------------------- */

.lp-mcta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  background: rgb(var(--color-contrast-primary) / .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--lp-border);
  transform: translateY(110%);
  transition: transform .3s ease;
}

.lp-mcta.is-visible {
  transform: translateY(0);
}

.lp-mcta .lp-btn {
  width: 100%;
}

@media (min-width: 768px) {
  .lp-mcta {
    display: none;
  }
}

/* ==========================================================================
   Auth (login) — split layout
   ========================================================================== */

.lp-auth {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .lp-auth {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.lp-auth-side {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem 3rem;
  position: relative;
}

@media (min-width: 640px) {
  .lp-auth-side {
    padding: 2rem 3rem 4rem;
  }
}

.lp-auth-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.lp-auth-top img {
  display: block;
  max-width: 128px;
  max-height: 2.25rem;
  width: auto;
}

.lp-auth-back {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 550;
  color: var(--lp-muted);
  text-decoration: none !important;
  padding: .5rem .875rem;
  border-radius: 999px;
  transition: background-color .15s ease, color .15s ease;
}

.lp-auth-back:hover {
  background: var(--lp-surface);
  color: var(--lp-ink);
}

.lp-auth-body {
  width: 100%;
  max-width: 26rem;
  margin: auto;
}

.lp-auth-head h1 {
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin: 0;
}

.lp-auth-head p {
  margin: .625rem 0 0;
  font-size: .9688rem;
  line-height: 1.6;
  color: var(--lp-muted);
}

.lp-auth-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.lp-field label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.lp-ctrl {
  position: relative;
  display: flex;
  align-items: center;
}

.lp-ctrl > .ti:first-child {
  position: absolute;
  left: .875rem;
  font-size: 1.125rem;
  color: var(--lp-faint);
  pointer-events: none;
}

.lp-input,
.lp-select,
.lp-textarea {
  width: 100%;
  height: 3.125rem;
  padding: 0 1rem;
  border-radius: .875rem;
  border: 1px solid var(--lp-border-strong);
  background: var(--lp-bg);
  color: var(--lp-ink);
  font-size: .9688rem;
  font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.lp-ctrl > .ti:first-child + .lp-input {
  padding-left: 2.625rem;
}

.lp-input::placeholder,
.lp-textarea::placeholder {
  color: var(--lp-faint);
}

.lp-input:focus,
.lp-select:focus,
.lp-textarea:focus {
  outline: none;
  border-color: var(--lp-ink);
  box-shadow: 0 0 0 4px rgb(var(--color-primary) / .08);
}

.lp-input.is-invalid {
  border-color: rgb(var(--color-failure));
}

.lp-textarea {
  height: auto;
  padding: .875rem 1rem;
  resize: none;
  line-height: 1.5;
}

.lp-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23767b7f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.5rem;
}

.lp-error {
  margin: .375rem 0 0;
  font-size: .8125rem;
  font-weight: 550;
  color: rgb(var(--color-failure));
}

.lp-hint {
  margin: .375rem 0 0;
  font-size: .8125rem;
  color: var(--lp-faint);
}

.lp-eye {
  position: absolute;
  right: .5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--lp-faint);
  font-size: 1.125rem;
  cursor: pointer;
}

.lp-eye:hover {
  color: var(--lp-ink);
  background: var(--lp-surface);
}

.lp-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .875rem;
}

.lp-check {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  font-weight: 550;
  color: var(--lp-muted);
  user-select: none;
}

.lp-check input {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: rgb(36 40 44);
}

.lp-link {
  font-weight: 600;
  color: var(--lp-ink);
  text-decoration: none;
}

.lp-link:hover {
  text-decoration: underline;
}

.lp-btn.is-loading .lp-btn-label,
.lp-btn.is-loading .ti {
  visibility: hidden;
}

.lp-btn .lp-spin {
  display: none;
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: 2.5px solid rgb(255 255 255 / .3);
  border-top-color: #fff;
  animation: lp-spin .7s linear infinite;
}

.lp-btn {
  position: relative;
}

.lp-btn.is-loading .lp-spin {
  display: block;
}

@keyframes lp-spin {
  to { transform: rotate(360deg); }
}

.lp-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  font-size: .8125rem;
  font-weight: 550;
  color: var(--lp-faint);
}

.lp-divider::before,
.lp-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--lp-border);
}

.lp-sso {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.lp-sso a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  height: 3.125rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border-strong);
  background: var(--lp-bg);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--lp-ink);
  text-decoration: none !important;
  transition: background-color .15s ease;
}

.lp-sso a:hover {
  background: var(--lp-surface);
}

.lp-sso img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.lp-switch-line {
  margin-top: 1.75rem;
  text-align: center;
  font-size: .9063rem;
  color: var(--lp-muted);
}

.lp-auth-legal {
  margin-top: 2.5rem;
  text-align: center;
  font-size: .8125rem;
  color: var(--lp-faint);
}

.lp-auth-legal a {
  color: inherit;
  text-decoration: underline;
}

.lp-demo-note {
  margin-bottom: 1.25rem;
  padding: .875rem 1rem;
  border: 1px solid var(--lp-border);
  border-radius: .875rem;
  background: var(--lp-surface);
  font-size: .8438rem;
  line-height: 1.6;
  color: var(--lp-muted);
}

/* Brand panel (right side) -------------------------------------------------- */

.lp-auth-brand {
  display: none;
  position: relative;
  overflow: hidden;
  background: rgb(22 25 27);
  color: rgb(245 246 246);
  padding: 3rem;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .lp-auth-brand {
    display: flex;
  }
}

.lp-auth-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(42% 60% at 20% 12%, rgb(211 243 107 / .18), transparent 70%),
    radial-gradient(42% 60% at 85% 88%, rgb(147 197 253 / .14), transparent 70%);
  pointer-events: none;
}

.lp-auth-brand > * {
  position: relative;
}

.lp-auth-brand-inner {
  max-width: 30rem;
  margin: 0 auto;
}

.lp-auth-brand h2 {
  font-size: clamp(1.625rem, 2.4vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin: 1.5rem 0 0;
}

.lp-auth-brand .lp-highlight {
  background-image: linear-gradient(rgb(211 243 107 / .32), rgb(211 243 107 / .32));
}

.lp-auth-brand .lp-mock {
  margin-top: 2rem;
  background: rgb(30 34 37);
  border-color: rgb(255 255 255 / .08);
}

.lp-auth-brand .lp-mock-bar {
  background: rgb(255 255 255 / .04);
  border-bottom-color: rgb(255 255 255 / .08);
}

.lp-auth-brand .lp-mock-dots i {
  background: rgb(255 255 255 / .16);
}

.lp-auth-brand .lp-msg-in {
  background: rgb(255 255 255 / .08);
}

.lp-auth-brand .lp-msg-out {
  background: var(--lp-accent);
  color: rgb(36 40 44);
}

.lp-auth-brand .lp-mock-avatar {
  background: var(--lp-accent);
  color: rgb(36 40 44);
}

.lp-auth-brand .lp-msg-typing {
  background: rgb(255 255 255 / .08);
}

.lp-auth-brand .lp-msg-typing i {
  background: rgb(255 255 255 / .4);
}

.lp-auth-brand-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1.5rem;
  margin-top: 2rem;
  font-size: .8438rem;
  color: rgb(172 174 175);
}

.lp-auth-brand-foot span {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
}

.lp-auth-brand-foot .ti {
  font-size: 1rem;
  color: var(--lp-accent);
}

/* Captcha snippet (rendered without the app Tailwind build) ----------------- */

.lp-auth-form .box,
.lp-wiz .box {
  border: 1px solid var(--lp-border-strong);
  border-radius: .875rem;
  padding: .875rem 1rem;
  background: var(--lp-surface);
}

#captcha-checkbox:checked ~ .ti-square-rounded {
  display: none;
}

#captcha-checkbox:checked ~ .ti-square-rounded-check-filled {
  display: block !important;
}

/* ==========================================================================
   Signup wizard (/comecar)
   ========================================================================== */

.lp-wiz {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lp-wiz-top {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--lp-border);
  background: rgb(var(--color-contrast-primary) / .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lp-wiz-top-in {
  max-width: 64rem;
  margin: 0 auto;
  padding: .875rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-wiz-top-in img {
  display: block;
  max-width: 120px;
  max-height: 2rem;
  width: auto;
}

.lp-wiz-steps {
  display: none;
  align-items: center;
  gap: .25rem;
}

@media (min-width: 768px) {
  .lp-wiz-steps {
    display: flex;
  }
}

.lp-wiz-step-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 600;
  color: var(--lp-muted);
  transition: background-color .15s ease, color .15s ease;
}

.lp-wiz-step-btn:not(:disabled):hover {
  background: var(--lp-surface);
}

.lp-wiz-step-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.lp-wiz-step-btn.is-current {
  color: var(--lp-ink);
}

.lp-wiz-step-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  color: var(--lp-muted);
}

.lp-wiz-step-btn.is-current .lp-wiz-step-dot {
  background: var(--lp-ink);
  border-color: var(--lp-ink);
  color: var(--lp-bg);
}

.lp-wiz-step-btn.is-done .lp-wiz-step-dot {
  background: var(--lp-accent);
  border-color: var(--lp-accent);
  color: rgb(36 40 44);
}

.lp-wiz-progress {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .8125rem;
  color: var(--lp-muted);
}

@media (min-width: 768px) {
  .lp-wiz-progress {
    display: none;
  }
}

.lp-wiz-progress-track {
  width: 4.5rem;
  height: .375rem;
  border-radius: 999px;
  background: var(--lp-surface);
  overflow: hidden;
}

.lp-wiz-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: var(--lp-ink);
  transition: width .4s ease;
}

.lp-wiz-main {
  flex: 1;
  width: 100%;
  max-width: 46rem;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem;
}

@media (min-width: 640px) {
  .lp-wiz-main {
    padding: 3rem 1.5rem 5rem;
  }
}

.lp-wiz-head {
  margin-bottom: 2rem;
}

.lp-wiz-head h2 {
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin: 0;
}

.lp-wiz-head p {
  margin: .625rem 0 0;
  font-size: .9688rem;
  line-height: 1.6;
  color: var(--lp-muted);
}

.lp-wiz-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--lp-accent);
  color: rgb(36 40 44);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.lp-wiz-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lp-wiz-grid-2 {
  display: grid;
  gap: 1rem;
}

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

.lp-wiz-grid-3 {
  display: grid;
  gap: .75rem;
}

@media (min-width: 640px) {
  .lp-wiz-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .625rem;
}

@media (min-width: 640px) {
  .lp-chip-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-chip-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-chip {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .875rem 1rem;
  border-radius: .875rem;
  border: 1px solid var(--lp-border-strong);
  background: var(--lp-bg);
  cursor: pointer;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 600;
  color: var(--lp-ink);
  text-align: left;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.lp-chip:hover {
  background: var(--lp-surface);
}

.lp-chip.is-selected {
  border-color: rgb(36 40 44);
  background: var(--lp-surface);
  box-shadow: 0 0 0 1px rgb(36 40 44);
}

:root[data-mode="dark"] .lp-chip.is-selected {
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 1px var(--lp-accent);
}

.lp-chip .ti {
  font-size: 1.25rem;
  color: var(--lp-muted);
  flex-shrink: 0;
}

.lp-chip.is-selected .ti {
  color: var(--lp-ink);
}

.lp-chip small {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  color: var(--lp-muted);
  margin-top: .125rem;
}

.lp-check-card {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  padding: .875rem 1rem;
  border-radius: .875rem;
  border: 1px solid var(--lp-border);
  background: var(--lp-bg);
  cursor: pointer;
}

.lp-check-card input {
  margin-top: .1875rem;
  width: 1rem;
  height: 1rem;
  accent-color: rgb(36 40 44);
}

.lp-check-card strong {
  display: block;
  font-size: .875rem;
  font-weight: 600;
}

.lp-check-card span {
  display: block;
  font-size: .8125rem;
  color: var(--lp-muted);
  margin-top: .125rem;
}

.lp-note {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.125rem;
  border-radius: .875rem;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  font-size: .875rem;
  line-height: 1.55;
  color: var(--lp-muted);
}

.lp-note .ti {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: .0625rem;
}

.lp-note-success {
  border-color: rgb(48 200 98 / .35);
  background: rgb(48 200 98 / .08);
}

.lp-note-success .ti,
.lp-note-success strong {
  color: rgb(22 140 60);
}

.lp-note-warn {
  border-color: rgb(240 180 41 / .4);
  background: rgb(240 180 41 / .1);
}

.lp-note-info .ti {
  color: var(--lp-ink);
}

.lp-wiz-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lp-border);
}

.lp-btn-plain {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: none;
  background: transparent;
  padding: .625rem .875rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: .9063rem;
  font-weight: 600;
  color: var(--lp-muted);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}

.lp-btn-plain:hover:not(:disabled) {
  background: var(--lp-surface);
  color: var(--lp-ink);
}

.lp-btn-plain:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.lp-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

/* Agent preview card in wizard ---------------------------------------------- */

.lp-wiz-preview {
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border-strong);
  background: var(--lp-bg);
  padding: 1.125rem;
}

.lp-wiz-preview-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-bottom: .875rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-wiz-preview-head .lp-mock-avatar {
  width: 2.5rem;
  height: 2.5rem;
  font-size: .8125rem;
}

.lp-wiz-preview-name {
  font-size: .9063rem;
  font-weight: 650;
}

.lp-wiz-preview-status {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  font-weight: 600;
  color: rgb(var(--color-success));
}

.lp-wiz-preview-status i {
  width: .4375rem;
  height: .4375rem;
  border-radius: 999px;
  background: rgb(var(--color-success));
  display: inline-block;
}

.lp-wiz-preview .lp-msg {
  margin-top: 1rem;
  font-size: .875rem;
}

.lp-wiz-cols {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .lp-wiz-cols {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

.lp-wiz-summary {
  border-radius: .875rem;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  padding: 1rem 1.125rem;
  font-size: .875rem;
}

.lp-wiz-summary > strong {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 650;
  margin-bottom: .5rem;
}

.lp-wiz-summary ul {
  margin: 0;
  padding: 0 0 0 1.375rem;
  color: var(--lp-muted);
  line-height: 1.7;
}

.lp-wiz-bottom {
  border-top: 1px solid var(--lp-border);
  padding: .875rem 1rem calc(.875rem + env(safe-area-inset-bottom));
  text-align: center;
  font-size: .8438rem;
  color: var(--lp-muted);
}

/* "Entrar" no header: só a partir de 640px */
.lp-login-desktop {
  display: none;
}

@media (min-width: 640px) {
  .lp-login-desktop {
    display: inline-flex;
  }
}
