/* =============================================================
   lansweeper.css — Landing page Lansweeper (/produto/comprar-lansweeper)
   Prefixo: ls-
   Paleta: índigo Lansweeper (#4f46e5) + navy (#0f1535) + âmbar sinal (#f59e0b) + laranja CTA (#ea7626)
============================================================= */

/* -------------------------------------------------------------
   CHATBOT DE QUALIFICAÇÃO
   Renderizado dentro de .ag-form-wrap após o envio do form.
   Prefixo: ls-chat-  /  ls-msg-  /  ls-reply-
------------------------------------------------------------- */
.ls-chat {
  display: flex;
  flex-direction: column;
  height: 460px;
  font-family: 'Open Sans', sans-serif;
}

/* Cabeçalho do chat */
.ls-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 12px;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.ls-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.ls-chat-avatar img {
  width: 26px;
  height: auto;
  filter: brightness(0) invert(1);
}

.ls-chat-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ls-chat-name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.ls-chat-status {
  font-size: 11px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ls-chat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: ls-pulse 1.8s ease-in-out infinite;
}

@keyframes ls-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

/* Área de mensagens */
.ls-chat-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 4px;
  scroll-behavior: smooth;
}

.ls-chat-messages::-webkit-scrollbar { width: 4px; }
.ls-chat-messages::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

/* Mensagem — lado bot (esquerda) */
.ls-msg { display: flex; }
.ls-msg--bot { justify-content: flex-start; }
.ls-msg--user { justify-content: flex-end; }

.ls-msg-bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.55;
  word-break: break-word;
}

.ls-msg--bot  .ls-msg-bubble { background: #eef0fe; color: #111; border-bottom-left-radius: 4px; }
.ls-msg--user .ls-msg-bubble { background: #4f46e5; color: #fff; border-bottom-right-radius: 4px; }

/* Indicador de digitação */
.ls-msg-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
}

.ls-msg-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aaa;
  animation: ls-bounce 1.2s ease-in-out infinite;
}

.ls-msg-typing span:nth-child(2) { animation-delay: .2s; }
.ls-msg-typing span:nth-child(3) { animation-delay: .4s; }

@keyframes ls-bounce {
  0%, 80%, 100% { transform: translateY(0);    opacity: .5; }
  40%            { transform: translateY(-6px); opacity: 1;  }
}

/* Quick replies */
.ls-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0;
}

.ls-reply-btn {
  background: #fff;
  border: 1.5px solid #4f46e5;
  color: #4f46e5;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.ls-reply-btn:hover {
  background: #4f46e5;
  color: #fff;
}
.ls-reply-btn svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Campo de input do chat */
.ls-chat-input-row {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-shrink: 0;
}

.ls-chat-input-row input {
  flex: 1;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
}

.ls-chat-input-row input:focus { border-color: #4f46e5; }

#ls-chat-send {
  background: #4f46e5;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background .2s;
}

#ls-chat-send:hover { background: #4338ca; }

/* CTA final do chat */
.ls-chat-cta { padding: 10px 0 2px; }

/* Validação de e-mail corporativo — mensagem de erro */
.campo-erro {
  display: block;
  font-size: 11px;
  color: #dc3545;
  margin-top: 3px;
  margin-left: 2px;
}

input.erro {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, .15);
}

/* -------------------------------------------------------------
   BOTÃO DE ORÇAMENTO DO HEADER
   Pré-esconde no carregamento (form está visível na tela).
   JS adiciona .hdr-orcamento--show quando form sai da viewport.
   Sem !important aqui → a classe --show (com !important) vence.
------------------------------------------------------------- */
#hdrOrcamentoToggle,
#hdrOrcamentoToggleMob,
.hdr-compact-actions .hdr-orcamento {
    max-width: 0;
    opacity: 0;
    pointer-events: none;
}

/* -------------------------------------------------------------
   CONTAINER — compensa padding:0 global do main.css
   main.css define .container { padding: 0 } globalmente e
   @media(max-width:768px) .container { padding:0; max-width:100% }
   — isso remove qualquer margem lateral no mobile.
   Aqui restauramos o padding e o max-width para as seções da Agisoft.
------------------------------------------------------------- */
.ls-hero          > .container,
.ls-video-bridge  > .container,
.ls-how           > .container,
.ls-products      > .container,
.ls-requirements  > .container,
.ls-cta-blue      > .container,
.ls-precision     > .container,
.ls-why-osb       > .container,
.ls-faq           > .container {
  max-width: 1400px !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
}

