/* ============================================================
   AvidTech — estilos próprios (não editar libs de terceiros)
   Depende de main.css apenas pelas CSS vars (:root) e .main-btn.
   Tudo escopado em .av-page / .av-* para não brigar com o template.
   ============================================================ */

:root {
  --av-mint: #4bffa5;
  --av-navy: #132243;
  --av-navy-2: #2f4a85;
  --av-ink: #0d0d17;
  --av-tint: #E8F7FC;
  --av-gray: #6b7280;
  --av-line: #e6e9ef;
  --av-grad: linear-gradient(120deg, #132243 0%, #2f4a85 100%);
  --av-radius: 14px;
  --av-shadow: 0 18px 40px -24px rgba(19, 34, 67, .45);
  --av-maxw: 1180px;
}

/* ---------- reset leve, escopado ---------- */
.av-page { margin: 0; color: #232733; background: #fff; font-size: 16px; line-height: 1.6;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased; }
.av-page *, .av-page *::before, .av-page *::after { box-sizing: border-box; }
.av-page img { max-width: 100%; height: auto; display: block; }
.av-page a { color: inherit; text-decoration: none; }
.av-page h1, .av-page h2, .av-page h3, .av-page h4 { color: var(--av-ink); line-height: 1.18; margin: 0 0 .4em; font-weight: 800; }
.av-page p { margin: 0 0 1rem; }
.av-container { max-width: var(--av-maxw); margin: 0 auto; padding: 0 24px; }
.av-accent { color: #0e9e63; }
.av-nowrap { white-space: nowrap; }

/* ---------- botões ---------- */
.av-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; line-height: 1; cursor: pointer;
  padding: 15px 26px; border-radius: 40px; border: 2px solid transparent;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.av-btn i { font-size: 18px; }
.av-btn.av-btn--wa { background: var(--av-mint); color: var(--av-navy); box-shadow: 0 12px 24px -12px rgba(75, 255, 165, .4); }
.av-btn.av-btn--wa:hover { background: var(--av-navy); color: #fff; transform: translateY(-2px); }
.av-btn--ghost { background: transparent; color: var(--av-navy); border-color: rgba(19, 34, 67, .25); }
.av-btn--ghost:hover { border-color: var(--av-navy); transform: translateY(-2px); }
.av-btn--lg { padding: 18px 34px; font-size: 18px; }
/* no escuro */
.av-on-dark .av-btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .35); }
.av-on-dark .av-btn--ghost:hover { border-color: #fff; }

/* ============================================================
   HEADER (injetado por avidtech.js em #av-header)
   ============================================================ */
/* wrapper injetado precisa sair do fluxo para o sticky valer na página toda */
#av-header { display: contents; }
html { scroll-padding-top: 90px; }
.av-page section[id] { scroll-margin-top: 84px; }
.av-header { position: sticky; position: -webkit-sticky; top: 0; z-index: 900; background: rgba(255, 255, 255, .97);
  backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--av-line); }
.av-header__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.av-header__logo img { max-height: 40px; width: auto; }
.av-nav { display: flex; align-items: center; gap: 4px; }
.av-nav__item { position: relative; }
.av-nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: 10px;
  font-weight: 600; font-size: 15px; color: #2a2f3a; white-space: nowrap; }
.av-nav__link:hover { background: var(--av-tint); color: var(--av-navy); }
.av-nav__item.is-active > .av-nav__link { color: #0e9e63; }
.av-nav__link .fa-angle-down { font-size: 13px; opacity: .7; }
.av-nav__panel { position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px; background: #fff;
  border: 1px solid var(--av-line); border-radius: 12px; box-shadow: var(--av-shadow); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .16s ease; }
.av-nav__item:hover .av-nav__panel, .av-nav__item.is-open .av-nav__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.av-nav__panel a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14.5px; color: #3a3f4b; }
.av-nav__panel a small { display: block; color: var(--av-gray); font-weight: 400; font-size: 12.5px; }
.av-nav__panel a:hover { background: var(--av-tint); color: var(--av-navy); }
.av-header__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.av-header__cta .av-btn { padding: 12px 22px; font-size: 15px; }
.av-header__cta .av-btn i { font-size: 15px; }
.av-burger { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; color: var(--av-navy); font-size: 24px; }

/* ============================================================
   HERO (interno, estático)
   ============================================================ */
.av-hero { background: var(--av-grad); color: #fff; position: relative; overflow: hidden; }
.av-hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(75, 255, 165, .22), transparent 65%); }
.av-hero__inner { position: relative; z-index: 1; padding: 74px 0 78px; max-width: 760px; }
.av-hero h1 { color: #fff; font-size: clamp(30px, 5vw, 48px); letter-spacing: -.5px; }
.av-hero__eyebrow { display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--av-mint); margin-bottom: 16px; }
.av-hero__sub { font-size: clamp(16px, 2.4vw, 20px); color: #d7e0f2; margin: 8px 0 26px; }
.av-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.av-hero__note { font-size: 14px; color: #aebbd6; margin-top: 16px; }
.av-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.av-hero__tags span { font-size: 12.5px; padding: 6px 12px; border-radius: 30px; background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18); color: #e7edf8; }

/* home hero (slider owl) mantém classes do template; só reforço do texto */
.av-slide-badge { display: inline-block; background: var(--av-mint); color: var(--av-navy); font-weight: 700;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase; padding: 6px 12px; border-radius: 30px; margin-bottom: 14px; }

/* ============================================================
   SECTIONS + alternância de fundo
   ============================================================ */
.av-section { padding: 72px 0; }
.av-section--tint { background: var(--av-tint); }
.av-section--soft { background: #f6f8fb; }
.av-section--dark { background: var(--av-navy); color: #eaf0fb; }
.av-section--dark h2, .av-section--dark h3 { color: #fff; }
.av-section--grad { background: var(--av-grad); color: #eaf0fb; }
.av-section--grad h2 { color: #fff; }
.av-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.av-head--left { margin-left: 0; text-align: left; }
.av-head__eyebrow { display: inline-block; font-weight: 700; font-size: 12.5px; letter-spacing: 1.5px;
  text-transform: uppercase; color: #0e9e63; margin-bottom: 12px; }
.av-section--dark .av-head__eyebrow, .av-section--grad .av-head__eyebrow { color: var(--av-mint); }
.av-head h2 { font-size: clamp(26px, 3.6vw, 38px); }
.av-head p { font-size: 17px; color: var(--av-gray); }
.av-section--dark .av-head p, .av-section--grad .av-head p { color: #c4d0e8; }

/* ============================================================
   STAT BAR
   ============================================================ */
.av-statbar { background: var(--av-navy); color: #fff; }
.av-statbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 34px 0; }
.av-stat { text-align: center; padding: 6px 10px; }
.av-stat__num { font-size: clamp(24px, 3.4vw, 36px); font-weight: 900; color: var(--av-mint); line-height: 1; }
.av-stat__label { font-size: 13.5px; color: #c4d0e8; margin-top: 8px; }

/* ============================================================
   PAIN (PAS) list
   ============================================================ */
.av-pain { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.av-pain__item { display: flex; gap: 14px; background: #fff; border: 1px solid var(--av-line);
  border-radius: var(--av-radius); padding: 20px 22px; }
.av-pain__item i { color: #e0483b; font-size: 20px; margin-top: 3px; }
.av-pain__item b { display: block; margin-bottom: 3px; color: var(--av-ink); }
.av-pain__item span { color: var(--av-gray); font-size: 15px; }

/* ============================================================
   SPLIT "manter ou migrar"
   ============================================================ */
.av-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.av-track { background: #fff; border: 1px solid var(--av-line); border-radius: 18px; padding: 30px;
  box-shadow: var(--av-shadow); }
.av-track--b { background: var(--av-navy); color: #eaf0fb; border-color: transparent; }
.av-track__tag { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px; padding: 6px 12px; border-radius: 30px; margin-bottom: 14px; }
.av-track--a .av-track__tag { background: var(--av-tint); color: var(--av-navy); }
.av-track--b .av-track__tag { background: var(--av-mint); color: var(--av-navy); }
.av-track h3 { font-size: 22px; }
.av-track--b h3 { color: #fff; }
.av-track ul { list-style: none; padding: 0; margin: 16px 0 22px; }
.av-track li { position: relative; padding: 7px 0 7px 26px; font-size: 15px; }
.av-track li::before { content: "\f00c"; font-family: FontAwesome; position: absolute; left: 0; color: #0e9e63; }
.av-track--b li::before { color: var(--av-mint); }

/* ============================================================
   STEPS (como funciona)
   ============================================================ */
.av-steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.av-step { position: relative; background: #fff; border: 1px solid var(--av-line); border-radius: var(--av-radius);
  padding: 26px 22px; }
.av-section--dark .av-step, .av-section--grad .av-step { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); color: #eaf0fb; }
.av-step::before { counter-increment: step; content: counter(step); display: inline-flex; align-items: center;
  justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--av-mint);
  color: var(--av-navy); font-weight: 900; margin-bottom: 14px; }
.av-step h4 { font-size: 18px; margin-bottom: 6px; }
.av-section--dark .av-step h4, .av-section--grad .av-step h4 { color: #fff; }
.av-step p { font-size: 14.5px; color: var(--av-gray); margin: 0; }
.av-section--dark .av-step p, .av-section--grad .av-step p { color: #c4d0e8; }
.av-steps-phase { display: block; font-weight: 700; font-size: 12.5px; letter-spacing: 1.5px;
  text-transform: uppercase; color: #0e9e63; margin: 2rem 0 .75rem; }
.av-section--dark .av-steps-phase, .av-section--grad .av-steps-phase { color: var(--av-mint); }

/* ============================================================
   DELIVERABLES (checklist)
   ============================================================ */
.av-checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.av-check { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--av-line);
  border-radius: 12px; padding: 16px 18px; font-size: 15px; }
.av-check i { color: #0e9e63; margin-top: 3px; }
.av-section--tint .av-check { background: #fff; }

/* ============================================================
   CARDS genéricos (serviços / diferenciais)
   ============================================================ */
.av-cards { display: grid; gap: 20px; }
.av-cards--3 { grid-template-columns: repeat(3, 1fr); }
.av-cards--4 { grid-template-columns: repeat(4, 1fr); }
.av-cards--2 { grid-template-columns: repeat(2, 1fr); }
.av-card { background: #fff; border: 1px solid var(--av-line); border-radius: 16px; padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease; height: 100%; }
.av-card:hover { transform: translateY(-4px); box-shadow: var(--av-shadow); }
.av-card__ico { width: 52px; height: 52px; border-radius: 13px; background: var(--av-tint); color: #0e9e63;
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.av-card h3 { font-size: 19px; margin-bottom: 8px; }
.av-card p { font-size: 15px; color: var(--av-gray); margin: 0; }
.av-card__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700;
  font-size: 14.5px; color: #0e9e63; }
.av-card__more i { transition: transform .18s ease; }
.av-card:hover .av-card__more i { transform: translateX(4px); }
.av-card--link { display: block; }

/* ============================================================
   CATÁLOGO por família (tecnologias)
   ============================================================ */
.av-fam { background: #fff; border: 1px solid var(--av-line); border-radius: 16px; padding: 24px; margin-bottom: 18px; }
.av-fam__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.av-fam__head i { width: 42px; height: 42px; border-radius: 11px; background: var(--av-navy); color: var(--av-mint);
  display: flex; align-items: center; justify-content: center; font-size: 18px; }
.av-fam__head h3 { margin: 0; font-size: 19px; }
.av-fam__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.av-tech { border: 1px solid var(--av-line); border-radius: 11px; padding: 13px 15px; }
.av-tech b { display: block; font-size: 15px; color: var(--av-ink); }
.av-tech span { font-size: 13px; color: var(--av-gray); }
.av-tech .av-arrow { color: #0e9e63; font-weight: 700; }

/* ============================================================
   CASES
   ============================================================ */
.av-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.av-case { background: #fff; border: 1px solid var(--av-line); border-radius: 16px; padding: 26px 24px; }
.av-case__sector { font-weight: 700; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase;
  color: #0e9e63; margin-bottom: 12px; }
.av-case h3 { font-size: 18px; margin-bottom: 14px; }
.av-case dl { margin: 0; }
.av-case dt { font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .5px;
  color: var(--av-navy); margin-top: 12px; }
.av-case dd { margin: 3px 0 0; font-size: 14.5px; color: #444b59; }
.av-case__stack { margin-top: 16px; font-size: 13px; color: var(--av-gray); border-top: 1px dashed var(--av-line); padding-top: 12px; }

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.av-faq { max-width: 820px; margin: 0 auto; }
.av-faq__item { border: 1px solid var(--av-line); border-radius: 12px; background: #fff; margin-bottom: 12px; overflow: hidden; }
.av-faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 18px 22px;
  font-size: 16px; font-weight: 700; color: var(--av-ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.av-faq__q i { transition: transform .2s ease; color: #0e9e63; }
.av-faq__item.is-open .av-faq__q i { transform: rotate(45deg); }
.av-faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.av-faq__a p { padding: 0 22px 18px; margin: 0; color: var(--av-gray); font-size: 15px; }

/* ============================================================
   CTA band
   ============================================================ */
.av-cta { background: var(--av-grad); color: #fff; text-align: center; }
.av-cta__inner { padding: 66px 0; max-width: 720px; margin: 0 auto; }
.av-cta h2 { color: #fff; font-size: clamp(26px, 3.6vw, 36px); }
.av-cta p { color: #d0dbf1; font-size: 18px; margin-bottom: 26px; }
.av-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER (injetado)
   ============================================================ */
.av-footer { background: var(--av-navy); color: #b9c4dc; padding: 56px 0 26px; }
.av-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 30px; }
.av-footer h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.av-footer a { display: block; padding: 5px 0; font-size: 14.5px; color: #b9c4dc; }
.av-footer a:hover { color: var(--av-mint); }
.av-footer__brand img { max-height: 40px; margin-bottom: 14px; }
.av-footer__brand p { font-size: 14.5px; line-height: 1.7; }
.av-footer__contact a { display: flex; gap: 10px; align-items: center; }
.av-footer__contact i { color: var(--av-mint); width: 18px; }
.av-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 34px; padding-top: 20px;
  font-size: 13px; color: #8b98b6; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }


/* ============================================================
   HERO DE CONVERSÃO (contato): formulário dentro da parte azul
   ============================================================ */
.av-hero--form .av-hero__inner { max-width: none; padding: 56px 0 64px; }
.av-hero--form h1 { max-width: 720px; }
.av-hero--form .av-hero__sub { max-width: 640px; }
.av-hero__grid { display: grid; grid-template-columns: minmax(0, 560px) 1fr; gap: 48px;
  align-items: start; margin-top: 30px; }
.av-hero__aside { color: #d7e0f2; padding-top: 6px; }
.av-hero__aside h3 { color: #fff; font-size: 17px; margin: 22px 0 10px; }
.av-hero__aside h3:first-child { margin-top: 0; }
.av-hero__aside ul { list-style: none; padding: 0; margin: 0; }
.av-hero__aside li { position: relative; padding: 6px 0 6px 26px; font-size: 15px; }
.av-hero__aside li::before { content: "\f00c"; font-family: FontAwesome; position: absolute; left: 0;
  color: var(--av-mint); }
.av-hero__aside a { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; color: #e7edf8;
  font-size: 14.5px; }
.av-hero__aside a:hover { color: var(--av-mint); }
.av-hero__aside a i, .av-hero__aside .av-hero__info i { color: var(--av-mint); width: 18px; margin-top: 3px; }
.av-hero__info { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 14.5px; }
.av-hero__aside .av-hero__note { margin-top: 20px; }
@media (max-width: 980px) { .av-hero__grid { grid-template-columns: 1fr; gap: 34px; } }

/* ============================================================
   FORMULÁRIO "Abrir chamado" (FormSubmit)
   ============================================================ */
.av-form { background: #fff; border: 1px solid var(--av-line); border-radius: 18px; padding: 30px;
  box-shadow: var(--av-shadow); }
.av-form label { display: block; font-weight: 700; font-size: 14px; color: var(--av-ink); margin: 16px 0 6px; }
.av-form label:first-of-type { margin-top: 0; }
.av-form input, .av-form select, .av-form textarea {
  width: 100%; border: 1.5px solid var(--av-line); border-radius: 11px; padding: 12px 14px;
  font: inherit; font-size: 15px; color: #232733; background: #fbfcfe; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease; }
.av-form input:focus, .av-form select:focus, .av-form textarea:focus {
  border-color: var(--av-mint); box-shadow: 0 0 0 3px rgba(75, 255, 165, .25); background: #fff; }
.av-form textarea { min-height: 120px; resize: vertical; }
.av-form button { margin-top: 20px; width: 100%; justify-content: center; border: 0; }
.av-form__note { font-size: 12.5px; color: var(--av-gray); margin-top: 12px; text-align: center; }
.av-form__ok { display: none; background: #e7fff3; border: 1.5px solid #21d9a2; color: #0b5c3d;
  border-radius: 12px; padding: 14px 18px; font-weight: 600; margin-bottom: 18px; }
.av-form__ok.is-visible { display: block; }

/* ---------- utilidades ---------- */
.av-lead { font-size: 18px; color: var(--av-gray); }
.av-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.av-center { text-align: center; }
.av-mt { margin-top: 34px; }
.wow { visibility: hidden; }

/* ============================================================
   FUNDOS VIVOS — motivos abstratos (CSS/SVG, sem imagens externas)
   Sutis de propósito: dão vida sem competir com a copy.
   ============================================================ */

/* seções contêm camadas decorativas atrás do conteúdo */
.av-section { position: relative; overflow: hidden; }
.av-section > .av-container { position: relative; z-index: 2; }

/* grid de pontos (blueprint/engenharia) nas seções claras */
.av-section:not(.av-section--dark):not(.av-section--grad)::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(19, 34, 67, .05) 1.3px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 42%, #000 72%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 42%, #000 72%, transparent);
}
/* brilho mint no canto das seções de destaque */
.av-section--tint::after, .av-section--soft::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 460px; height: 460px; right: -140px; top: -160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 255, 165, .16), transparent 62%);
}

/* seções escuras: malha de pontos mint + brilho difuso */
.av-section--dark, .av-section--grad, .av-statbar, .av-cta { position: relative; overflow: hidden; }
.av-section--dark > .av-container, .av-section--grad > .av-container,
.av-statbar > .av-container, .av-cta > .av-container { position: relative; z-index: 2; }
.av-section--dark::before, .av-section--grad::before, .av-cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(75, 255, 165, .10) 1px, transparent 1.6px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(circle at 82% 18%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 82% 18%, #000, transparent 72%);
}
.av-statbar::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(75, 255, 165, .08) 1px, transparent 1.5px);
  background-size: 26px 26px;
}

/* HERO — campo de rede "plexus" animado (canvas injetado por avidtech.js) */
.av-hero__art {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .25) 26%, #000 46%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .25) 26%, #000 46%);
}
.av-hero__art canvas { display: block; width: 100%; height: 100%; }
@media (max-width: 680px) { .av-hero__art { opacity: .6; } }

/* chips de ícone com gradiente mint (pop, estilo Accenture) */
.av-card__ico {
  background: linear-gradient(135deg, #4bffa5, #21d9a2);
  color: #0b3b28;
  box-shadow: 0 10px 20px -10px rgba(75, 255, 165, .75);
}
/* brilho de canto nos cards */
.av-card { position: relative; overflow: hidden; }
.av-card::after {
  content: ""; position: absolute; right: -44px; top: -44px; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 255, 165, .12), transparent 66%); pointer-events: none;
  transition: opacity .2s ease; opacity: .7;
}
.av-card:hover::after { opacity: 1; }

/* ============================================================
   INSIGHTS TÉCNICOS (desafios por tecnologia)
   Cards numerados em fundo escuro — seção de profundidade técnica.
   Use dentro de .av-section--dark ou .av-section--grad.
   ============================================================ */
.av-insights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.av-insight { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 26px 24px; display: flex; gap: 18px;
  transition: background .18s ease, border-color .18s ease; }
.av-insight:hover { background: rgba(255,255,255,.09); border-color: rgba(75,255,165,.35); }
.av-insight__num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--av-mint); color: var(--av-navy); font-weight: 900; font-size: 20px;
  display: flex; align-items: center; justify-content: center; }
.av-insight__body h4 { color: #fff; font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.av-insight__body p { color: #c4d0e8; font-size: 14.5px; margin: 0; line-height: 1.65; }
.av-insight__fix { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px;
  font-size: 13.5px; font-weight: 700; color: var(--av-mint); }
.av-insight__fix i { font-size: 13px; }

/* ============================================================
   ONDE APARECE — setor / perfil de empresa
   ============================================================ */
.av-sector-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.av-sector-tag { display: inline-flex; align-items: center; gap: 8px; background: #fff;
  border: 1px solid var(--av-line); border-radius: 40px; padding: 10px 18px; font-size: 14.5px;
  font-weight: 600; color: var(--av-ink); box-shadow: 0 2px 8px -4px rgba(19,34,67,.12); }
.av-sector-tag i { color: #0e9e63; font-size: 16px; }
.av-sector-intro { font-size: 17px; color: var(--av-gray); max-width: 700px; margin: 0 auto 8px; text-align: center; }

/* ============================================================
   CALLOUT de destaque técnico
   ============================================================ */
.av-callout { background: linear-gradient(135deg,rgba(75,255,165,.10),rgba(75,255,165,.03));
  border: 1.5px solid rgba(75,255,165,.30); border-radius: 14px; padding: 22px 26px; margin: 26px 0 0; }
.av-callout__label { font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--av-mint); margin-bottom: 8px; }
.av-callout p { font-size: 15.5px; color: #eaf0fb; margin: 0; line-height: 1.7; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .av-statbar__grid { grid-template-columns: repeat(2, 1fr); }
  .av-steps { grid-template-columns: repeat(2, 1fr); }
  .av-cards--4 { grid-template-columns: repeat(2, 1fr); }
  .av-cards--3 { grid-template-columns: repeat(2, 1fr); }
  .av-cases { grid-template-columns: 1fr 1fr; }
  .av-checks { grid-template-columns: repeat(2, 1fr); }
  .av-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .av-burger { display: inline-flex; }
  .av-nav { position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--av-line); padding: 10px 16px 20px; max-height: calc(100vh - 74px);
    overflow-y: auto; transform: translateY(-140%); transition: transform .25s ease; box-shadow: var(--av-shadow); }
  .av-nav.is-open { transform: translateY(0); }
  .av-nav__panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-left: 2px solid var(--av-tint); border-radius: 0; margin: 2px 0 6px 12px;
    max-height: 0; overflow: hidden; padding: 0 8px; transition: max-height .25s ease; }
  .av-nav__item.is-open .av-nav__panel { max-height: 600px; padding: 6px 8px; }
  .av-header__cta .av-btn span { display: none; }
}
@media (max-width: 680px) {
  .av-section { padding: 54px 0; }
  .av-pain, .av-split, .av-grid-2, .av-cases, .av-cards--2, .av-cards--3, .av-cards--4, .av-checks,
  .av-insights { grid-template-columns: 1fr; }
  .av-fam__grid { grid-template-columns: 1fr; }
  .av-statbar__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .av-footer__grid { grid-template-columns: 1fr; }
  .av-hero__inner { padding: 54px 0 58px; }
}
