/* ============================================
   AVALIO PROTÓTIPO — style.css
   Paleta baseada na logo oficial
   Teal #5ec8d4 · Verde #62c299 · Laranja #f68f5b · Amarelo #e9c94e · Escuro #303030
   ============================================ */

/* ---------- Variáveis ---------- */
:root {
  --av-teal:        #5ec8d4;
  --av-teal-dark:   #3fb0bc;
  --av-teal-light:  #b3ecf2;
  --av-green:       #62c299;
  --av-green-dark:  #45aa80;
  --av-orange:      #f68f5b;
  --av-orange-dark: #e0713a;
  --av-yellow:      #e9c94e;
  --av-red:         #e5383b;
  --av-dark:        #303030;
  --av-mid:         #494949;
  --av-light-bg:    #f7f8fa;
  --av-border:      #e8eaed;
  --av-text:        #303030;
  --av-muted:       #6b7280;

  --av-radius-sm:  8px;
  --av-radius-md:  14px;
  --av-radius-lg:  20px;
  --av-radius-xl:  28px;

  --av-shadow-sm:  0 1px 3px rgba(0,0,0,.07);
  --av-shadow-md:  0 4px 16px rgba(0,0,0,.09);
  --av-shadow-lg:  0 12px 36px rgba(0,0,0,.12);

  --av-transition: .24s cubic-bezier(.4,0,.2,1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--av-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-weight: 700; letter-spacing: -0.02em; }
h1 { font-weight: 800; letter-spacing: -0.03em; }
a { text-decoration: none; }

/* ======================================================
   NAVBAR
   ====================================================== */
.av-navbar {
  padding: 18px 0;
  transition: background var(--av-transition), box-shadow var(--av-transition), padding var(--av-transition);
}
.av-navbar ul{
  background: rgba(255,255,255,.5);
}
.av-navbar.scrolled {
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--av-border);
  padding: 12px 0;
}
/* Fundo das páginas agora é claro em qualquer estado do scroll: links sempre escuros */
.av-navbar .nav-link,
.av-navbar .navbar-toggler-icon { color: var(--av-mid); }
.av-navbar .nav-link:hover { color: var(--av-dark); background: var(--av-light-bg); border-radius: var(--av-radius-sm); }

/* Página atual */
.av-navbar .nav-link.active { font-weight: 700; position: relative; color: var(--av-teal-dark); }
.av-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--av-teal);
}

.av-brand { display: flex; align-items: center; }

/* ======================================================
   BUTTONS
   ====================================================== */
.av-btn-primary {
  background: var(--av-teal);
  border: 2px solid var(--av-teal);
  color: #fff !important;
  border-radius: var(--av-radius-sm);
  font-weight: 600;
  transition: var(--av-transition);
}
.av-btn-primary:hover {
  background: var(--av-teal-dark);
  border-color: var(--av-teal-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(94,200,212,.4);
}

.av-btn-outline-primary {
  background: transparent;
  border: 2px solid var(--av-teal);
  color: var(--av-teal) !important;
  border-radius: var(--av-radius-sm);
  font-weight: 600;
  transition: var(--av-transition);
}
.av-btn-outline-primary:hover {
  background: var(--av-teal);
  color: #fff !important;
  transform: translateY(-1px);
}

.av-btn-ghost-white {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.3);
  color: #fff !important;
  border-radius: var(--av-radius-sm);
  font-weight: 600;
  transition: var(--av-transition);
}
.av-btn-ghost-white:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  color: #fff !important;
}