@media (max-width: 991px) {
  .ls-hero          > .container,
  .ls-video-bridge  > .container,
  .ls-how           > .container,
  .ls-products      > .container,
  .ls-requirements  > .container,
  .ls-cta-blue      > .container,
  .ls-precision     > .container,
  .ls-why-osb       > .container,
  .ls-faq           > .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 575px) {
  .ls-hero          > .container,
  .ls-video-bridge  > .container,
  .ls-how           > .container,
  .ls-products      > .container,
  .ls-requirements  > .container,
  .ls-cta-blue      > .container,
  .ls-precision     > .container,
  .ls-why-osb       > .container,
  .ls-faq           > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 374px) {
  .ls-hero          > .container,
  .ls-video-bridge  > .container,
  .ls-how           > .container,
  .ls-products      > .container,
  .ls-requirements  > .container,
  .ls-cta-blue      > .container,
  .ls-precision     > .container,
  .ls-why-osb       > .container,
  .ls-faq           > .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* -------------------------------------------------------------
   BREADCRUMB
------------------------------------------------------------- */
.ls-breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 20px 0 16px;
}

.ls-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.15s;
}

.ls-breadcrumb a:hover { color: #fff; }

.ls-breadcrumb strong {
  color: #fff;
  font-weight: 600;
}

/* -------------------------------------------------------------
   HERO — geral
------------------------------------------------------------- */

/* Garante layout boxed: limita a largura do conteúdo e centraliza */
.ls-hero .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/*
  padding-bottom generoso cria a "cama" azul onde o card de vídeo
  vai pousar com margin-top negativo.
*/
.ls-hero { padding-bottom: 160px; }

.ls-hero-wrap {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* -------------------------------------------------------------
   HERO — coluna esquerda
------------------------------------------------------------- */
.ls-hero-left { flex: 1.5; }

.ls-hero-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ls-hero-logo {
  flex-shrink: 0;
  width: 148px;
  height: 72px;
  background: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
}

.ls-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ls-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

/* Caixa de descrição — card branco com texto escuro e borda azul esquerda */
.ls-hero-desc-box {
  background: #fff;
  border-radius: 0px;
  padding: 20px 24px;
  margin-bottom: 28px;
  width: 100%;
  border-left: 4px solid #f59e0b;
}

.ls-hero-desc-box p {
  font-size: 15px;
  line-height: 1.75;
  color: #222;
  margin: 0;
}

/* Fabricante + Categoria */
.ls-hero-meta {
  display: flex;
  gap: 48px;
  margin-bottom: 28px;
}

.ls-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ls-meta-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.ls-meta-value {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.ls-meta-tags {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ls-meta-tags span {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* Botão "Conheça mais a Agisoft" — fundo branco, texto azul escuro, pill */
.ls-hero-cta {
  display: inline-block;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 99px;
  padding: 11px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #4f46e5;
  text-decoration: none;
  transition: background 0.2s;
}

.ls-hero-cta:hover {
  background: rgba(255, 255, 255, 0.88);
  color: #4f46e5;
}

/* -------------------------------------------------------------
   HERO — coluna direita (formulário sticky)
------------------------------------------------------------- */
.ls-hero-right {
  flex: 0 0 380px;
  width: 380px;
}

.ag-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  position: sticky;
  top: 80px;
  color: #4f46e5;
}

/* Título do formulário: centralizado e azul */
.ag-form-wrap h2 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
  color: #4f46e5;
  text-align: center;
}

/* Grupo de campo — sem label, só input com placeholder */
.ag-field {
  margin-bottom: 8px;
}

.ag-form input:not([type="submit"]),
.ag-form textarea,
.ag-form select {
  width: 100%;
  display: block;
  border: 1px solid #b3b6f3;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  padding: 9px 12px;
  background: #fff;
  font-family: inherit;
  transition: border-color 0.15s;
}

.ag-form input:not([type="submit"]):focus,
.ag-form textarea:focus,
.ag-form select:focus {
  outline: none;
  border-color: #4f46e5;
}

.ag-form input:not([type="submit"])::placeholder,
.ag-form textarea::placeholder {
  color: #aaa;
}


/* Botão laranja de envio */
.ag-btn-submit {
  width: 100%;
  background: #ea7626;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  font-family: inherit;
  transition: background 0.2s;
}

.ag-btn-submit:hover:not(:disabled) { background: #c9601a; }

.ag-btn-submit:disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}

/* Estado de loading do botão */
.ag-btn-submit.is-loading {
    opacity: 0.85;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Spinner inline */
.ag-spinner {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ag-spin 0.65s linear infinite;
    flex-shrink: 0;
}

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

/* -------------------------------------------------------------
   VÍDEO — card notch (transição hero → conteúdo)
------------------------------------------------------------- */

/*
  TÉCNICA DO ENTALHE:
  ─────────────────────────────────────────────────────
  A <section> com background cobriria o azul do hero ao
  receber margin-top negativo. Por isso usamos um <div>
  SEM fundo (.ls-video-bridge). O div sobe com margin-top
  negativo e, como não tem cor de fundo, o azul do hero
  continua visível atrás do card branco.

  Diagrama:
  ┌─ hero azul (padding-bottom: 160px) ────────────────┐
  │  conteúdo                                           │
  │                                                     │
  │  ┌── card branco (margin-top: -110px) ───────────┐  │ ← card entra 110px
  │  │  iframe YouTube                               │  │   antes do fim do hero
  └──┼───────────────────────────────────────────────┼──┘
     │  (ls-what, fundo branco)                      │
     └───────────────────────────────────────────────┘
  ─────────────────────────────────────────────────────
*/

.ls-video-bridge {
  /* SEM background — herda a transparência para mostrar o azul do hero */
  position: relative;
  z-index: 10;
  margin-top: -110px; /* sobe o div inteiro para dentro do hero */
  padding-bottom: 40px;
}

.ls-video-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
  position: relative;
  z-index: 11;
  max-width: 100%;
  box-sizing: border-box;
}

/* Wrapper 16:9 responsivo */
.ls-video-embed {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
  box-sizing: border-box;
}

.ls-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;   /* impede o vídeo de estourar o card à direita no mobile */
  border: none;
  display: block;
}

/* -------------------------------------------------------------
   O QUE É — dentro do card branco, abaixo do vídeo
------------------------------------------------------------- */
.ls-what-inner {
  padding-top: 36px;
}

.ls-what-inner h2 {
  font-size: 26px;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 20px;
}

.ls-what-inner p {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 14px;
}

.ls-what-inner p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------
   COMO FUNCIONA — GRID DE CARDS
------------------------------------------------------------- */
.ls-how {
  background: #eff4fb;
  padding: 72px 0;
}

.ls-how-title {
  font-size: 24px;
  font-weight: 700;
  color: #4f46e5;
  text-align: center;
  line-height: 1.45;
  margin-bottom: 48px;
}

.ls-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ls-feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
}

.ls-feature-icon {
  display: block;
  font-size: 26px;
  margin-bottom: 12px;
  line-height: 1;
}

.ls-feature-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 8px;
}

