/* =============================================================
   dronedeploy.css — Landing page de produto DroneDeploy
   Prefixo: dd-
   Paleta: azul DroneDeploy (#0b5fff) + teal (#12b981) + laranja CTA (#ea7626)
============================================================= */

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

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

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

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

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

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

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

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

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

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

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

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

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

.dd-msg--bot  .dd-msg-bubble { background: #f0f4fb; color: #111; border-bottom-left-radius: 4px; }
.dd-msg--user .dd-msg-bubble { background: #0b5fff; color: #fff; border-bottom-right-radius: 4px; }

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

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

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

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

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

.dd-reply-btn {
  background: #fff;
  border: 1.5px solid #0b5fff;
  color: #0b5fff;
  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;
}

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

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

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

.dd-chat-input-row input:focus { border-color: #0b5fff; }

#dd-chat-send {
  background: #0b5fff;
  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;
}

#dd-chat-send:hover { background: #0847cc; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dd-hero-cta:hover {
  background: rgba(255, 255, 255, 0.88);
  color: #0b5fff;
}

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

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

/* 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: #0b5fff;
  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 #cadbf2;
  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: #0b5fff;
}

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

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

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

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

.dd-what-inner h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0b5fff;
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

.dd-feature-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0b5fff;
  margin-bottom: 8px;
}

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

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

.dd-tabs-panel {
  background: #071a3a;
  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 */
}

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

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

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

.dd-tab-btn.active,
.dd-tab-btn:hover {
  background: #0b5fff;
  color: #fff;
}

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

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

.dd-slider-arrow.is-active:hover {
  background: #0847cc;
  border-color: #0847cc;
}

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

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

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

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

.dd-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 #12b981;
}

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

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

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

.dd-tab-cta-primary {
  background: #0b5fff;
  border: 1px solid #0b5fff;
}

.dd-tab-cta-primary:hover {
  background: #0847cc;
}

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

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

.dd-requirements h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0b5fff;
  margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dd-precision-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0b5fff;
  margin-bottom: 20px;
  line-height: 1.35;
}

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

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

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

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

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

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

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

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

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

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

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

.dd-why-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0b5fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

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

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

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

.dd-why-cta:hover { background: #0f9e6e; color: #fff; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── HERO: céu de mapeamento aéreo animado ── */
.dd-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(148deg, #050d22 0%, #0a2f6e 55%, #0b5fff 150%);
}
.dd-hero > .container { position: relative; z-index: 3; }

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

/* Curvas de nível topográficas em drift contínuo */
.dd-contours {
  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%3Cpath d='M0 214 C150 170 320 260 480 210 S760 150 900 214'/%3E%3Cellipse cx='210' cy='420' rx='150' ry='84'/%3E%3Cellipse cx='210' cy='420' rx='108' ry='58'/%3E%3Cellipse cx='210' cy='420' rx='66' ry='34'/%3E%3Cellipse cx='210' cy='420' rx='28' ry='13'/%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%3Cellipse cx='660' cy='500' rx='42' ry='17'/%3E%3Cpath d='M0 330 C200 300 400 380 620 330 S820 290 900 320'/%3E%3C/svg%3E");
  background-size: 900px 620px;
  background-repeat: repeat;
  opacity: .15;
  animation: dd-drift 90s linear infinite;
}
@keyframes dd-drift { to { background-position: 900px 0; } }

/* Grade de ortomosaico */
.dd-scan-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Linha de varredura descendo pelo hero */
.dd-scanline {
  position: absolute;
  left: 0; right: 0;
  top: -140px;
  height: 140px;
  background: linear-gradient(to bottom, transparent, rgba(18,185,129,.16), transparent);
  animation: dd-scanmove 9s ease-in-out infinite;
}
@keyframes dd-scanmove {
  0%   { top: -140px; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* Waypoints pulsantes (pontos de interesse no "mapa") */
.dd-wp {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #12b981;
  animation: dd-ping 3.4s ease-out infinite;
}
.dd-wp-1 { top: 26%; left: 13%; }
.dd-wp-2 { top: 62%; left: 38%; animation-delay: 1.1s; }
.dd-wp-3 { top: 32%; left: 55%; animation-delay: 2.2s; }
@keyframes dd-ping {
  0%   { box-shadow: 0 0 0 0 rgba(18,185,129,.55); }
  70%  { box-shadow: 0 0 0 16px rgba(18,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(18,185,129,0); }
}

/* Drone cruzando o hero com feixe de varredura */
.dd-drone-wrap {
  position: absolute;
  top: 9%;
  left: -140px;
  animation: dd-fly 32s linear infinite;
}
@keyframes dd-fly { to { transform: translateX(calc(100vw + 280px)); } }
.dd-drone-bob { position: relative; animation: dd-bob 3.2s ease-in-out infinite; }
@keyframes dd-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}
.dd-drone { display: block; }
.dd-drone-beam {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 150px;
  background: linear-gradient(to bottom, rgba(18,185,129,.30), rgba(18,185,129,0) 78%);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  animation: dd-beam 3.2s ease-in-out infinite;
}
@keyframes dd-beam {
  0%, 100% { opacity: .45; }
  50%      { opacity: 1; }
}

/* Acessibilidade: sem animação para quem prefere movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .dd-contours, .dd-wp, .dd-drone-wrap, .dd-drone-bob, .dd-drone-beam { animation: none; }
  .dd-scanline { display: none; }
  .dd-drone-wrap { left: 62%; top: 10%; }
}

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

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

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

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

/* ── Compatibilidade: checks em teal ── */
.dd-req-icon {
  border-color: #12b981;
  color: #0f9e6e;
  background: rgba(18,185,129,.08);
}

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

/* ── Responsivo do redesign ── */
@media (max-width: 575px) {
  .dd-drone-wrap { display: none; }
  .dd-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 ── */
.dd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18,185,129,.14);
  border: 1px solid rgba(18,185,129,.45);
  color: #7ef0c6;
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.dd-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #12b981;
  animation: dd-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. */
.dd-stats { background: #fff; padding: 64px 0; }
.dd-stats > .container {
  max-width: 1400px !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
}

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

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

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

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

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

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

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

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