/* =============================================================
   minitab.css — Landing page Minitab (/produto/comprar-minitab)
   Prefixo: mn-
   Paleta: azul Minitab (#0078bb, da logomarca) + navy (#04263c) + âmbar/dourado sinal (#f59e0b) + laranja CTA (#ea7626)
============================================================= */

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

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

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

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

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

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

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

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

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

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

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

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

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

.mn-msg--bot  .mn-msg-bubble { background: #ecf5fb; color: #111; border-bottom-left-radius: 4px; }
.mn-msg--user .mn-msg-bubble { background: #0078bb; color: #fff; border-bottom-right-radius: 4px; }

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

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

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

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

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

.mn-reply-btn {
  background: #fff;
  border: 1.5px solid #0078bb;
  color: #0078bb;
  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;
}

.mn-reply-btn:hover {
  background: #0078bb;
  color: #fff;
}
.mn-reply-btn svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

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

.mn-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;
}

.mn-chat-input-row input:focus { border-color: #0078bb; }

#mn-chat-send {
  background: #0078bb;
  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;
}

#mn-chat-send:hover { background: #00629b; }

/* CTA final do chat */
.mn-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.
------------------------------------------------------------- */
.mn-hero          > .container,
.mn-video-bridge  > .container,
.mn-how           > .container,
.mn-products      > .container,
.mn-requirements  > .container,
.mn-cta-blue      > .container,
.mn-precision     > .container,
.mn-why-osb       > .container,
.mn-faq           > .container {
  max-width: 1400px !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
}

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

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

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

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

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

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

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

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

/* Garante layout boxed: limita a largura do conteúdo e centraliza */
.mn-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.
*/
.mn-hero { padding-bottom: 160px; }

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

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

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

.mn-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;
}

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

.mn-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 */
.mn-hero-desc-box {
  background: #fff;
  border-radius: 0px;
  padding: 20px 24px;
  margin-bottom: 28px;
  width: 100%;
  border-left: 4px solid #f59e0b;
}

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

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

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

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

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

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

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

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

.mn-hero-cta:hover {
  background: rgba(255, 255, 255, 0.88);
  color: #0078bb;
}

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

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

/* 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: #0078bb;
  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 #a9d4ee;
  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: #0078bb;
}

.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 (.mn-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
  └──┼───────────────────────────────────────────────┼──┘
     │  (mn-what, fundo branco)                      │
     └───────────────────────────────────────────────┘
  ─────────────────────────────────────────────────────
*/

.mn-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;
}

.mn-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 */
.mn-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;
}

.mn-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
------------------------------------------------------------- */
.mn-what-inner {
  padding-top: 36px;
}

.mn-what-inner h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0078bb;
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

.mn-feature-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0078bb;
  margin-bottom: 8px;
}

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

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

.mn-tabs-panel {
  background: #062840;
  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 */
}

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

.mn-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;
}

.mn-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;
}

.mn-tab-btn.active,
.mn-tab-btn:hover {
  background: #0078bb;
  color: #fff;
}

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

.mn-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 */
.mn-slider-arrow.is-active {
  background: #0078bb;
  color: #fff;
  border-color: #0078bb;
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.mn-slider-arrow.is-active:hover {
  background: #00629b;
  border-color: #00629b;
}

.mn-tab-content { display: none; }
.mn-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] */
.mn-tab-bottom {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}

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

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

.mn-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 */
.mn-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 */
.mn-tab-features          { scrollbar-width: none; -ms-overflow-style: none; }
.mn-tab-features::-webkit-scrollbar { display: none; }

.mn-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;
}

.mn-tab-feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0a3350;
  margin-bottom: 16px;
  line-height: 1.2;
}

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

.mn-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;
}

.mn-tab-cta-primary {
  background: #0078bb;
  border: 1px solid #0078bb;
}

.mn-tab-cta-primary:hover {
  background: #00629b;
}

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

.mn-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);
}

.mn-requirements h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0078bb;
  margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mn-precision-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0078bb;
  margin-bottom: 20px;
  line-height: 1.35;
}

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

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

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

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

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

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

.mn-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;
}

.mn-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #0078bb;
  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) */
.mn-checklist--white li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.mn-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
------------------------------------------------------------- */
.mn-why-osb {
  background: #f2f5f9;
  padding: 72px 0;
}

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

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

.mn-why-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0078bb;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

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

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

/* Botão teal */
.mn-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;
}

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

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

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

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

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

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

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

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

.mn-faq-item summary::-webkit-detaimn-marker { display: none; }

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

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

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

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

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

  .mn-hero-wrap {
    flex-direction: column;
    gap: 28px;
  }
  .mn-hero-left  { width: 100%; }
  .mn-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; }
  .mn-hero-meta  { gap: 28px; }

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

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

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

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

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

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

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

  /* Hero */
  .mn-hero          { padding-bottom: 60px; }
  .mn-hero-brand    { gap: 12px; }
  .mn-hero-logo     { width: 120px; height: 58px; }
  .mn-hero-desc-box { padding: 14px 16px; }
  .mn-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 */
  .mn-video-card    { padding: 16px; }
  .mn-video-bridge  { margin-top: -44px; }
  .mn-req-card      { padding: 22px 16px; }
  .mn-feature-grid  { grid-template-columns: 1fr; }
  .mn-feature-card  { padding: 20px 16px; }

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

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

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

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

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