.ls-feature-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* -------------------------------------------------------------
   VERSÕES / TABS
------------------------------------------------------------- */
.ls-products {
  background: #fff;
  padding: 64px 0;
}

.ls-tabs-panel {
  background: #0e1330;
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden; /* impede cards de vazarem pelo border-radius */
}

.ls-tabs-header {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.ls-tabs-nav {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 8px;
}

.ls-tab-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.ls-tab-btn.active,
.ls-tab-btn:hover {
  background: #4f46e5;
  color: #fff;
}

.ls-slider-controls {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.ls-slider-arrow {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: #fff;
  color: #c0c8d8;
  font-size: 26px;
  cursor: default;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  opacity: 0.45;
  pointer-events: none;
}

/* Ativo = há conteúdo para rolar nessa direção */
.ls-slider-arrow.is-active {
  background: #4f46e5;
  color: #fff;
  border-color: #4f46e5;
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.ls-slider-arrow.is-active:hover {
  background: #4338ca;
  border-color: #4338ca;
}

.ls-tab-content { display: none; }
.ls-tab-content.active { display: flex; flex-direction: column; align-items: center; width: 100%; }

/* Linha inferior: [espaçador flex:1] [CTA centralizado] [setas flex:1 alinhadas à direita] */
.ls-tab-bottom {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}

.ls-tab-bottom-side {
  flex: 1; /* espelha o lado das setas para manter CTA no centro geométrico */
}

.ls-tab-bottom .ls-tab-cta {
  flex: 0 0 auto;
}

.ls-tab-features {
  display: flex;
  justify-content: flex-start; /* center quebra scroll — os cards partem da esquerda */
  gap: 24px;
  width: 100%;          /* garante que não ultrapasse o pai */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  margin-bottom: 24px;
}

/* Descrição que aparece logo abaixo das abas e acima dos cards */
.ls-tab-description {
  color: rgba(255,255,255,0.95);
  max-width: 930px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

/* Oculta a scrollbar — navegação apenas pelas setas */
.ls-tab-features          { scrollbar-width: none; -ms-overflow-style: none; }
.ls-tab-features::-webkit-scrollbar { display: none; }

.ls-tab-feature {
  flex: 0 0 min(100%, 320px);
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
  scroll-snap-align: start;
  border-left: 4px solid #f59e0b;
}

.ls-tab-feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: #141a3d;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ls-tab-feature p {
  font-size: 14px;
  line-height: 1.75;
  color: #36415c;
  margin: 0;
}

.ls-tab-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 14px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.ls-tab-cta-primary {
  background: #4f46e5;
  border: 1px solid #4f46e5;
}

.ls-tab-cta-primary:hover {
  background: #4338ca;
}

/* -------------------------------------------------------------
   REQUISITOS DO SISTEMA
------------------------------------------------------------- */
.ls-requirements {
  background: #f2f6fb;
  padding: 72px 0;
}

.ls-req-card {
  background: #fff;
  border: 1px solid #d8e0ea;
  border-radius: 20px;
  padding: 40px 38px;
  box-shadow: 0 18px 40px rgba(18, 54, 103, 0.06);
}

.ls-requirements h2 {
  font-size: 28px;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 8px;
}

.ls-req-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
}

.ls-req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin-bottom: 32px;
}

.ls-req-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ls-req-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid #4f46e5;
  border-radius: 50%;
  color: #4f46e5;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.ls-req-item strong {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.5;
}