.av-btn-white {
  background: #fff;
  border: 2px solid #fff;
  color: var(--av-teal) !important;
  border-radius: var(--av-radius-sm);
  font-weight: 700;
  transition: var(--av-transition);
}
.av-btn-white:hover {
  background: var(--av-light-bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  color: var(--av-teal-dark) !important;
}

/* Variante de destaque: CTA "Experimente grátis" do hero */
.av-btn-highlight {
  background: var(--av-orange);
  border: 2px solid var(--av-orange);
  color: #fff !important;
  border-radius: var(--av-radius-sm);
  font-weight: 600;
  transition: var(--av-transition);
}
.av-btn-highlight:hover {
  background: var(--av-orange-dark);
  border-color: var(--av-orange-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(246,143,91,.4);
}

.av-btn-lg { padding: 13px 28px; font-size: 1rem; border-radius: var(--av-radius-md); }

/* ======================================================
   SECTION HELPERS
   ====================================================== */
.av-section { padding: 96px 0; }

.av-tag {
  display: inline-block;
  padding: 4px 14px;
  background: #EBF8FA;
  color: var(--av-teal-dark);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.av-tag-light {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.av-gradient-text {
  background: linear-gradient(120deg, var(--av-teal) 0%, var(--av-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.av-link-arrow {
  color: var(--av-teal);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--av-transition);
}
.av-link-arrow:hover { color: var(--av-teal-dark); text-decoration: underline; }

/* ======================================================
   HERO
   ====================================================== */
.av-hero {
  position: relative;
  padding: 120px 0 100px;
  background: #fff;
  overflow: hidden;
}
.av-hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.av-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .25;
}
.av-blob-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, var(--av-teal) 0%, transparent 70%);
  top: -180px; left: -80px;
}
.av-blob-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, var(--av-green) 0%, transparent 70%);
  bottom: -180px; right: -60px;
}
.av-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--av-orange) 0%, transparent 70%);
  top: 40%; left: 60%;
  opacity: .15;
}
.av-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(48,48,48,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48,48,48,.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 45%, transparent 100%);
}

.av-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: #EBF8FA;
  border: 1px solid rgba(94,200,212,.35);
  border-radius: 999px;
  color: var(--av-teal-dark);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.av-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
  animation: avPulse 2s infinite;
}
@keyframes avPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.7); }
}
/* Variante de destaque: texto e bolinha em vermelho, pra chamar atenção */
.av-badge-highlight { color: var(--av-red); }
.av-badge-highlight .av-badge-dot { background: var(--av-red); box-shadow: 0 0 8px var(--av-red); }

.av-hero-title { color: var(--av-dark); font-size: clamp(1.9rem,4.2vw,2.9rem); line-height: 1.18; }
.av-hero-subtitle {
  color: var(--av-muted);
  font-size: 1.1rem;
  max-width: 100%;
  line-height: 1.7;
}
.av-hero-note { color: var(--av-muted); font-size: .82rem; }

.av-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
}
.av-hero-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: var(--av-light-bg);
  border: 1px solid var(--av-border);
  border-radius: 999px;
  color: var(--av-mid);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--av-transition);
}
.av-hero-highlight-item:hover {
  color: var(--av-mid);
}
.av-hero-highlight-item:focus,
.av-hero-highlight-item:focus-visible,
.av-hero-highlight-item:active {
  border-color: var(--av-teal);
  color: var(--av-teal-dark);
  background: #EBF8FA;
  transform: translateY(-2px);
  outline: none;
}
.av-hero-highlight-item i { color: var(--av-teal-dark); font-size: .95rem; }
.av-hero-highlight-ia {
  background: linear-gradient(120deg, #EBF8FA, #E8FAF4);
  border-color: rgba(94,200,212,.4);
  color: var(--av-teal-dark);
  font-weight: 700;
}
.av-hero-highlight-ia i { color: var(--av-teal-dark); }

/* ---- Mockup ---- */
.av-mockup {
  position: relative;
  border-radius: var(--av-radius-xl);
  border: 1px solid rgba(255,255,255,.08);
  background: #1a1a2e;
  box-shadow: 0 40px 80px rgba(0,0,0,.55);
  overflow: hidden;
}
.av-mockup-glow {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 50px;
  background: var(--av-teal);
  filter: blur(40px);
  opacity: .35;
  border-radius: 50%;
  pointer-events: none;
}

.av-hero-mockup-wrap { position: relative; }
.av-hero-robot {
  position: absolute;
  top: -58px;
  right: 24px;
  max-height: 130px;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.2));
  z-index: 2;
  pointer-events: none;
}
.av-mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  background: #111120;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.av-dot { width: 11px; height: 11px; border-radius: 50%; }
.av-dot.red    { background: #FF5F57; }
.av-dot.yellow { background: #FFBD2E; }
.av-dot.green  { background: #27C840; }
.av-url-bar {
  flex: 1;
  margin-left: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  font-family: monospace;
}
.av-mockup-body { display: grid; grid-template-columns: 170px 1fr; min-height: 320px; }

.av-hero-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
}
.av-hero-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.av-dash-sidebar {
  background: #0f0f1e;
  border-right: 1px solid rgba(255,255,255,.05);
  padding: 20px 12px;
  flex-direction: column;
  gap: 4px;
}
.av-dash-logo { padding: 0 8px; }
.av-dash-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: var(--av-radius-sm);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--av-transition);
}
.av-dash-nav.active { background: rgba(94,200,212,.15); color: var(--av-teal); }
.av-dash-nav:hover:not(.active) { background: rgba(255,255,255,.04); color: rgba(255,255,255,.7); }