/* ─── Telas muito pequenas (320px) ──────────────────────── */
@media (max-width: 374px) {
  .mn-hero h1       { font-size: 22px; }
  .ag-form-wrap     { padding: 16px 12px; }
  .mn-video-card    { padding: 12px; }
  .mn-tabs-panel    { padding: 14px 10px; }
  .mn-tab-btn       { padding: 7px 8px; font-size: 11px; }
  .mn-req-card      { padding: 18px 12px; }
  .mn-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; }
#mn-conteudo { scroll-margin-top: 90px; }

/* ── HERO Minitab: tema "análise estatística" — nuvem de dispersão com
      linha de regressão que se desenha, curva normal (gaussiana) com área
      sombreada e ponto de dado pulsante (identidade própria, distinta da
      constelação/radar/deck das demais LPs) ── */
.mn-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 58% 55% at 78% 42%, rgba(0,120,187,.22), transparent 60%),
    linear-gradient(160deg, #04263c 0%, #0a3350 55%, #0e4a72 130%);
}
.mn-hero > .container { position: relative; z-index: 3; }

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

/* Grade de fundo — papel milimetrado / plano cartesiano */
.mn-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,120,187,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,120,187,.09) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}

/* Painel do gráfico estatístico (SVG: eixos + dispersão + regressão + curva) */
.mn-chart {
  position: absolute;
  top: 50%;
  right: 3%;
  width: 500px;
  height: 430px;
  transform: translateY(-50%);
}
.mn-chart svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* Eixos e marcas */
.mn-axis { stroke: rgba(255,255,255,.20); stroke-width: 1.5; stroke-linecap: round; }
.mn-tick { stroke: rgba(255,255,255,.10); stroke-width: 1; }

/* Área sob a curva normal (fade-in) */
.mn-area { fill: rgba(0,120,187,.18); opacity: 0; animation: mn-area-in 1.1s ease-out .4s forwards; }
@keyframes mn-area-in { to { opacity: 1; } }

/* Curva normal (gaussiana) desenhando-se */
.mn-curve {
  fill: none; stroke: #3aa0d8; stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 640; stroke-dashoffset: 640;
  animation: mn-draw 2.2s ease-out .3s forwards;
}
/* Linha de regressão / tendência ajustada */
.mn-fit {
  fill: none; stroke: #f59e0b; stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 520; stroke-dashoffset: 520;
  animation: mn-draw 1.9s ease-out 1s forwards;
}
@keyframes mn-draw { to { stroke-dashoffset: 0; } }