.ls-req-os-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-top: 28px;
  margin-bottom: 12px;
}

.ls-req-os-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.ls-req-os-list li {
  font-size: 14px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 8px;
}

/* -------------------------------------------------------------
   CTA: TRANSFORME IMAGENS
------------------------------------------------------------- */
.ls-cta-blue { padding: 72px 0; }

.ls-cta-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.ls-cta-image {
  flex: 0 0 35%;
  min-width: 0;
}

.ls-cta-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.ls-cta-content {
  flex: 1;
}

.ls-cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.ls-cta-content p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.ls-cta-content p:last-of-type {
  margin-bottom: 24px;
}

.ls-cta-action {
  display: flex;
  align-items: center;
}

.ls-cta-action .btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
}

/* -------------------------------------------------------------
   PRECISÃO E EFICIÊNCIA (linhas alternadas texto + imagem)
------------------------------------------------------------- */
.ls-precision {
  background: #fff;
  padding: 72px 0;
}

/* Cada linha: dois painéis lado a lado com espaçamento */
.ls-precision-row {
  display: flex;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.ls-precision-row:last-child { margin-bottom: 0; }

/* ROW invertida: imagem à esquerda, texto à direita */
.ls-precision-row--reverse { flex-direction: row-reverse; }

/* Painel de texto */
.ls-precision-content { flex: 1; }

.ls-precision-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 20px;
  line-height: 1.35;
}

.ls-precision-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 16px;
}

.ls-precision-content p:last-child { margin-bottom: 0; }

/* Painel de imagem: largura fixa + altura controlada */
.ls-precision-image {
  flex: 0 0 46%;
  border-radius: 12px;
  overflow: hidden;
}

.ls-precision-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Variante ligeiramente menor para a segunda linha */
.ls-precision-image--sm img { height: 280px; }

/* Checklist compartilhado (soluções + why OSB) */
.ls-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ls-checklist li {
  font-size: 14px;
  line-height: 1.55;
  color: #333;
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid rgba(23, 71, 158, 0.1);
  position: relative;
}

.ls-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #4f46e5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='white' d='M11.5 3L5.5 9 2.5 6 1 7.5l4.5 4.5 7.5-7.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* Variante branca (sobre fundo azul) */
.ls-checklist--white li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.ls-checklist--white li::before {
  background-color: rgba(255, 255, 255, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='white' d='M11.5 3L5.5 9 2.5 6 1 7.5l4.5 4.5 7.5-7.5z'/%3E%3C/svg%3E");
}

/* -------------------------------------------------------------
   POR QUE COMPRAR COM A OSB — fundo cinza claro, texto + imagem
------------------------------------------------------------- */
.ls-why-osb {
  background: #f2f5f9;
  padding: 72px 0;
}

.ls-why-wrap {
  display: flex;
  gap: 56px;
  align-items: center;
}

/* Coluna de texto */
.ls-why-content { flex: 1; }

.ls-why-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #4f46e5;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ls-why-content > p {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 18px;
}

/* Lista simples com marcadores disc */
.ls-why-body-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 20px;
}

.ls-why-body-list li {
  font-size: 14px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 8px;
}

/* Botão teal */
.ls-why-cta {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  border-radius: 8px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.ls-why-cta:hover { background: #d97706; color: #fff; }

/* Coluna de imagem */
.ls-why-image {
  flex: 0 0 42%;
  border-radius: 14px;
  overflow: hidden;
}

.ls-why-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* -------------------------------------------------------------
   FAQ
------------------------------------------------------------- */
.ls-faq {
  background: #fff;
  padding: 72px 0;
}

.ls-faq > .container > h2 {
  font-size: 28px;
  font-weight: 700;
  color: #4f46e5;
  text-align: center;
  margin-bottom: 48px;
}

.ls-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.ls-faq-item {
  border-bottom: 1px solid #dee2e6;
}

.ls-faq-item summary {
  font-size: 14px;
  font-weight: 600;
  color: #4f46e5;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  list-style: none;
  user-select: none;
}

.ls-faq-item summary::-webkit-details-marker { display: none; }

.ls-faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  color: #4f46e5;
  line-height: 1;
  transition: transform 0.2s;
}

.ls-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.ls-faq-item p {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  padding-bottom: 16px;
  margin: 0;
}

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1199px) {
  .ls-hero h1    { font-size: 34px; }
  .ls-hero-right { flex: 0 0 340px; width: 340px; }
}