.av-dash-main { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.av-dash-title { font-size: .95rem; font-weight: 700; color: #fff; }
.av-dash-sub   { font-size: .72rem; color: rgba(255,255,255,.3); margin-top: 2px; }
.av-dash-btn {
  background: var(--av-teal);
  color: #fff;
  padding: 7px 13px;
  border-radius: 7px;
  font-size: .75rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.av-dash-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  padding: 12px 14px;
}
.av-dash-card-label { font-size: .68rem; color: rgba(255,255,255,.38); margin-bottom: 3px; }
.av-dash-card-value { font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1.1; }
.av-dash-card-value.nps { color: var(--av-green); }
.av-dash-card-change { font-size: .68rem; margin-top: 3px; }
.av-dash-card-change.up      { color: var(--av-green); }
.av-dash-card-change.neutral { color: rgba(255,255,255,.35); }

.av-dash-chart-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  padding: 12px 14px;
  flex: 1;
}
.av-dash-chart-label { font-size: .68rem; color: rgba(255,255,255,.38); margin-bottom: 10px; }
.av-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}
.av-bar {
  flex: 1;
  height: var(--h, 50%);
  background: rgba(94,200,212,.25);
  border-radius: 3px 3px 0 0;
  transition: height .6s ease;
}
.av-bar-active { background: var(--av-teal); }

/* ======================================================
   FEATURES
   ====================================================== */
