/* =============================================================
   thinkcell.css — Landing page think-cell (/produto/comprar-think-cell)
   Prefixo: tc-
   Paleta: verde think-cell (#4f9d2f) + âmbar (#f2a13a) + laranja CTA (#ea7626)
============================================================= */

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

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

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

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

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

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

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

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

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

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

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

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

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

.tc-msg--bot  .tc-msg-bubble { background: #eef6e8; color: #111; border-bottom-left-radius: 4px; }
.tc-msg--user .tc-msg-bubble { background: #4f9d2f; color: #fff; border-bottom-right-radius: 4px; }

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

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

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

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

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

.tc-reply-btn {
  background: #fff;
  border: 1.5px solid #4f9d2f;
  color: #4f9d2f;
  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;
}

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

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

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

.tc-chat-input-row input:focus { border-color: #4f9d2f; }

#tc-chat-send {
  background: #4f9d2f;
  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;
}

#tc-chat-send:hover { background: #3f8226; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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: #4f9d2f;
  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 #c9e2b6;
  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: #4f9d2f;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tc-tabs-panel {
  background: #0f2414;
  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 */
}

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

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

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

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

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

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

.tc-slider-arrow.is-active:hover {
  background: #3f8226;
  border-color: #3f8226;
}

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

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

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

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

.tc-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 #f2a13a;
}

.tc-tab-feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: #18211a;
  margin-bottom: 16px;
  line-height: 1.2;
}

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

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

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

.tc-tab-cta-primary:hover {
  background: #3f8226;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tc-why-cta:hover { background: #d98a24; color: #fff; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── HERO think-cell: tema "apresentação" — deck de slides flutuando
      + feixe de projetor diagonal (identidade própria, distinta do
      Semrush: sem orbes/pontos/equalizer) ── */
.tc-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(155deg, #0d1710 0%, #16341b 54%, #356e22 130%);
}
.tc-hero > .container { position: relative; z-index: 3; }

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

/* Feixe de "projetor" diagonal atravessando o hero */
.tc-beam {
  position: absolute;
  top: -30%;
  right: 8%;
  width: 46%;
  height: 170%;
  transform: rotate(18deg);
  background: linear-gradient(100deg, transparent, rgba(123,194,79,.16) 45%, rgba(242,161,58,.10) 60%, transparent);
  filter: blur(6px);
  animation: tc-beam-sweep 11s ease-in-out infinite;
}
@keyframes tc-beam-sweep {
  0%, 100% { opacity: .45; transform: rotate(18deg) translateX(0); }
  50%      { opacity: .8;  transform: rotate(18deg) translateX(-26px); }
}

/* Deck de slides de apresentação empilhados, flutuando suavemente */
.tc-deck {
  position: absolute;
  top: 14%;
  right: 5%;
  width: 340px;
  height: 214px;
  animation: tc-deck-float 7s ease-in-out infinite;
}
@keyframes tc-deck-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.tc-slide {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
}
/* cartas de trás, levemente giradas e esmaecidas (efeito baralho) */
.tc-slide-3 { transform: translate(36px, 32px) rotate(6deg);  opacity: .3; }
.tc-slide-2 { transform: translate(18px, 16px) rotate(3deg);  opacity: .55; }
.tc-slide-1 {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(3px);
  box-shadow: 0 22px 55px rgba(0,0,0,.30);
}
.tc-slide-1 svg { position: absolute; inset: 16px; width: calc(100% - 32px); height: calc(100% - 32px); }
/* barras do mini-gráfico dentro do slide da frente "crescem" ao entrar */
.tc-slide-bar { transform-origin: bottom; animation: tc-slide-grow 3.6s ease-in-out infinite; }
.tc-slide-bar.b2 { animation-delay: .35s; }
.tc-slide-bar.b3 { animation-delay: .70s; }
.tc-slide-bar.b4 { animation-delay: 1.05s; }
@keyframes tc-slide-grow {
  0%, 100% { transform: scaleY(.8); }
  50%      { transform: scaleY(1); }
}
/* linha de tendência sobre as barras, desenhando-se */
.tc-slide-line {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: tc-slide-draw 4s ease-out forwards;
}
@keyframes tc-slide-draw { to { stroke-dashoffset: 0; } }

/* Acessibilidade: sem animação para quem prefere movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .tc-beam, .tc-deck, .tc-slide-bar { animation: none; }
  .tc-slide-line { animation: none; stroke-dashoffset: 0; }
}

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

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

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

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

/* ── Compatibilidade: checks em teal ── */
.tc-req-icon {
  border-color: #f2a13a;
  color: #d98a24;
  background: rgba(242,161,58,.08);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Tablet: o formulário sobe para o topo — o deck de slides sairia
   atrás dele; some a partir daqui */
@media (max-width: 991px) {
  .tc-deck { display: none; }
}

/* =============================================================
   v5 — IMAGENS REAIS DO PRODUTO
   Screenshot no card "O que é", screenshots nas linhas de
   precisão, seção think-cell Assist (IA) e galeria "em ação".
============================================================= */

/* ── Boxed: novas seções respeitam a largura máxima da página ── */
.tc-ai           > .container,
.tc-gallery      > .container,
.tc-testimonials > .container {
  max-width: 1400px !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
}

/* ── Screenshot dentro do card "O que é" (centralizado e com limite) ── */
.tc-shot {
  margin: 30px auto 6px;
  max-width: 760px;
}
.tc-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid #dcecd1;
  box-shadow: 0 18px 44px rgba(15, 36, 20, .14);
  background: #fff;
}
.tc-shot figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: #5b6b85;
  text-align: center;
}