@media (max-width: 991px) {
  /* Reduz o espaço azul e o entalhe no mobile */
  .ls-hero          { padding-bottom: 80px; }
  .ls-video-bridge  { margin-top: -60px; }

  .ls-hero-wrap {
    flex-direction: column;
    gap: 28px;
  }
  .ls-hero-left  { width: 100%; }
  .ls-hero-right {
    width: 100%;
    flex: none;
    order: 0; /* EXPERIMENTAL: formulário DEPOIS do hero no mobile/tablet
                 (ordem natural do DOM: hero → formulário → conteúdo) */
  }
  .ag-form-wrap  { position: static; }
  .ls-hero-meta  { gap: 28px; }

  .ls-what-cols           { grid-template-columns: 1fr; gap: 16px; }
  .ls-feature-grid        { grid-template-columns: 1fr 1fr; }
  .ls-tab-features        { grid-template-columns: 1fr; gap: 20px; }
  .ls-req-grid            { grid-template-columns: 1fr; }
  .ls-cta-inner           { flex-direction: column; gap: 28px; }
  .ls-precision-row       { flex-direction: column; gap: 28px; margin-bottom: 48px; }
  .ls-precision-row--reverse { flex-direction: column; }
  .ls-precision-image     { flex: none; width: 100%; }
  .ls-precision-image img { height: 220px; }
  .ls-precision-image--sm img { height: 220px; }
  .ls-why-wrap            { flex-direction: column; gap: 32px; }
  .ls-why-image           { flex: none; width: 100%; }
  .ls-why-image img       { height: 260px; }
  .ls-faq-grid            { grid-template-columns: 1fr; }
}

/* ─── Tablet portrait ────────────────────────────────────── */
@media (max-width: 767px) {
  /* Seções: reduz padding vertical */
  .ls-how,
  .ls-products,
  .ls-requirements,
  .ls-cta-blue,
  .ls-precision,
  .ls-why-osb,
  .ls-faq           { padding: 48px 0; }

  /* Cards com padding interno generoso */
  .ls-video-card    { padding: 20px; }
  .ls-req-card      { padding: 28px 22px; }
  .ls-tabs-panel    { padding: 22px 18px; }

  /* Botões de tab: mais compactos para caber dois lado a lado */
  .ls-tab-btn       { padding: 9px 16px; font-size: 13px; }

  /* Tab features: card menor em tablet */
  .ls-tab-feature   { padding: 22px 20px; }
}

/* ─── Mobile ─────────────────────────────────────────────── */
@media (max-width: 575px) {
  /* Seções: padding vertical reduzido */
  .ls-how,
  .ls-products,
  .ls-requirements,
  .ls-cta-blue,
  .ls-precision,
  .ls-why-osb,
  .ls-faq           { padding: 40px 0; }

  /* Tipografia hero */
  .ls-hero h1       { font-size: 26px; }
  .ls-how-title     { font-size: 18px; }
  .ls-cta-content h2      { font-size: 20px; }
  .ls-precision-content h2{ font-size: 20px; }
  .ls-why-content h2      { font-size: 22px; }
  .ls-faq > .container > h2 { font-size: 22px; }
  .ls-what-inner h2       { font-size: 20px; }

  /* Hero */
  .ls-hero          { padding-bottom: 60px; }
  .ls-hero-brand    { gap: 12px; }
  .ls-hero-logo     { width: 120px; height: 58px; }
  .ls-hero-desc-box { padding: 14px 16px; }
  .ls-hero-meta     { gap: 20px; flex-wrap: wrap; }

  /* Formulário: padding reduzido para não comprimir campos */
  .ag-form-wrap     { padding: 20px 16px; border-radius: 12px; }

  /* Cards de conteúdo */
  .ls-video-card    { padding: 16px; }
  .ls-video-bridge  { margin-top: -44px; }
  .ls-req-card      { padding: 22px 16px; }
  .ls-feature-grid  { grid-template-columns: 1fr; }
  .ls-feature-card  { padding: 20px 16px; }

  /* Tabs panel e botões */
  .ls-tabs-panel    { padding: 18px 14px; border-radius: 20px; }
  .ls-tabs-nav      { gap: 6px; padding: 6px; }
  .ls-tab-btn       { padding: 8px 10px; font-size: 12px; border-radius: 10px; }
  .ls-tab-feature   { padding: 18px 16px; }
  .ls-tab-description { font-size: 14px; }

  /* Requisitos */
  .ls-req-card      { padding: 20px 16px; }
  .ls-requirements h2 { font-size: 22px; }

  /* CTA + Precision + Why + Material */
  .ls-cta-image     { flex: none; width: 100%; }

  /* FAQ */
  .ls-faq-grid      { grid-template-columns: 1fr; }

  /* Chatbot: altura menor + reply buttons podem quebrar linha */
  .ls-chat          { height: auto; min-height: 400px; max-height: 520px; }
  .ls-reply-btn     { white-space: normal; text-align: left; }
}

/* ─── Telas muito pequenas (320px) ──────────────────────── */
@media (max-width: 374px) {
  .ls-hero h1       { font-size: 22px; }
  .ag-form-wrap     { padding: 16px 12px; }
  .ls-video-card    { padding: 12px; }
  .ls-tabs-panel    { padding: 14px 10px; }
  .ls-tab-btn       { padding: 7px 8px; font-size: 11px; }
  .ls-req-card      { padding: 18px 12px; }
  .ls-reply-btn     { font-size: 11px; padding: 5px 10px; }
}