.av-feature-card {
  background: #fff;
  border: 1.5px solid var(--av-border);
  border-radius: var(--av-radius-lg);
  padding: 32px;
  transition: var(--av-transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.av-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr, var(--av-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.av-feature-card--highlight {
  background: linear-gradient(180deg, var(--ic, #fff) 0%, #fff 45%);
}

.av-feature-icon {
  width: 56px; height: 56px;
  background: var(--ic, #EBF8FA);
  color: var(--clr, var(--av-teal));
  border-radius: var(--av-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--av-transition);
}

.av-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: var(--av-light-bg);
  border-radius: 999px;
  font-size: .79rem;
  font-weight: 500;
  color: var(--av-mid);
  border: 1px solid var(--av-border);
}

.av-chip-group-label {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--clr, var(--av-teal-dark));
  margin: 14px 0 8px;
}
.av-chip-group-label .badge-count {
  font-weight: 600;
  color: var(--av-muted);
  text-transform: none;
  letter-spacing: normal;
}

.av-export-tile {
  background: var(--bg, var(--av-light-bg));
  border: 1.5px solid var(--av-border);
  border-radius: var(--av-radius-md);
  padding: 16px;
  height: 100%;
  transition: var(--av-transition);
}
.av-export-tile-icon {
  width: 40px; height: 40px;
  border-radius: var(--av-radius-sm);
  background: #fff;
  color: var(--clr, var(--av-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.av-export-tile-name {
  font-weight: 800;
  font-size: .95rem;
  color: var(--av-dark);
  margin-bottom: 4px;
}
.av-export-tile-desc {
  font-size: .78rem;
  color: var(--av-muted);
  line-height: 1.4;
}

/* ======================================================
   CLIENTES (logo strip)
   ====================================================== */
.av-clientes-section {
  padding: 64px 0;
  background: #fff;
  border-bottom: 1px solid var(--av-border);
}
.av-clientes-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--av-dark);
}
.av-clientes-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.av-cliente-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 88px;
  background: #fff;
  border: 1.5px solid var(--av-border);
  border-radius: var(--av-radius-lg);
  padding: 16px 24px;
  transition: var(--av-transition);
}
.av-cliente-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%);
  opacity: .55; */
  transition: var(--av-transition);
}

/* ======================================================
   MOTIVOS PARA USAR
   ====================================================== */
.av-motivo-card {
  padding: 28px 16px;
  border-radius: var(--av-radius-lg);
  transition: var(--av-transition);
}
.av-motivo-icon {
  width: 60px; height: 60px;
  background: var(--ic, #EBF8FA);
  color: var(--clr, var(--av-teal));
  border-radius: var(--av-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ======================================================
   FORM TYPES (Pesquisa · Checklist · Coleta)
   ====================================================== */
.av-ftype-card {
  border: 1.5px solid var(--av-border);
  border-radius: var(--av-radius-xl);
  overflow: hidden;
  background: #fff;
  transition: var(--av-transition);
  display: flex;
  flex-direction: column;
}
.av-ftype-card.av-ftype-featured {
  border-color: var(--av-orange);
  box-shadow: 0 0 0 4px rgba(246,143,91,.1);
}
.av-ftype-header {
  background: var(--hbg, linear-gradient(135deg,#5ec8d4,#3fb0bc));
  padding: 28px 24px 20px;
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.av-ftype-icon-hero {
  font-size: 2.2rem;
  color: rgba(255,255,255,.9);
}
.av-ftype-label {
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.9);
}
.av-ftype-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,.25);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.av-ftype-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.av-ftype-body > p {
  font-size: .9rem;
  color: var(--av-muted);
  margin-bottom: 16px;
}
.av-ftype-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.av-ftype-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  color: var(--av-mid);
}
.av-ftype-list li i { color: var(--av-green); font-size: .85rem; flex-shrink: 0; }

/* Preview mini dentro dos cards */
.av-ftype-preview {
  background: var(--av-light-bg);
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-md);
  padding: 14px 16px;
  margin-top: auto;
}
.avfp-label { font-size: .78rem; font-weight: 600; color: var(--av-mid); margin-bottom: 8px; }
.avfp-stars { display: flex; gap: 4px; }
.avfp-stars i { font-size: 1.2rem; color: var(--av-border); }
.avfp-stars i.active { color: var(--av-yellow); }
.avfp-nps-row { display: flex; flex-wrap: wrap; gap: 4px; }
.avfp-nps-chip {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--av-border);
  font-size: .72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--av-mid);
}
.avfp-nps-chip.avfp-selected { background: var(--av-teal); border-color: var(--av-teal); color: #fff; }

/* Checklist preview */
.avfp-checklist { display: flex; flex-direction: column; gap: 6px; }
.avfp-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  padding: 5px 0;
  border-bottom: 1px solid var(--av-border);
}
.avfp-check-item:last-child { border-bottom: none; }
.avfp-check-item.done { color: var(--av-green); }
.avfp-check-item.done i { color: var(--av-green); }
.avfp-check-item.pending { color: var(--av-muted); }
.avfp-check-item.pending i { color: var(--av-muted); }
.avfp-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: var(--av-muted);
}
.avfp-progress { position: relative; }
.avfp-progress-bar {
  height: 5px;
  background: var(--av-orange);
  border-radius: 999px;
  flex: 1;
  max-width: 100%;
}
.avfp-progress span { white-space: nowrap; }

/* Coleta preview */
.avfp-field label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  color: var(--av-muted);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.avfp-input {
  background: #fff;
  border: 1px solid var(--av-border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: .82rem;
  color: var(--av-dark);
}
.avfp-typing { border-color: var(--av-teal); box-shadow: 0 0 0 2px rgba(94,200,212,.2); }
.avfp-cursor {
  display: inline-block;
  animation: avBlink .8s step-end infinite;
  color: var(--av-teal);
  font-weight: 400;
}
@keyframes avBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ======================================================
   IA SECTION
   ====================================================== */
.av-ia-section {
  background: linear-gradient(150deg, #1a2a2a 0%, var(--av-dark) 40%, #1a1a2e 100%);
  padding: 96px 0;
}

.av-robot-hero {
  max-height: 320px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}

/* Steps IA */
.av-ia-steps {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--av-radius-xl);
  overflow: hidden;
}
.av-ia-step {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  transition: var(--av-transition);
  position: relative;
}
.av-ia-step:last-child { border-right: none; }
.av-ia-step:hover { background: rgba(255,255,255,.03); }
.av-ia-step.active {
  background: rgba(94,200,212,.1);
  border-bottom: 3px solid var(--av-teal);
}
.av-ia-step-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,.08);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}
.av-ia-step.active .av-ia-step-num { color: rgba(94,200,212,.4); }
.av-ia-step-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.av-ia-step.active .av-ia-step-icon {
  background: rgba(94,200,212,.2);
  color: var(--av-teal);
}
.av-ia-step h5 { color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 6px; }
.av-ia-step p  { color: rgba(255,255,255,.45); font-size: .8rem; line-height: 1.6; margin: 0; }
.av-ia-step.active h5 { color: #fff; }

/* Demo IA */
.av-ia-prompt-card,
.av-ia-result-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--av-radius-xl);
  padding: 28px;
}
.av-ia-prompt-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.av-ia-robot-sm {
  height: 60px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
}
.av-ia-prompt-title { font-size: .95rem; font-weight: 700; color: #fff; }
.av-ia-prompt-sub   { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 2px; }

.av-ia-suggestions { display: flex; flex-wrap: wrap; gap: 8px; }
.av-ia-chip {
  padding: 5px 13px;
  background: rgba(94,200,212,.12);
  border: 1px solid rgba(94,200,212,.25);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--av-teal);
  cursor: pointer;
  transition: var(--av-transition);
  user-select: none;
}
.av-ia-chip:hover, .av-ia-chip.active {
  background: var(--av-teal);
  border-color: var(--av-teal);
  color: #fff;
}