/* ── Screenshots reais nas linhas de precisão (substituem os SVGs) ──
   A regra base usa object-fit:cover com altura fixa, que cortaria o
   screenshot; aqui mostramos a imagem inteira, emoldurada. ── */
.tc-precision-image--shot {
  flex: 0 0 42%;
  overflow: visible;
  border-radius: 14px;
}
.tc-precision-image--shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid #dcecd1;
  box-shadow: 0 18px 44px rgba(15, 36, 20, .14);
  background: #fff;
}

/* ── Seção think-cell Assist (IA) ── */
.tc-ai {
  background: linear-gradient(180deg, #f2f9ee 0%, #e7f2de 100%);
  padding: 72px 0;
}
.tc-ai-inner {
  display: flex;
  gap: 56px;
  align-items: center;
}
.tc-ai-content { flex: 1; }
.tc-ai-image { flex: 0 0 46%; }
.tc-ai-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid #dcecd1;
  box-shadow: 0 24px 60px rgba(15, 36, 20, .18);
  background: #fff;
}
.tc-ai-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(79, 157, 47, .12), rgba(242, 161, 58, .14));
  border: 1px solid rgba(79, 157, 47, .3);
  color: #3f8226;
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.tc-ai-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #4f9d2f;
  line-height: 1.3;
  margin-bottom: 18px;
}
.tc-ai-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 14px;
}
.tc-ai-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 26px;
}
.tc-ai-list li {
  position: relative;
  padding: 9px 0 9px 32px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #333;
  border-bottom: 1px solid rgba(79, 157, 47, .1);
}
.tc-ai-list li:last-child { border-bottom: none; }
.tc-ai-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #4f9d2f;
  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: 11px;
}
.tc-ai-cta {
  display: inline-block;
  background: #4f9d2f;
  color: #fff;
  border-radius: 10px;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.tc-ai-cta:hover { background: #3f8226; color: #fff; }

/* ── Galeria "think-cell em ação" ── */
.tc-gallery { background: #fff; padding: 72px 0; }
.tc-gallery-title {
  font-size: 26px;
  font-weight: 700;
  color: #4f9d2f;
  text-align: center;
  line-height: 1.3;
  margin: 0 0 10px;
}
.tc-gallery-sub {
  text-align: center;
  color: #5b6b85;
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 40px;
}
.tc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.tc-gallery-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: linear-gradient(160deg, #f1f8ec, #fff);
  border: 1px solid #dcecd1;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tc-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(79, 157, 47, .16);
  border-color: rgba(79, 157, 47, .35);
}
.tc-gallery-shot { padding: 18px 18px 0; }
.tc-gallery-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid #e4eede;
  background: #fff;
}
.tc-gallery-card figcaption { padding: 18px 22px 22px; }
.tc-gallery-card figcaption strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #18211a;
  margin-bottom: 6px;
}
.tc-gallery-card figcaption span {
  font-size: 13.5px;
  line-height: 1.6;
  color: #5b6b85;
}

/* Reveal-on-scroll das novas peças (mantém o hover do card vencendo) */
.tc-gallery-card.tc-in:hover { transform: translateY(-6px); }

/* ── Responsivo v5 ── */
@media (max-width: 991px) {
  .tc-ai { padding: 52px 0; }
  .tc-ai-inner { flex-direction: column; gap: 32px; }
  .tc-ai-image { flex: none; width: 100%; max-width: 680px; margin: 0 auto; }
  .tc-gallery { padding: 52px 0; }
  .tc-ai           > .container,
  .tc-gallery      > .container,
  .tc-testimonials > .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 767px) {
  .tc-gallery-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .tc-testi-grid   { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 575px) {
  .tc-ai { padding: 40px 0; }
  .tc-ai-content h2 { font-size: 21px; }
  .tc-gallery { padding: 40px 0; }
  .tc-gallery-title { font-size: 20px; }
  .tc-gallery-sub { font-size: 14px; margin-bottom: 30px; }
  .tc-shot figcaption { font-size: 12px; }
  .tc-testimonials { padding: 40px 0; }
  .tc-testi-title { font-size: 20px; }
  .tc-testi-card { padding: 24px 22px; }
  .tc-ai           > .container,
  .tc-gallery      > .container,
  .tc-testimonials > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ── Depoimentos (prova social) ── */
.tc-testimonials { background: #fff; padding: 72px 0; }
.tc-testi-title {
  font-size: 26px;
  font-weight: 700;
  color: #4f9d2f;
  text-align: center;
  line-height: 1.3;
  margin: 0 0 40px;
}
.tc-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.tc-testi-card {
  margin: 0;
  background: linear-gradient(160deg, #f1f8ec, #fff);
  border: 1px solid #dcecd1;
  border-radius: 16px;
  padding: 30px 32px;
  box-shadow: 0 10px 30px rgba(24, 33, 26, .05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tc-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(79, 157, 47, .16);
  border-color: rgba(79, 157, 47, .35);
}
.tc-testi-card.tc-in:hover { transform: translateY(-6px); }
.tc-testi-stars {
  color: #f2a13a;
  font-size: 20px;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 18px;
}
.tc-testi-head {
  display: block;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid #dcecd1;
}
.tc-testi-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #4f9d2f;
  line-height: 1.3;
}
.tc-testi-role {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: #5b6b85;
}
.tc-testi-quote {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: #444;
}