/* =============================================================
   REDESIGN v2 — identidade própria da LP DroneDeploy
   Mantém o esqueleto do molde, mas com visual exclusivo:
   hero animado (mapeamento aéreo), etapas numeradas, ilustrações
   SVG, FAQ em cards e gradientes próprios.
   (Este bloco vem DEPOIS das regras herdadas — a cascata vence.)
============================================================= */

/* ── Scroll suave: CTA do hero rola até o conteúdo ── */
html { scroll-behavior: smooth; }
#ls-conteudo { scroll-margin-top: 90px; }

/* ── HERO Lansweeper: tema "descoberta de rede" — constelação de ativos
      (hub scanner + nós de dispositivos ligados) com ondas de varredura
      expandindo e nós recém-descobertos piscando (identidade própria,
      distinta do radar/SOC do Teramind e das demais LPs) ── */
.ls-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 58% 55% at 78% 42%, rgba(79,70,229,.22), transparent 60%),
    linear-gradient(160deg, #0b0f2a 0%, #141a3d 55%, #232a6b 130%);
}
.ls-hero > .container { position: relative; z-index: 3; }

.ls-hero-sky { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

/* Grade de fundo — sugere a malha de rede */
.ls-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,70,229,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,.09) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}

/* Constelação de ativos (topologia): SVG com hub central + nós ligados */
.ls-net {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 460px;
  height: 460px;
  transform: translateY(-50%);
}
.ls-net svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* Links entre hub e dispositivos — fluxo de dados tracejado */
.ls-link {
  stroke: rgba(79,70,229,.35);
  stroke-width: 1.5;
  stroke-dasharray: 5 6;
  animation: ls-flow 3s linear infinite;
}
@keyframes ls-flow { to { stroke-dashoffset: -22; } }