.av-ia-input-wrap { position: relative; }
.av-ia-textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--av-radius-md);
  color: #fff;
  padding: 14px 16px;
  font-family: var(--font, 'Inter', sans-serif);
  font-size: .9rem;
  resize: none;
  outline: none;
  transition: var(--av-transition);
}
.av-ia-textarea::placeholder { color: rgba(255,255,255,.3); }
.av-ia-textarea:focus { border-color: var(--av-teal); box-shadow: 0 0 0 3px rgba(94,200,212,.2); }
.av-ia-textarea[readonly] { cursor: pointer; caret-color: transparent; }
.av-ia-send-btn {
  margin-top: 10px;
  width: 100%;
  background: var(--av-teal);
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--av-radius-md);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--av-transition);
}
.av-ia-send-btn:hover { background: var(--av-teal-dark); transform: translateY(-1px); }
.av-ia-send-btn.loading { opacity: .7; pointer-events: none; }

/* Resultado IA */
.av-ia-result-card { transition: var(--av-transition); }
.av-ia-result-body { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.av-ia-q-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--av-transition);
}
.av-ia-q-item:hover { background: rgba(94,200,212,.08); border-color: rgba(94,200,212,.2); }
.av-ia-q-type {
  font-size: .72rem;
  font-weight: 700;
  background: rgba(94,200,212,.15);
  color: var(--av-teal);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.av-ia-q-text { font-size: .85rem; color: rgba(255,255,255,.75); }

/* Análise IA */
.av-ia-analysis-robot {
  max-height: 340px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
  animation: avFloat 3.5s ease-in-out infinite;
}
@keyframes avFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.av-ia-insight-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--av-radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--av-transition);
}
.av-ia-insight-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.av-ia-insight-label { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .05em; }
.av-ia-insight-text  { font-size: .83rem; color: rgba(255,255,255,.8); margin-top: 2px; line-height: 1.4; }

/* ======================================================
   STEPS
   ====================================================== */