/* Pontos de dispersão — surgem em sequência (delays inline no SVG) */
.mn-pt    { fill: #8ecbe9; opacity: 0; animation: mn-pt-in .5s ease-out both; }
.mn-pt-hi { fill: #f59e0b; }
@keyframes mn-pt-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.mn-pt, .mn-pt-hi { transform-box: fill-box; transform-origin: center; }

/* Anel pulsante em torno do ponto destacado */
.mn-pt-ring {
  fill: none; stroke: #f59e0b; stroke-width: 2;
  transform-box: fill-box; transform-origin: center;
  animation: mn-ring 2.4s ease-out 1.4s infinite;
}
@keyframes mn-ring {
  0%   { transform: scale(.4); opacity: .9; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Acessibilidade: sem animação para quem prefere movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .mn-area, .mn-curve, .mn-fit, .mn-pt, .mn-pt-ring { animation: none; opacity: 1; stroke-dashoffset: 0; }
}

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

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

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

/* ── Seções azuis com gradiente próprio ── */
.mn-cta-blue {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #062840 0%, #004d7a 100%);
}
.mn-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;
}
.mn-cta-blue > .container { position: relative; }

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

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

/* ── Responsivo do redesign ── */
@media (max-width: 575px) {
  .mn-chart { display: none; }
  .mn-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 ── */
.mn-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;
}
.mn-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  animation: mn-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. */
.mn-stats { background: #fff; padding: 64px 0; }
.mn-stats > .container {
  max-width: 1400px !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
}

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

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

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

/* ── Brilho suave no botão de envio do formulário ── */
.ag-btn-submit:not(:disabled) { animation: mn-glow 2.8s ease-in-out infinite; }
@keyframes mn-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) {
  .mn-reveal { opacity: 1; transform: none; transition: none; }
  .mn-badge-dot, .ag-btn-submit:not(:disabled) { animation: none; }
}

/* ── Responsivo da faixa de números ── */
@media (max-width: 991px) {
  .mn-stats { padding: 52px 0; }
  .mn-stats > .container { padding-left: 20px !important; padding-right: 20px !important; }
  .mn-stats-grid {
    grid-template-columns: 1fr 1fr;
    padding: 30px 14px;
    row-gap: 30px;
  }
  /* grade 2×2: divisória apenas entre as colunas */
  .mn-stat:not(:last-child) { border-right: none; }
  .mn-stat:nth-child(odd) { border-right: 1px solid #d7ebf9; }
}
@media (max-width: 575px) {
  .mn-stats { padding: 40px 0; }
  .mn-stats > .container { padding-left: 16px !important; padding-right: 16px !important; }
  .mn-stats-title { font-size: 20px; }
  .mn-stats-sub { font-size: 14px; margin-bottom: 28px; }
  .mn-stats-grid { padding: 24px 10px; row-gap: 24px; }
  .mn-stat { padding: 6px 12px; }
  .mn-stat-num { font-size: 32px; }
  .mn-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) */
.mn-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) */
.mn-solucoes-title {
  font-size: 24px;
  font-weight: 700;
  color: #0078bb;
  text-align: center;
  line-height: 1.35;
  margin-bottom: 32px;
}

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

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

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

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

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

/* Tablet: o formulário sobe para o topo — o gráfico sairia atrás dele */
@media (max-width: 991px) {
  .mn-chart { display: none; }
}

/* =============================================================
   SEÇÃO FAMÍLIA DE PRODUTOS — resumo do portfólio Minitab
============================================================= */
.mn-prods { background: #fff; padding: 80px 0; }
.mn-prods-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: #04263c;
  margin: 0 0 10px;
}
.mn-prods-sub {
  text-align: center;
  font-size: 15px;
  color: #5b6b85;
  max-width: 680px;
  margin: 0 auto 44px;
}
.mn-prods-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.mn-prod {
  background: #f2f8fc;
  border: 1px solid #e0ecf6;
  border-radius: 16px;
  padding: 24px 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mn-prod:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,120,187,.14);
  border-color: rgba(0,120,187,.4);
}
.mn-prod-img {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
  margin-bottom: 16px;
}
.mn-prod-img img {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.mn-prod h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #04263c;
  margin: 0 0 8px;
  line-height: 1.3;
}
.mn-prod p {
  font-size: 13px;
  line-height: 1.6;
  color: #55707a;
  margin: 0;
}
@media (max-width: 991px) {
  .mn-prods-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
  .mn-prods { padding: 56px 0; }
  .mn-prods-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .mn-prods-title { font-size: 24px; }
  .mn-prod { padding: 18px 16px; }
}

/* =============================================================
   SEÇÃO CLIENTES — "Empresas que confiam na OSB e usam Minitab"
   Faixa de logos em escala de cinza que colorem no hover.
============================================================= */
.mn-clients { background: #f2f8fc; padding: 64px 0; }
.mn-clients-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #0a3350;
  margin: 0 0 8px;
}
.mn-clients-sub {
  text-align: center;
  font-size: 15px;
  color: #5b6b85;
  max-width: 640px;
  margin: 0 auto 40px;
}
.mn-clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}
.mn-client {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e0ecf6;
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mn-client:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,120,187,.12);
  border-color: rgba(0,120,187,.35);
}
.mn-client img {
  max-width: 100%;
  max-height: 52px;
  filter: grayscale(1);
  opacity: .68;
  transition: filter .25s ease, opacity .25s ease;
}
.mn-client:hover img { filter: grayscale(0); opacity: 1; }

@media (max-width: 991px) {
  .mn-clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
  .mn-clients { padding: 48px 0; }
  .mn-clients-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .mn-client { height: 80px; padding: 12px; }
  .mn-clients-title { font-size: 22px; }
}

/* =============================================================
   SEÇÃO DEPOIMENTOS — "O que nossos clientes dizem"
============================================================= */
.mn-tst { background: #fff; padding: 80px 0; }
.mn-tst-head { text-align: center; margin-bottom: 48px; }
.mn-tst-head h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0a3350;
  margin: 0 0 10px;
}
.mn-tst-head p {
  font-size: 15px;
  color: #5b6b85;
  max-width: 640px;
  margin: 0 auto;
}
.mn-tst-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}
.mn-tst-card {
  position: relative;
  flex: 1 1 380px;
  max-width: 460px;
  background: #f2f8fc;
  border: 1px solid #e0ecf6;
  border-radius: 20px;
  padding: 34px 28px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 22px rgba(10,51,80,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mn-tst-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,120,187,.14); }
.mn-tst-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 60px;
  line-height: 1;
  color: #0078bb;
  opacity: .22;
  height: 30px;
}
.mn-tst-stars { color: #f5a524; font-size: 16px; letter-spacing: 2px; margin: 6px 0 12px; }
.mn-tst-text {
  font-size: 15px;
  line-height: 1.7;
  color: #33475c;
  margin: 0 0 22px;
  flex: 1;
}
.mn-tst-author { display: flex; align-items: center; gap: 14px; }
.mn-tst-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0078bb, #0a3350);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}
.mn-tst-name { font-weight: 700; font-size: 15px; color: #0a3350; line-height: 1.3; }
.mn-tst-role { font-size: 13px; color: #5b6b85; }

@media (max-width: 991px) {
  .mn-tst-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 575px) {
  .mn-tst { padding: 56px 0; }
  .mn-tst-head h2 { font-size: 24px; }
  .mn-tst-card { padding: 28px 22px 24px; }
}

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