/* Nós (dispositivos) */
.ls-node       { fill: #1b2150; stroke: #4f46e5; stroke-width: 2; }
.ls-node-ic    { fill: #a5b4fc; }
.ls-node-ic-w  { fill: #fff; }
/* Nós recém-descobertos: contorno pisca em âmbar (shadow IT / não gerenciado) */
.ls-node.found { animation: ls-found 2.6s ease-in-out infinite; }
.ls-node.found.d2 { animation-delay: 1.3s; }
@keyframes ls-found {
  0%, 100% { stroke: #4f46e5; }
  50%      { stroke: #f59e0b; }
}

/* Hub central (scanner Lansweeper) */
.ls-hub      { fill: #4f46e5; }
.ls-hub-ring { fill: none; stroke: #818cf8; stroke-width: 2; opacity: .6; }

/* Ondas de varredura expandindo a partir do hub (descoberta contínua) */
.ls-scan { position: absolute; inset: 0; }
.ls-scan span {
  position: absolute;
  left: 50%; top: 50%;
  width: 56px; height: 56px;
  margin: -28px 0 0 -28px;
  border: 2px solid rgba(79,70,229,.5);
  border-radius: 50%;
  animation: ls-scan-wave 3.3s ease-out infinite;
}
.ls-scan span:nth-child(2) { animation-delay: 1.1s; }
.ls-scan span:nth-child(3) { animation-delay: 2.2s; }
@keyframes ls-scan-wave {
  0%   { transform: scale(.35); opacity: .85; }
  100% { transform: scale(4);   opacity: 0;   }
}

/* Acessibilidade: sem animação para quem prefere movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .ls-link, .ls-node.found, .ls-scan span { animation: none; }
}

/* ── Chips de destaque (dentro do card "O que é") ── */
.ls-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.ls-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eef0fe;
  color: #4338ca;
  border: 1px solid #bcbef6;
  border-radius: 99px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 600;
}

/* ── COMO FUNCIONA: etapas numeradas com hover ── */
.ls-how { background: linear-gradient(180deg, #eef0fe 0%, #e3e5fc 100%); }
.ls-how-title { margin-bottom: 12px; }
.ls-how-sub {
  text-align: center;
  color: #5b6b85;
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 44px;
}
.ls-feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #d5d8fb;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(20,26,61,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ls-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(79,70,229,.16);
  border-color: rgba(79,70,229,.35);
}
.ls-feature-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5, #f59e0b);
  opacity: 0;
  transition: opacity .25s;
}
.ls-feature-card:hover::after { opacity: 1; }
.ls-feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

/* ── Ilustrações SVG exclusivas ── */
.ls-illus { width: 100%; }
.ls-illus svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(14,19,48,.16);
}
/* containers de imagem não devem cortar a sombra das ilustrações */
.ls-precision-image { overflow: visible; }

/* ── Seções azuis com gradiente próprio ── */
.ls-cta-blue {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0e1330 0%, #3730a3 100%);
}
.ls-cta-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='620' viewBox='0 0 900 620' fill='none' stroke='%23ffffff' stroke-width='1.3'%3E%3Cpath d='M0 90 C140 40 260 140 420 96 S700 30 900 92'/%3E%3Cpath d='M0 150 C160 100 300 200 460 150 S740 90 900 150'/%3E%3Cellipse cx='660' cy='500' rx='190' ry='95'/%3E%3Cellipse cx='660' cy='500' rx='140' ry='66'/%3E%3Cellipse cx='660' cy='500' rx='90' ry='40'/%3E%3C/svg%3E");
  background-size: 900px 620px;
  opacity: .07;
  pointer-events: none;
}
.ls-cta-blue > .container { position: relative; }

/* ── Compatibilidade: checks em teal ── */
.ls-req-icon {
  border-color: #f59e0b;
  color: #d97706;
  background: rgba(245,158,11,.08);
}

/* ── FAQ: accordion em cards ── */
.ls-faq { background: #f1f2fe; }
.ls-faq-item {
  background: #fff;
  border: 1px solid #d5d8fb;
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 2px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.ls-faq-item[open] {
  border-color: rgba(79,70,229,.4);
  box-shadow: 0 10px 26px rgba(79,70,229,.08);
}
.ls-faq-item summary { padding: 15px 0; }

/* ── Responsivo do redesign ── */
@media (max-width: 575px) {
  .ls-net, .ls-scan { display: none; }
  .ls-how-sub { font-size: 14px; margin-bottom: 32px; }
}

/* =============================================================
   REDESIGN v3 — prova social + micro-interações
   Badge do hero, faixa de estatísticas com contadores,
   reveal-on-scroll e brilho no CTA.
============================================================= */

/* ── Badge de prova social no hero ── */
.ls-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,.14);
  border: 1px solid rgba(245,158,11,.45);
  color: #fde68a;
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.ls-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  animation: ls-ping 2.4s ease-out infinite;
}

/* ── Faixa de estatísticas (números oficiais) ──
   Título de seção padrão (H2) + subtítulo + painel único com
   barra gradiente, divisórias e contadores animados. */
.ls-stats { background: #fff; padding: 64px 0; }
.ls-stats > .container {
  max-width: 1400px !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
}

.ls-stats-title {
  font-size: 26px;
  font-weight: 700;
  color: #4f46e5;
  text-align: center;
  line-height: 1.3;
  margin: 0 0 10px;
}
.ls-stats-sub {
  text-align: center;
  color: #5b6b85;
  font-size: 15px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 36px;
}

.ls-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(160deg, #eef0fe, #fff);
  border: 1px solid #d5d8fb;
  border-radius: 20px;
  padding: 40px 22px;
  box-shadow: 0 16px 44px rgba(20,26,61,.07);
  position: relative;
  overflow: hidden;
}
.ls-stats-grid::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #f59e0b);
}
.ls-stat {
  text-align: center;
  padding: 8px 22px;
}
.ls-stat:not(:last-child) { border-right: 1px solid #d5d8fb; }
.ls-stat-num {
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, #4f46e5, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.ls-stat-label {
  font-size: 13px;
  color: #5b6b85;
  font-weight: 600;
  line-height: 1.4;
}

/* ── Reveal on scroll (classes aplicadas via JS) ── */
.ls-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.ls-reveal.ls-in {
  opacity: 1;
  transform: translateY(0);
}
/* O hover dos cards precisa vencer o transform do reveal */
.ls-feature-card.ls-in:hover { transform: translateY(-6px); }

/* ── Brilho suave no botão de envio do formulário ── */
.ag-btn-submit:not(:disabled) { animation: ls-glow 2.8s ease-in-out infinite; }
@keyframes ls-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,118,38,0); }
  50%      { box-shadow: 0 6px 24px 2px rgba(234,118,38,.38); }
}

@media (prefers-reduced-motion: reduce) {
  .ls-reveal { opacity: 1; transform: none; transition: none; }
  .ls-badge-dot, .ag-btn-submit:not(:disabled) { animation: none; }
}

/* ── Responsivo da faixa de números ── */
@media (max-width: 991px) {
  .ls-stats { padding: 52px 0; }
  .ls-stats > .container { padding-left: 20px !important; padding-right: 20px !important; }
  .ls-stats-grid {
    grid-template-columns: 1fr 1fr;
    padding: 30px 14px;
    row-gap: 30px;
  }
  /* grade 2×2: divisória apenas entre as colunas */
  .ls-stat:not(:last-child) { border-right: none; }
  .ls-stat:nth-child(odd) { border-right: 1px solid #d5d8fb; }
}
@media (max-width: 575px) {
  .ls-stats { padding: 40px 0; }
  .ls-stats > .container { padding-left: 16px !important; padding-right: 16px !important; }
  .ls-stats-title { font-size: 20px; }
  .ls-stats-sub { font-size: 14px; margin-bottom: 28px; }
  .ls-stats-grid { padding: 24px 10px; row-gap: 24px; }
  .ls-stat { padding: 6px 12px; }
  .ls-stat-num { font-size: 32px; }
  .ls-hero-badge { font-size: 12px; padding: 6px 12px; }
}

/* =============================================================
   SEO / SEMÂNTICA v4 — ajustes de estrutura sem mudar o visual
============================================================= */

/* Subtítulo do H1 (mantém 1 único H1 descritivo, mas discreto) */
.ls-h1-sub {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255,255,255,.82);
  margin-top: 8px;
  max-width: 460px;
}

/* Título da seção Soluções (H2 que faltava para a hierarquia) */
.ls-solucoes-title {
  font-size: 24px;
  font-weight: 700;
  color: #4f46e5;
  text-align: center;
  line-height: 1.35;
  margin-bottom: 32px;
}

/* Cards "Como funciona": H3 com o MESMO visual do antigo <strong> */
.ls-feature-card h3 {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #4f46e5;
  margin: 0 0 8px;
  line-height: 1.3;
}

@media (max-width: 575px) {
  .ls-h1-sub { font-size: 13px; }
  .ls-solucoes-title { font-size: 19px; margin-bottom: 24px; }
}

/* Âncora do formulário: para abaixo do header fixo (mostra o título do form) */
#ls-form-anchor { scroll-margin-top: 100px; }

/* =============================================================
   SEÇÃO DE PLANOS — exclusiva da LP Semrush (Pro / Guru / Business)
============================================================= */
.ls-plans { background: #fff; padding: 72px 0; }
.ls-plans > .container {
  max-width: 1400px !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
}
.ls-plans-title {
  font-size: 26px;
  font-weight: 700;
  color: #4f46e5;
  text-align: center;
  line-height: 1.3;
  margin: 0 0 10px;
}
.ls-plans-sub {
  text-align: center;
  color: #5b6b85;
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 40px;
}
.ls-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.ls-plan {
  position: relative;
  background: linear-gradient(160deg, #eef0fe, #fff);
  border: 1px solid #d5d8fb;
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ls-plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(79,70,229,.16);
  border-color: rgba(79,70,229,.35);
}
/* Plano do meio (Guru) em destaque */
.ls-plan--hot {
  border-color: #f59e0b;
  box-shadow: 0 14px 40px rgba(245,158,11,.14);
}
.ls-plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4f46e5;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.ls-plan--hot .ls-plan-tag { background: #f59e0b; }
.ls-plan h3 {
  font-size: 24px;
  font-weight: 800;
  color: #141a3d;
  text-align: center;
  margin: 6px 0 18px;
}
.ls-plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.ls-plan li {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px solid rgba(79,70,229,.08);
}
.ls-plan li:last-child { border-bottom: none; }
.ls-plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 800;
}
.ls-plan-cta {
  display: block;
  text-align: center;
  background: #4f46e5;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.ls-plan-cta:hover { background: #4338ca; color: #fff; }
.ls-plan--hot .ls-plan-cta { background: #f59e0b; }
.ls-plan--hot .ls-plan-cta:hover { background: #d97706; }
.ls-plans-note {
  text-align: center;
  font-size: 14px;
  color: #5b6b85;
  margin-top: 28px;
}
.ls-plans-note strong { color: #4f46e5; }

@media (max-width: 991px) {
  .ls-plans { padding: 52px 0; }
  .ls-plans > .container { padding-left: 20px !important; padding-right: 20px !important; }
  .ls-plans-grid { grid-template-columns: 1fr; gap: 26px; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 575px) {
  .ls-plans { padding: 40px 0; }
  .ls-plans > .container { padding-left: 16px !important; padding-right: 16px !important; }
  .ls-plans-title { font-size: 20px; }
  .ls-plans-sub { font-size: 14px; margin-bottom: 32px; }
  .ls-plan { padding: 24px 18px; }
}

/* Tablet: o formulário sobe para o topo — a constelação sairia atrás dele */
@media (max-width: 991px) {
  .ls-net, .ls-scan { display: none; }
}

/* =============================================================
   SEÇÃO DE PROCESSO EM 4 PASSOS — exclusiva da LP Lansweeper
   (substitui a grade de 6 cards das outras LPs)
============================================================= */
.ls-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
/* linha conectora entre os passos (desktop) */
@media (min-width: 992px) {
  .ls-steps::before {
    content: "";
    position: absolute;
    top: 52px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(79,70,229,.45) 0 10px, transparent 10px 18px);
    z-index: 0;
  }
}
.ls-step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #e0e2fb;
  border-radius: 16px;
  padding: 26px 22px 22px;
  box-shadow: 0 6px 24px rgba(35,42,107,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ls-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(79,70,229,.16);
  border-color: rgba(79,70,229,.4);
}
.ls-step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5, #141a3d);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(79,70,229,.28);
}
.ls-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #232a6b;
  margin: 0 0 8px;
  line-height: 1.3;
}
.ls-step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #55707a;
  margin: 0;
}
/* seta de fluxo (aparece entre os cards no desktop) */
.ls-step::after {
  content: "→";
  position: absolute;
  top: 40px;
  right: -14px;
  font-size: 20px;
  font-weight: 700;
  color: #4f46e5;
  z-index: 2;
}
.ls-step:last-child::after { display: none; }
@media (max-width: 991px) {
  .ls-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ls-step::after { display: none; }
}
@media (max-width: 575px) {
  .ls-steps { grid-template-columns: 1fr; }
}