.av-step-card {
  padding: 32px 20px;
  position: relative;
}
.av-step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--av-border);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}
.av-step-icon {
  width: 64px; height: 64px;
  background: #EBF8FA;
  border: 2px solid rgba(94,200,212,.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--clr, var(--av-teal));
}

/* ======================================================
   PLANOS
   ====================================================== */
.av-toggle-wrap { display: flex; align-items: center; justify-content: center; }
.av-toggle-label { font-size: .9rem; font-weight: 600; color: var(--av-muted); }
.av-toggle-label.active { color: var(--av-dark); }
.av-save-badge {
  background: var(--av-green);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 4px;
  vertical-align: middle;
}
.av-toggle.form-check-input:checked { background-color: var(--av-teal); border-color: var(--av-teal); }
.av-toggle.form-check-input { width: 2.4em; height: 1.3em; cursor: pointer; }

.av-plan-card {
  border: 2px solid var(--av-border);
  border-radius: var(--av-radius-xl);
  padding: 36px 28px;
  background: #fff;
  transition: var(--av-transition);
  display: flex;
  flex-direction: column;
}
.av-plan-card.av-plan-popular {
  border-color: var(--av-teal);
  box-shadow: 0 0 0 4px rgba(94,200,212,.12);
}
.av-plan-name {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--av-muted);
}
.av-popular-badge {
  background: var(--av-teal);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.av-price {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--av-dark);
}
.av-price small { font-size: 1.4rem; }
.av-plan-features { list-style: none; padding: 0; margin: 0; }
.av-plan-features li { padding: 6px 0; font-size: .9rem; color: var(--av-mid); border-bottom: 1px solid var(--av-border); }
.av-plan-features li:last-child { border-bottom: none; }

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.av-testimonials-section {
  padding: 96px 0;
  background: linear-gradient(140deg, #1a2a2a 0%, var(--av-dark) 50%, #1a1a2e 100%);
}
.av-testimonial-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--av-radius-lg);
  padding: 32px;
  transition: var(--av-transition);
  height: 100%;
}
.av-stars { color: var(--av-yellow); font-size: 1.05rem; letter-spacing: 3px; }
.av-testimonial-card p { color: rgba(255,255,255,.72); font-size: .92rem; line-height: 1.75; }
.av-testimonial-footer {
  margin-top: auto;
  padding-top: 24px;
}
.av-testimonial-author { line-height: 1.4; }
.av-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
  flex-shrink: 0;
}
.av-testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 44px;
}
.av-testimonials-nav-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--av-transition);
}
.av-testimonials-nav-btn:hover {
  background: var(--av-teal);
  border-color: var(--av-teal);
  transform: translateY(-2px);
}
.carousel-indicators.av-testimonials-indicators {
  position: static;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
}
.carousel-indicators.av-testimonials-indicators .av-testimonials-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(255,255,255,.25);
  border: none;
  opacity: 1;
  transition: var(--av-transition);
}
.carousel-indicators.av-testimonials-indicators .av-testimonials-dot.active {
  background-color: var(--av-teal);
  width: 24px;
  border-radius: 5px;
}

/* ======================================================
   CTA FINAL
   ====================================================== */
.av-cta-box {
  background: linear-gradient(135deg, var(--av-teal) 0%, var(--av-green) 50%, var(--av-teal-dark) 100%);
  border-radius: var(--av-radius-xl);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.av-cta-box::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  top: -180px; right: -80px;
  pointer-events: none;
}

/* ======================================================
   PÁGINA PLANOS — Hero, Toggle, Cards dark, Tabela, FAQ
   ====================================================== */

/* Hero blobs */
.av-page-hero { position: relative; overflow: hidden; }
.av-page-hero-blob {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  filter: blur(85px);
  pointer-events: none;
}

/* Toggle billing */
.av-billing-toggle-wrap {
  display: inline-flex;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
.av-billing-btn {
  padding: 8px 22px;
  border-radius: 9px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--av-transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.av-billing-btn.active {
  background: var(--av-teal);
  color: #fff;
  box-shadow: 0 4px 12px rgba(94,200,212,.35);
}
.av-save-badge {
  background: var(--av-green);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
}

/* Nota de cobrança */
.av-billing-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(94,200,212,.12);
  border: 1px solid rgba(94,200,212,.25);
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  padding: 7px 16px;
  border-radius: 999px;
}
.av-billing-note strong { color: var(--av-teal); }
.av-billing-note-warning {
  background: rgba(246,143,91,.12);
  border-color: rgba(246,143,91,.3);
}
.av-billing-note-warning strong { color: var(--av-orange); }

/* Cards dark (página de planos) */
.av-plan-card.av-plan-dark {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--av-radius-xl);
  padding: 36px 28px;
  transition: var(--av-transition);
  position: relative;
  overflow: hidden;
}
.av-plan-card.av-plan-popular-dark {
  border-color: var(--av-teal);
  background: rgba(94,200,212,.07);
}
.av-plan-popular-ribbon {
  position: absolute;
  top: 0; right: 0;
  background: var(--av-teal);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  padding: 5px 16px;
  border-bottom-left-radius: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.av-plan-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.av-plan-name-dark { font-size: 1.1rem; font-weight: 800; color: #fff; }
.av-plan-desc-dark { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 2px; }

.av-price-dark {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}
.av-price-period-dark { font-size: .9rem; color: rgba(255,255,255,.45); margin-left: 4px; }

.av-plan-billing-detail {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  padding: 8px 12px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  border-left: 3px solid var(--av-teal);
}
.av-plan-billing-detail strong { color: rgba(255,255,255,.8); }

.av-plan-savings {
  font-size: .82rem;
  color: var(--av-green);
}
.av-plan-savings strong { color: var(--av-green); }

.av-trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(233,201,78,.12);
  border: 1px solid rgba(233,201,78,.3);
  color: var(--av-yellow);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

.av-btn-outline-teal-dark {
  background: transparent;
  border: 2px solid var(--av-teal);
  color: var(--av-teal) !important;
  border-radius: var(--av-radius-sm);
  font-weight: 600;
  transition: var(--av-transition);
}
.av-btn-outline-teal-dark:hover {
  background: var(--av-teal);
  color: #fff !important;
  transform: translateY(-1px);
}

.av-plan-feature-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
}
.av-plan-feature-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .86rem;
  color: rgba(255,255,255,.65);
}

/* Garantias */
.av-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--av-border);
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--av-mid);
}
.av-guarantee i { font-size: 1.1rem; }

/* ── Tabela comparativa ── */
.av-compare-wrap { overflow-x: auto; }
.av-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.av-compare-table thead tr {
  border-bottom: 2px solid var(--av-border);
}
.av-compare-table th {
  padding: 16px 12px;
  font-weight: 700;
  color: var(--av-dark);
  vertical-align: bottom;
}
.av-cmp-feature-col { width: 35%; text-align: left; }
.av-cmp-popular-col { background: rgba(94,200,212,.06); }
.av-cmp-popular-tag {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--av-teal);
  margin-bottom: 4px;
}
.av-cmp-plan-name {
  font-size: .95rem;
  font-weight: 800;
  color: var(--av-dark);
  margin-bottom: 2px;
}
.av-cmp-plan-price { font-size: .8rem; color: var(--av-muted); }
.av-cmp-plan-price small { font-size: .7rem; }

.av-cmp-group-row td {
  padding: 20px 12px 8px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--av-muted);
  border-top: 1px solid var(--av-border);
}
.av-cmp-row td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--av-border);
  vertical-align: middle;
  transition: background var(--av-transition);
}
.av-cmp-label { color: var(--av-mid); text-align: left; }
.av-cmp-yes { color: var(--av-green); font-size: 1.1rem; }
.av-cmp-no  { color: var(--av-border); font-size: 1.1rem; }
.av-cmp-text { color: var(--av-mid); font-size: .82rem; font-weight: 500; }
.av-cmp-cta-row td { border: none; }

/* ── FAQ ── */
.av-faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.av-faq-item {
  border: 1.5px solid var(--av-border) !important;
  border-radius: var(--av-radius-md) !important;
  overflow: hidden;
}
.av-faq-btn {
  font-weight: 600;
  font-size: .95rem;
  color: var(--av-dark);
  background: #fff !important;
  box-shadow: none !important;
  padding: 18px 20px;
}
.av-faq-btn:not(.collapsed) {
  color: var(--av-teal-dark);
  border-bottom: 1px solid var(--av-border);
}
.av-faq-btn::after { filter: hue-rotate(160deg); }
.av-faq-body {
  padding: 18px 20px;
  font-size: .92rem;
  color: var(--av-muted);
  line-height: 1.7;
  background: var(--av-light-bg);
}

/* ======================================================
   FOOTER
   ====================================================== */
.av-footer {
  background: var(--av-dark);
  padding: 64px 0 28px;
}
.av-footer-heading {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.3);
  margin-bottom: 14px;
}
.av-footer-link {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  padding: 4px 0;
  transition: var(--av-transition);
}
.av-footer-link:hover { color: #fff; }
.av-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  transition: var(--av-transition);
}
.av-social-btn:hover { background: var(--av-teal); color: #fff; }
.av-footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

/* ======================================================
   SCROLL-IN ANIMATIONS
   ====================================================== */
.av-anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.av-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   ANCHOR HIGHLIGHT (flash ao chegar via scroll de âncora)
   ====================================================== */
.av-anchor-highlight {
  animation: av-anchor-pop .55s cubic-bezier(.34,1.56,.64,1) both,
             av-anchor-ring 1.6s ease-out both;
}
.av-feature-card.av-anchor-highlight::before {
  transform: scaleX(1);
}
.av-feature-card:not(.av-anchor-highlight),
.av-motivo-card:not(.av-anchor-highlight),
.av-ftype-card:not(.av-anchor-highlight) {
  transition: box-shadow 1s ease, transform 1s ease;
}
.av-feature-card:not(.av-anchor-highlight)::before {
  transition: transform 1s ease;
}

@keyframes av-anchor-pop {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-8px) scale(1.015); }
  100% { transform: translateY(-4px) scale(1); }
}

@keyframes av-anchor-ring {
  0%   { box-shadow: 0 0 0 0 rgba(94,200,212,.5), var(--av-shadow-lg); }
  55%  { box-shadow: 0 0 0 12px rgba(94,200,212,0), var(--av-shadow-lg); }
  100% { box-shadow: 0 0 0 12px rgba(94,200,212,0), var(--av-shadow-lg); }
}

/* ======================================================
   COOKIE CONSENT (LGPD)
   ====================================================== */
.av-cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1080;
  background: var(--av-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -8px 30px rgba(0,0,0,.3);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s ease, opacity .4s ease;
}
.av-cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.av-cookie-consent-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 640px;
  font-size: .86rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.av-cookie-consent-text i { color: var(--av-teal); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.av-cookie-consent-text a { color: var(--av-teal); text-decoration: underline; }

.av-cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.av-cookie-btn {
  border-radius: var(--av-radius-sm);
  font-size: .85rem;
  font-weight: 600;
  padding: 9px 16px;
  white-space: nowrap;
  transition: var(--av-transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.av-cookie-btn-primary {
  background: var(--av-teal);
  border-color: var(--av-teal);
  color: #fff;
}
.av-cookie-btn-primary:hover { background: var(--av-teal-dark); border-color: var(--av-teal-dark); }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 991px) {
  .av-section { padding: 72px 0; }
  .av-hero { padding: 130px 0 80px; }
  .av-mockup-body { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .av-hero { padding: 110px 0 64px; }
  .av-section { padding: 56px 0; }
  .av-hero-title { font-size: 2rem; }
  .av-cta-box { padding: 48px 24px; }
  .av-testimonials-section { padding: 64px 0; }
  .av-hero-robot { max-height: 80px; top: -32px; right: 8px; }
  .av-clientes-section { padding: 40px 0; }
  .av-cliente-logo-card { width: 130px; height: 68px; padding: 12px 16px; }
  .av-cookie-consent { justify-content: flex-start; padding: 16px; }
  .av-cookie-consent-actions { width: 100%; justify-content: flex-end; }
}

@media (max-width: 480px) {
  .av-hero-title { font-size: 1.75rem; }
  .av-btn-lg { padding: 12px 20px; font-size: .95rem; }
}
