:root {
  --brand-1: #1F80A6;
  --brand-2: #1F598C;
  --brand-3: #8C8183;
  --accent: #f39333;
  --text-color: #212529;
  --muted: #6c757d;
  --light: #f8f9fa;
}

html, body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text-color);
  overflow-x: hidden;
}

.text-primary { color: var(--brand-1) !important; }
.bg-primary { background-color: var(--brand-1) !important; }
.btn-primary { background-color: var(--brand-1); border-color: var(--brand-1); }
.btn-outline-primary { color: var(--brand-1); border-color: var(--brand-1); }
.btn-outline-primary:hover { background-color: var(--brand-1); color: #fff; }
.btn-accent { background: var(--accent); color: #111; border-color: var(--accent); }
.btn-accent:hover { filter: brightness(0.95); color: #111; }

.topbar { background: var(--brand-2); }

/* ── Header moderno (index) ── */
.site-header--modern {
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .3s ease;
}
.site-header--modern.is-scrolled {
  box-shadow: 0 10px 30px rgba(31,89,140,.10);
}

.topbar-modern {
  background: linear-gradient(90deg, var(--brand-2), #1a6d8c);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: max-height .35s ease, opacity .35s ease, padding .35s ease;
  max-height: 56px;
  overflow: hidden;
}
.site-header--modern.is-scrolled .topbar-modern {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}
.topbar-modern-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .45rem 0;
}
.topbar-modern-left {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.topbar-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #f8fafc;
  font-size: .74rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.topbar-chip:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.topbar-chip--whatsapp {
  background: rgba(37,211,102,.14);
  border-color: rgba(74,222,128,.28);
}
.topbar-chip--whatsapp:hover {
  background: rgba(37,211,102,.22);
}

.navbar-modern {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31,128,166,.08);
  padding-top: .65rem;
  padding-bottom: .65rem;
  transition: background .3s ease, backdrop-filter .3s ease, padding .3s ease;
}
.site-header--modern.is-scrolled .navbar-modern {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.navbar-brand-modern img {
  display: block;
  width: auto;
  max-height: 30px;
}

.navbar-toggler-modern {
  border: 1px solid rgba(31,128,166,.16);
  border-radius: 10px;
  padding: .4rem .55rem;
  box-shadow: none;
}
.navbar-toggler-modern:focus {
  box-shadow: 0 0 0 3px rgba(31,128,166,.15);
}
.navbar-toggler-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 20px;
  height: 16px;
}
.navbar-toggler-lines span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--brand-2);
  transition: transform .25s ease, opacity .25s ease;
}
.navbar-toggler-modern[aria-expanded="true"] .navbar-toggler-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navbar-toggler-modern[aria-expanded="true"] .navbar-toggler-lines span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler-modern[aria-expanded="true"] .navbar-toggler-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-link-modern {
  position: relative;
  font-weight: 600;
  font-size: .9rem;
  color: var(--brand-2) !important;
  padding: .55rem .85rem !important;
  transition: color .2s ease;
}
.nav-link-modern::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .3rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-1), var(--accent));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.nav-link-modern:hover,
.nav-link-modern:focus-visible,
.nav-link-modern.is-active {
  color: var(--brand-1) !important;
}
.nav-link-modern:hover::after,
.nav-link-modern:focus-visible::after,
.nav-link-modern.is-active::after {
  transform: scaleX(1);
}

.navbar-actions .btn {
  border-radius: 999px;
  font-weight: 600;
  font-size: .86rem;
  padding: .5rem 1rem;
  white-space: nowrap;
}
.btn-nav-outline {
  border: 1px solid rgba(31,128,166,.22);
  color: var(--brand-2);
  background: #fff;
}
.btn-nav-outline:hover {
  background: rgba(31,128,166,.06);
  border-color: rgba(31,128,166,.34);
  color: var(--brand-2);
}
.btn-nav-cta {
  box-shadow: 0 8px 20px rgba(243,147,51,.24);
}
.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(243,147,51,.3);
  color: #111;
}

@media (max-width: 991.98px) {
  .navbar-modern .navbar-collapse {
    margin-top: .75rem;
    padding: .85rem;
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(31,128,166,.10);
    box-shadow: 0 16px 36px rgba(31,89,140,.10);
  }
  .nav-link-modern::after { display: none; }
  .nav-link-modern.is-active {
    background: rgba(31,128,166,.08);
    border-radius: 10px;
  }
  .navbar-actions {
    padding-top: .5rem;
    border-top: 1px solid rgba(31,128,166,.10);
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar-modern,
  .navbar-modern,
  .nav-link-modern::after,
  .btn-nav-cta { transition: none; }
  .btn-nav-cta:hover { transform: none; }
}

/* ── Hero páginas internas ── */
.hero-page {
  background: linear-gradient(165deg, #f8fbfd 0%, #eef6fa 45%, #fff 100%);
}
.hero-page .hero-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--brand-2);
}

/* ── Grid catálogo (hubs) ── */
.solucao-grid--catalog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 768px) {
  .solucao-grid--catalog { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .solucao-grid--catalog { grid-template-columns: repeat(3, 1fr); }
}
.solucao-grid--catalog .solucao-card {
  min-height: 100%;
}

.integracao-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .75rem;
}
.integracao-badge {
  display: inline-flex;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--brand-2);
  background: rgba(31,128,166,.08);
  border: 1px solid rgba(31,128,166,.12);
}

/* ── FAQ moderno ── */
.faq-section {
  background: linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
}
.faq-accordion .accordion-item {
  border: 1px solid rgba(31,128,166,.10);
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: .75rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(31,89,140,.04);
}
.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--brand-2);
  background: #fff;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-1);
  background: rgba(31,128,166,.05);
}
.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(31,128,166,.12);
}

/* ── Tabela comparativa planos ── */
.planos-table-wrap {
  border-radius: 20px;
  border: 1px solid rgba(31,128,166,.10);
  background: #fff;
  box-shadow: 0 16px 40px rgba(31,89,140,.08);
}
.planos-table thead th {
  background: linear-gradient(180deg, #f3f9fc, #eaf4f8);
  color: var(--brand-2);
  font-size: .82rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(31,128,166,.12);
  white-space: nowrap;
}
.planos-table tbody td {
  font-size: .9rem;
  border-color: rgba(31,128,166,.08);
}
.planos-table tbody td:not(:first-child) {
  text-align: center;
  color: var(--brand-1);
}
.planos-table .bi-check2 { color: #16a34a; font-weight: 700; }
.planos-table .bi-dash { color: #94a3b8; }
.planos-table-note {
  display: inline-block;
  margin-top: .25rem;
  padding: .15rem .5rem;
  border-radius: 999px;
  font-size: .72rem;
  color: var(--brand-2);
  background: rgba(31,128,166,.08);
}

/* ── Landing pages SEO ── */
.beneficios-section {
  background: linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
}
.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .beneficios-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .beneficios-grid { grid-template-columns: repeat(4, 1fr); }
}
.beneficio-card {
  padding: 1.25rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31,128,166,.10);
  box-shadow: 0 10px 24px rgba(31,89,140,.05);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.beneficio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(31,89,140,.09);
}
.beneficio-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,128,166,.10);
  color: var(--brand-1);
  font-size: 1.25rem;
  margin-bottom: .85rem;
}
.beneficio-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: .4rem;
}
.beneficio-card p {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 0;
}

.seo-content-section {
  background: #fff;
}
.seo-prose {
  max-width: 52rem;
  margin: 0 auto;
  color: #334155;
  line-height: 1.7;
}
.seo-prose h2,
.seo-prose h3,
.seo-prose h4 {
  color: var(--brand-2);
  margin-top: 2rem;
}
.seo-prose h2 { font-size: 1.35rem; }
.seo-prose h3 { font-size: 1.15rem; }
.seo-prose ul { padding-left: 1.2rem; }
.seo-prose .seo-table-wrap {
  border-radius: 16px;
  border: 1px solid rgba(31,128,166,.10);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(31,89,140,.06);
}
.seo-prose .seo-table-wrap table { margin-bottom: 0; }
.seo-prose .seo-table-wrap thead th {
  background: linear-gradient(180deg, #f3f9fc, #eaf4f8);
  color: var(--brand-2);
  font-size: .85rem;
}
.seo-results-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: .5rem;
}
.seo-results-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .65rem .85rem;
  border-radius: 12px;
  background: rgba(31,128,166,.05);
  border: 1px solid rgba(31,128,166,.08);
}
.landing-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .landing-kpi-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .landing-kpi-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.landing-kpi {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(31,128,166,.05);
  border: 1px solid rgba(31,128,166,.10);
  text-align: center;
}
.landing-kpi-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: .25rem;
}
.landing-kpi-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-2);
}
.seo-inline-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(31,128,166,.08), rgba(243,147,51,.06));
  border: 1px solid rgba(31,128,166,.12);
}
.seo-content-section--alt {
  background: linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
}

.brand-mark {
  width: 28px; height: 28px; border-radius: 6px; background: var(--brand-1);
  display: inline-block; position: relative; overflow: hidden;
}
.brand-mark.small { width: 20px; height: 20px; }
.brand-mark::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,0) 50%);
}

.hero { background: linear-gradient(180deg, rgba(31,128,166,.06), transparent 50%); }
.hero-modern {
  background:
    linear-gradient(165deg, rgba(31,128,166,.08) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,128,166,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,128,166,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.hero .hero-bg {
  position: absolute; inset: 0; background:
  radial-gradient(900px 480px at 85% 15%, rgba(31,89,140,.14), transparent 62%),
  radial-gradient(700px 420px at 5% 85%, rgba(243,147,51,.10), transparent 58%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .85rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: rgba(31,128,166,.08);
  border: 1px solid rgba(31,128,166,.14);
  color: var(--brand-2);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: hero-pulse 2.4s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .75; }
}
.hero-title { line-height: 1.12; letter-spacing: -.02em; }
.hero-gradient-text {
  background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 55%, #0ea5e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-btn-primary {
  box-shadow: 0 10px 28px rgba(243,147,51,.28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(243,147,51,.34);
}
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .75rem;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(31,128,166,.10);
  backdrop-filter: blur(6px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.hero-trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(31,128,166,.22);
  box-shadow: 0 10px 24px rgba(31,89,140,.08);
}
.hero-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,128,166,.10);
  color: var(--brand-1);
  flex-shrink: 0;
}
.hero-trust-item strong {
  display: block;
  font-size: .84rem;
  line-height: 1.2;
  color: var(--brand-2);
}
.hero-trust-item small {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.3;
}

.hero-showcase {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
}
.hero-showcase-glow {
  position: absolute;
  inset: 8% 5% -6%;
  background: radial-gradient(ellipse at center, rgba(31,128,166,.22), transparent 68%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
.hero-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .85rem;
  position: relative;
  z-index: 2;
}
.hero-tab {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .85rem;
  border: 1px solid rgba(31,128,166,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  color: var(--brand-2);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}
.hero-tab i { font-size: .95rem; }
.hero-tab:hover,
.hero-tab:focus-visible {
  border-color: rgba(31,128,166,.35);
  background: #fff;
  outline: none;
  box-shadow: 0 6px 18px rgba(31,89,140,.10);
}
.hero-tab.is-active {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px rgba(31,89,140,.22);
}

.hero-browser {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(31,128,166,.12);
  background: #fff;
}
.hero-browser-bar {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1rem;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid #e8edf3;
}
.hero-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}
.hero-browser-dot:nth-child(1) { background: #fca5a5; }
.hero-browser-dot:nth-child(2) { background: #fcd34d; }
.hero-browser-dot:nth-child(3) { background: #86efac; }
.hero-browser-url {
  margin-left: .5rem;
  padding: .28rem .75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e8edf3;
  font-size: .72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-browser-viewport {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  aspect-ratio: 16 / 10;
}
.hero-preview-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s cubic-bezier(.22,.61,.36,1), filter .6s ease;
}
.hero-showcase.is-switching .hero-preview-img {
  transform: scale(1.03);
  filter: brightness(1.04);
}
.hero-panel {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.hero-panel.is-active {
  opacity: 1;
}
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .8rem;
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 14px 36px rgba(15,23,42,.16);
  backdrop-filter: blur(10px);
  max-width: min(220px, 78%);
  animation: hero-float 5s ease-in-out infinite;
}
.hero-float-card i { font-size: 1.15rem; flex-shrink: 0; }
.hero-float-card strong {
  display: block;
  font-size: .78rem;
  line-height: 1.2;
  color: var(--brand-2);
}
.hero-float-card small {
  display: block;
  font-size: .68rem;
  color: var(--muted);
}
.hero-float-card--tl { top: 12%; left: 5%; animation-delay: 0s; }
.hero-float-card--br { bottom: 14%; right: 5%; animation-delay: 1.2s; }
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-browser-caption {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem 1rem;
  background: #fff;
  border-top: 1px solid #eef1f4;
  font-size: .82rem;
  color: var(--muted);
  min-height: 52px;
}
.hero-caption-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-1);
  flex-shrink: 0;
  animation: hero-pulse 2.4s ease-in-out infinite;
}

.hero .hero-card { border: 1px solid #eef1f4; }
.hero-preview { display: block; object-fit: cover; max-height: 360px; }

@media (max-width: 991.98px) {
  .hero-trust-grid { grid-template-columns: 1fr; }
  .hero-showcase { margin-top: .5rem; }
}
@media (max-width: 575.98px) {
  .hero-tab span { display: none; }
  .hero-tab { padding: .55rem .7rem; }
  .hero-float-card { max-width: 68%; padding: .55rem .65rem; }
  .hero-float-card strong { font-size: .72rem; }
  .hero-float-card small { font-size: .64rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow-dot,
  .hero-caption-dot,
  .hero-float-card { animation: none; }
  .hero-preview-img,
  .hero-trust-item,
  .hero-btn-primary,
  .hero-tab,
  .hero-showcase { transition: none; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 2000;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: #fff;
  color: var(--brand-2);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  text-decoration: none;
  font-weight: 600;
}

.contact-form .form-label { font-weight: 500; font-size: .9rem; }

/* ── Seção Contato (index) ── */
.contato-section {
  position: relative;
  background: linear-gradient(180deg, #f8fbfd 0%, #f1f6fa 100%);
  overflow: hidden;
}
.contato-section::before {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,128,166,.10), transparent 68%);
  pointer-events: none;
}
.contato-section .container { position: relative; z-index: 1; }
.contato-copy .section-lead { max-width: 42ch; }

.contato-channels {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.contato-channel {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(31,128,166,.10);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.contato-channel:hover {
  transform: translateX(4px);
  border-color: rgba(31,128,166,.24);
  box-shadow: 0 12px 28px rgba(31,89,140,.08);
  color: inherit;
}
.contato-channel-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,128,166,.10);
  color: var(--brand-1);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contato-channel-icon--whatsapp {
  background: rgba(37,211,102,.12);
  color: #16a34a;
}
.contato-channel-body {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  flex: 1;
  min-width: 0;
}
.contato-channel-body strong {
  font-size: .84rem;
  color: var(--brand-2);
}
.contato-channel-body span {
  font-size: .82rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contato-channel-arrow {
  color: var(--brand-1);
  font-size: .95rem;
  opacity: .5;
  transition: transform .25s ease, opacity .25s ease;
}
.contato-channel:hover .contato-channel-arrow {
  transform: translate(2px, -2px);
  opacity: 1;
}

.contato-hours {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .84rem;
  font-weight: 500;
  color: var(--brand-2);
}
.contato-hours i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,128,166,.10);
  color: var(--brand-1);
}

.contato-form-card {
  height: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(31,128,166,.12);
  box-shadow: 0 20px 50px rgba(31,89,140,.10);
}
@media (min-width: 992px) {
  .contato-form-card { padding: 1.75rem 1.65rem; }
}
.contato-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(31,128,166,.10);
}
.contato-form-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: .35rem;
}
.contato-form-subtitle {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.5;
}
.contato-form-badge {
  flex-shrink: 0;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.22);
  color: #15803d;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contato-input-wrap {
  position: relative;
}
.contato-input-wrap > i {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .95rem;
  pointer-events: none;
  z-index: 2;
}
.contato-input-wrap--textarea > i {
  top: 1rem;
  transform: none;
}
.contato-input-wrap .form-control {
  padding-left: 2.45rem;
  border-radius: 12px;
  border-color: rgba(31,128,166,.14);
  min-height: 46px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contato-input-wrap--textarea .form-control {
  min-height: 110px;
  padding-top: .75rem;
}
.contato-input-wrap .form-control:focus {
  border-color: rgba(31,128,166,.38);
  box-shadow: 0 0 0 3px rgba(31,128,166,.12);
}
.contato-input-wrap:focus-within > i {
  color: var(--brand-1);
}

.contato-submit {
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(243,147,51,.26);
  transition: transform .25s ease, box-shadow .25s ease;
}
.contato-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(243,147,51,.32);
  color: #111;
}

.contato-form-note {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31,128,166,.08);
  font-size: .78rem;
  color: var(--muted);
}
.contato-form-note i { color: var(--brand-1); }

@media (prefers-reduced-motion: reduce) {
  .contato-channel,
  .contato-channel-arrow,
  .contato-submit { transition: none; }
  .contato-channel:hover,
  .contato-submit:hover { transform: none; }
}

.kpi { background: #fff; border: 1px dashed #e1e7ef; border-radius: 12px; padding: 14px; }
.kpi-label { color: var(--muted); font-size: 12px; }
.kpi-value { font-weight: 700; font-size: 22px; color: var(--brand-2); }

.feature { border: 1px solid #eef1f4; border-radius: 16px; padding: 20px; background: #fff; }
.feature i { font-size: 24px; color: var(--brand-1); }
.feature h5 { margin-top: 10px; }
.feature p { color: var(--muted); }

/* ── Seção Soluções (index) ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .85rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-1);
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-1), var(--accent));
}
.section-title { line-height: 1.15; letter-spacing: -.02em; }
.section-lead { font-size: 1.05rem; max-width: 54ch; }

.solucao-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  --mouse-x: 50%;
  --mouse-y: 20%;
}
.solucao-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px circle at var(--mouse-x) var(--mouse-y), rgba(31,128,166,.07), transparent 55%);
  pointer-events: none;
  transition: opacity .3s ease;
}
.solucao-section .container { position: relative; z-index: 1; }

.solucao-cta-link {
  border-radius: 999px;
  padding: .6rem 1.15rem;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease;
}
.solucao-cta-link:hover {
  transform: translateX(3px);
  box-shadow: 0 8px 20px rgba(31,128,166,.12);
}

.solucao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .solucao-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.1rem;
  }
  .solucao-card--featured { grid-column: 1; grid-row: 1 / 3; }
  .solucao-card--featured + .solucao-card { grid-column: 2; grid-row: 1; }
  .solucao-card--featured + .solucao-card + .solucao-card { grid-column: 2; grid-row: 2; }
  .solucao-card--wide { grid-column: 1 / -1; grid-row: 3; }
}

.solucao-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem 1.35rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(31,128,166,.10);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), border-color .3s ease, box-shadow .3s ease;
}
.solucao-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.solucao-card[data-accent="teal"] .solucao-card-glow { background: radial-gradient(ellipse at top left, rgba(31,128,166,.14), transparent 65%); }
.solucao-card[data-accent="orange"] .solucao-card-glow { background: radial-gradient(ellipse at top left, rgba(243,147,51,.16), transparent 65%); }
.solucao-card[data-accent="blue"] .solucao-card-glow { background: radial-gradient(ellipse at top left, rgba(14,165,233,.14), transparent 65%); }
.solucao-card[data-accent="navy"] .solucao-card-glow { background: radial-gradient(ellipse at top left, rgba(31,89,140,.16), transparent 65%); }

.solucao-card:hover,
.solucao-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(31,128,166,.22);
  box-shadow: 0 22px 48px rgba(31,89,140,.10);
}
.solucao-card:hover .solucao-card-glow,
.solucao-card:focus-within .solucao-card-glow { opacity: 1; }

.solucao-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.solucao-card[data-accent="teal"] .solucao-card-icon { background: rgba(31,128,166,.12); color: var(--brand-1); }
.solucao-card[data-accent="orange"] .solucao-card-icon { background: rgba(243,147,51,.15); color: #c2410c; }
.solucao-card[data-accent="blue"] .solucao-card-icon { background: rgba(14,165,233,.12); color: #0369a1; }
.solucao-card[data-accent="navy"] .solucao-card-icon { background: rgba(31,89,140,.12); color: var(--brand-2); }

.solucao-card-body { flex: 1; position: relative; z-index: 1; }
.solucao-card-tag {
  display: inline-block;
  margin-bottom: .45rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.solucao-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: .55rem;
  line-height: 1.25;
}
.solucao-card--featured .solucao-card-title { font-size: 1.35rem; }
.solucao-card-text {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.solucao-card-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.solucao-card-list li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .84rem;
  color: var(--text-color);
}
.solucao-card-list i { color: var(--brand-1); font-size: .9rem; }

.solucao-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1rem;
}
.solucao-pill {
  padding: .28rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--brand-2);
  background: rgba(31,128,166,.08);
  border: 1px solid rgba(31,128,166,.12);
}

.solucao-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.15rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--brand-1);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: gap .25s ease, color .25s ease;
}
.solucao-card-link i { font-size: .95rem; transition: transform .25s ease; }
.solucao-card-link:hover {
  color: var(--brand-2);
  gap: .55rem;
}
.solucao-card-link:hover i { transform: translate(2px, -2px); }

@media (min-width: 768px) {
  .solucao-card--wide {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
  }
  .solucao-card--wide .solucao-card-icon { margin-bottom: 0; flex-shrink: 0; }
  .solucao-card--wide .solucao-card-body { flex: 1; }
  .solucao-card--wide .solucao-card-link { margin-top: 0; flex-shrink: 0; white-space: nowrap; }
}

.solucao-strip {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(31,128,166,.10);
  box-shadow: 0 10px 30px rgba(31,89,140,.05);
}
@media (min-width: 992px) {
  .solucao-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }
}
.solucao-strip-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .86rem;
  font-weight: 500;
  color: var(--brand-2);
}
.solucao-strip-item i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,128,166,.10);
  color: var(--brand-1);
  flex-shrink: 0;
}
.solucao-strip-divider {
  display: none;
  width: 1px;
  height: 28px;
  background: rgba(31,128,166,.14);
}
@media (min-width: 992px) {
  .solucao-strip-divider { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .solucao-card,
  .solucao-cta-link,
  .solucao-card-link,
  .solucao-card-link i { transition: none; }
  .solucao-card:hover,
  .solucao-card:focus-within { transform: none; }
}

/* ── Seção Módulos (index) ── */
.modulos-section {
  position: relative;
  background:
    linear-gradient(180deg, #f8fbfd 0%, #f1f6fa 45%, #f8fbfd 100%);
  overflow: hidden;
}
.modulos-section::before,
.modulos-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.modulos-section::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(31,128,166,.10);
}
.modulos-section::after {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -60px;
  background: rgba(243,147,51,.08);
}
.modulos-section .container { position: relative; z-index: 1; }
.modulos-header { max-width: 640px; }

.modulos-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.modulos-filter {
  padding: .48rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(31,128,166,.14);
  background: rgba(255,255,255,.9);
  color: var(--brand-2);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}
.modulos-filter:hover,
.modulos-filter:focus-visible {
  border-color: rgba(31,128,166,.3);
  background: #fff;
  outline: none;
  box-shadow: 0 6px 16px rgba(31,89,140,.08);
}
.modulos-filter.is-active {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px rgba(31,89,140,.2);
}

.modulos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .modulos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .modulos-grid { grid-template-columns: repeat(3, 1fr); }
  .modulo-card--highlight {
    grid-column: 1 / -1;
    max-width: 720px;
    justify-self: center;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
  }
  .modulo-card--highlight .modulo-card-top { margin-bottom: 0; }
  .modulo-card--highlight .modulo-card-title { margin-bottom: .35rem; }
  .modulo-card--highlight .modulo-card-link { margin-top: 0; white-space: nowrap; }
}

.modulo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(31,128,166,.10);
  box-shadow: 0 8px 24px rgba(31,89,140,.04);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22,.61,.36,1), border-color .35s ease, box-shadow .35s ease;
}
.modulo-card.is-filtered-out {
  display: none;
}
.modulo-card:not(.is-filtered-out):hover,
.modulo-card:not(.is-filtered-out):focus-within {
  transform: translateY(-5px);
  border-color: rgba(31,128,166,.22);
  box-shadow: 0 20px 44px rgba(31,89,140,.10);
}

.modulo-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .85rem;
}
.modulo-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.modulo-card[data-accent="teal"] .modulo-card-icon { background: rgba(31,128,166,.12); color: var(--brand-1); }
.modulo-card[data-accent="orange"] .modulo-card-icon { background: rgba(243,147,51,.14); color: #c2410c; }
.modulo-card[data-accent="blue"] .modulo-card-icon { background: rgba(14,165,233,.12); color: #0369a1; }
.modulo-card[data-accent="navy"] .modulo-card-icon { background: rgba(31,89,140,.12); color: var(--brand-2); }
.modulo-card[data-accent="green"] .modulo-card-icon { background: rgba(34,197,94,.12); color: #15803d; }
.modulo-card[data-accent="purple"] .modulo-card-icon { background: rgba(168,85,247,.12); color: #7e22ce; }
.modulo-card[data-accent="slate"] .modulo-card-icon { background: rgba(100,116,139,.12); color: #475569; }

.modulo-card-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .22rem .55rem;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(31,128,166,.06);
  border: 1px solid rgba(31,128,166,.08);
}
.modulo-card--highlight {
  border-color: rgba(31,128,166,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(31,128,166,.04));
}

.modulo-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: .5rem;
  line-height: 1.25;
}
.modulo-card-text {
  flex: 1;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 0;
}
.modulo-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand-1);
  text-decoration: none;
  transition: gap .25s ease, color .25s ease;
}
.modulo-card-link i { transition: transform .25s ease; }
.modulo-card-link:hover {
  color: var(--brand-2);
  gap: .6rem;
}
.modulo-card-link:hover i { transform: translateX(3px); }

.modulos-cta .btn-lg {
  border-radius: 999px;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .modulo-card,
  .modulos-filter,
  .modulo-card-link,
  .modulo-card-link i { transition: none; }
  .modulo-card:not(.is-filtered-out):hover,
  .modulo-card:not(.is-filtered-out):focus-within { transform: none; }
}

/* ── Seção Integrações (index) ── */
.integracoes-section {
  position: relative;
  background: #ffffff;
}
.integracoes-section .section-lead { max-width: 42ch; }

.integracoes-hub {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.integracoes-hub-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.integracoes-hub-lines line {
  stroke: rgba(31,128,166,.14);
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke .35s ease, stroke-width .35s ease, opacity .35s ease;
}
.integracoes-hub-lines line.is-active {
  stroke: var(--brand-1);
  stroke-width: 2.5;
  stroke-dasharray: 7 5;
  animation: integracao-flow 1.1s linear infinite;
}
@keyframes integracao-flow {
  to { stroke-dashoffset: -24; }
}

.integracoes-hub-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(31,128,166,.10);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.integracoes-hub-ring--1 { width: 58%; height: 58%; }
.integracoes-hub-ring--2 {
  width: 82%;
  height: 82%;
  animation: integracoes-ring-pulse 4s ease-in-out infinite;
}
@keyframes integracoes-ring-pulse {
  0%, 100% { opacity: .45; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: .9; transform: translate(-50%, -50%) scale(1.02); }
}

.integracoes-hub-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  background: linear-gradient(145deg, var(--brand-1), var(--brand-2));
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
  box-shadow: 0 16px 40px rgba(31,89,140,.28);
  z-index: 2;
}
.integracoes-hub-core i { font-size: 1.35rem; }

.integracoes-node {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(31,128,166,.14);
  color: var(--brand-2);
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(31,89,140,.08);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
  z-index: 3;
}
.integracoes-node.is-active {
  transform: scale(1.12);
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 28px rgba(31,89,140,.25);
}
.integracoes-node--ecommerce { top: 4%; left: 50%; transform: translateX(-50%); }
.integracoes-node--ecommerce.is-active { transform: translateX(-50%) scale(1.12); }
.integracoes-node--pagamentos { top: 20%; right: 6%; }
.integracoes-node--marketplaces { bottom: 20%; right: 6%; }
.integracoes-node--logistica { bottom: 4%; left: 50%; transform: translateX(-50%); }
.integracoes-node--logistica.is-active { transform: translateX(-50%) scale(1.12); }
.integracoes-node--bi { bottom: 20%; left: 6%; }
.integracoes-node--api { top: 20%; left: 6%; }

.integracoes-hub-caption {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 320px);
  margin: 0;
  padding: .55rem .85rem;
  border-radius: 12px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(31,128,166,.12);
  box-shadow: 0 8px 24px rgba(31,89,140,.08);
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
  z-index: 4;
  transition: opacity .3s ease;
}

.integracoes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .integracoes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .integracoes-grid { grid-template-columns: repeat(3, 1fr); }
}

.integracao-card {
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(31,128,166,.10);
  box-shadow: 0 6px 20px rgba(31,89,140,.04);
  cursor: default;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  outline: none;
}
.integracao-card:hover,
.integracao-card:focus-visible,
.integracao-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(31,128,166,.28);
  box-shadow: 0 18px 40px rgba(31,89,140,.10);
}
.integracao-card:focus-visible {
  outline: 2px solid rgba(31,128,166,.35);
  outline-offset: 2px;
}
.integracao-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .75rem;
  background: rgba(31,128,166,.10);
  color: var(--brand-1);
  font-size: 1.1rem;
  transition: background .3s ease, color .3s ease;
}
.integracao-card.is-active .integracao-card-icon,
.integracao-card:hover .integracao-card-icon,
.integracao-card:focus-visible .integracao-card-icon {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
}
.integracao-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: .4rem;
}
.integracao-card-text {
  font-size: .86rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: .85rem;
}
.integracao-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.integracao-tags span {
  padding: .22rem .55rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  color: var(--brand-2);
  background: #f1f6fa;
  border: 1px solid rgba(31,128,166,.08);
}
.integracao-card--api {
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(31,128,166,.04));
}

.integracoes-footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(31,128,166,.06), rgba(243,147,51,.05));
  border: 1px solid rgba(31,128,166,.12);
}
@media (min-width: 768px) {
  .integracoes-footer-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
  }
}
.integracoes-footer-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,128,166,.12);
  color: var(--brand-1);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.integracoes-footer-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  flex: 1;
}
.integracoes-footer-text strong {
  font-size: .95rem;
  color: var(--brand-2);
}
.integracoes-footer-text span {
  font-size: .84rem;
  color: var(--muted);
}
.integracoes-footer-cta .btn {
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .integracoes-hub { margin-bottom: 2.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .integracoes-hub-ring--2,
  .integracoes-hub-lines line.is-active { animation: none; }
  .integracao-card,
  .integracoes-node { transition: none; }
  .integracao-card:hover,
  .integracao-card.is-active { transform: none; }
}

.icon-badge { width: 44px; height: 44px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-size: 20px; }

.cta-strip { background: var(--accent); }

/* ── CTA Banner moderno (index) ── */
.cta-banner {
  background: linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.cta-banner-inner {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand-1) 52%, #1a6d8c 100%);
  color: #fff;
  box-shadow: 0 24px 56px rgba(31,89,140,.22);
}
@media (min-width: 992px) {
  .cta-banner-inner { padding: 2.5rem 2.75rem; }
}
.cta-banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  pointer-events: none;
}
.cta-banner-shine {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.12) 50%, transparent 60%);
  transform: rotate(8deg);
  animation: cta-shine 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cta-shine {
  0%, 100% { transform: translateX(-20%) rotate(8deg); opacity: 0; }
  45% { opacity: 1; }
  70% { transform: translateX(180%) rotate(8deg); opacity: 0; }
}

.cta-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.cta-banner-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.25);
}
.cta-banner-title {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #fff;
}
.cta-banner-text {
  font-size: .98rem;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
  max-width: 52ch;
}
.cta-banner-features {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.25rem;
}
.cta-banner-features li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .84rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}
.cta-banner-features i {
  color: #86efac;
  font-size: 1rem;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1.15rem;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.cta-banner-btn-primary {
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cta-banner-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,.22);
  color: #111;
}
.btn-cta-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.btn-cta-glass:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.42);
  color: #fff;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .cta-banner-shine { animation: none; display: none; }
  .cta-banner-btn-primary:hover,
  .btn-cta-glass:hover { transform: none; }
}

/* ── Seção Planos (index + planos.html) ── */
.planos-section {
  position: relative;
  background:
    linear-gradient(180deg, #f1f6fa 0%, #f8fbfd 40%, #ffffff 100%);
  overflow: hidden;
}
.planos-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(31,128,166,.10), transparent 68%);
  pointer-events: none;
}
.planos-section .container { position: relative; z-index: 1; }
.planos-header { max-width: 640px; }

.plano-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.15rem;
  border-radius: 20px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(31,128,166,.10);
  box-shadow: 0 10px 30px rgba(31,89,140,.05);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), border-color .3s ease, box-shadow .3s ease;
}
.plano-card:hover,
.plano-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(31,128,166,.24);
  box-shadow: 0 22px 48px rgba(31,89,140,.12);
}
.plano-card--featured {
  border-color: rgba(31,128,166,.28);
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(31,128,166,.04) 100%);
  box-shadow: 0 16px 40px rgba(31,89,140,.10);
}
.plano-card--featured:hover,
.plano-card--featured:focus-within {
  box-shadow: 0 24px 52px rgba(31,89,140,.16);
}
.plano-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(31,89,140,.2);
}
.plano-card-header {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(31,128,166,.10);
}
.plano-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: .35rem;
  line-height: 1.25;
}
.plano-card--featured .plano-card-name { padding-right: 5.5rem; }
.plano-card-desc {
  font-size: .82rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: .75rem;
}
.plano-card-price-value {
  display: block;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--brand-2);
}
.plano-card-features {
  flex: 1;
  margin: 0 0 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.plano-card-features li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .86rem;
  line-height: 1.45;
  color: var(--text-color);
}
.plano-card-features i {
  color: var(--brand-1);
  font-size: .95rem;
  margin-top: .1rem;
  flex-shrink: 0;
}
.plano-card-footer { margin-top: auto; }
.plano-card-footer .btn {
  border-radius: 999px;
  font-weight: 600;
  padding: .65rem 1rem;
}
.plano-card--featured .plano-card-footer .btn-accent {
  box-shadow: 0 10px 24px rgba(243,147,51,.28);
}

.planos-notes {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(31,128,166,.10);
}
@media (min-width: 576px) {
  .planos-notes { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .planos-notes { grid-template-columns: repeat(4, 1fr); }
}
.planos-note {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand-2);
}
.planos-note i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,128,166,.10);
  color: var(--brand-1);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .plano-card { transition: none; }
  .plano-card:hover,
  .plano-card:focus-within { transform: none; }
}

.pricing-card { background: #fff; border-radius: 16px; border: 1px solid #eef1f4; overflow: hidden; }
.pricing-card .pricing-header { background: linear-gradient(180deg, #ffffff, #f7f9fc); padding: 22px; border-bottom: 1px solid #eef1f4; }
.pricing-card .price { font-weight: 700; font-size: 28px; color: var(--brand-2); }
.pricing-card .currency { font-size: 16px; margin-right: 4px; vertical-align: super; }
.pricing-card .period { font-size: 14px; color: var(--muted); margin-left: 4px; font-weight: 400; }
.pricing-card .badge-featured { position: absolute; right: 12px; top: 12px; background: var(--brand-1); color: #fff; padding: 4px 10px; border-radius: 999px; font-size: 12px; }
.pricing-card.featured { border-color: var(--brand-1); box-shadow: 0 0 0 3px rgba(31,128,166,.12); }
.pricing-card.featured .pricing-header { background: linear-gradient(180deg, rgba(31,128,166,.06), #fff); }
.pricing-card li { padding: 6px 0; }

/* ── Seção Depoimentos (index) ── */
.depoimentos-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.depoimentos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(243,147,51,.07), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 100%, rgba(31,128,166,.08), transparent 55%);
  pointer-events: none;
}
.depoimentos-section .container { position: relative; z-index: 1; }
.depoimentos-header { max-width: 620px; }

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 992px) {
  .depoimentos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    align-items: center;
  }
  .depoimento-card--featured {
    transform: scale(1.04);
    z-index: 2;
  }
  .depoimento-card--featured.is-active {
    transform: scale(1.06);
  }
}

.depoimento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem 1.25rem 1.15rem;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(31,128,166,.10);
  box-shadow: 0 10px 28px rgba(31,89,140,.05);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), border-color .35s ease, box-shadow .35s ease;
  outline: none;
}
.depoimento-card:hover,
.depoimento-card:focus-visible,
.depoimento-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(31,128,166,.24);
  box-shadow: 0 22px 48px rgba(31,89,140,.11);
}
@media (min-width: 992px) {
  .depoimento-card--featured:hover,
  .depoimento-card--featured:focus-visible,
  .depoimento-card--featured.is-active {
    transform: translateY(-6px) scale(1.06);
  }
}
.depoimento-card:focus-visible {
  outline: 2px solid rgba(31,128,166,.3);
  outline-offset: 3px;
}
.depoimento-card--featured {
  border-color: rgba(31,128,166,.2);
  background: linear-gradient(165deg, rgba(255,255,255,.98) 0%, rgba(31,128,166,.05) 100%);
  box-shadow: 0 14px 36px rgba(31,89,140,.09);
}
.depoimento-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .85rem;
}
.depoimento-stars {
  display: inline-flex;
  gap: .15rem;
  color: #f59e0b;
  font-size: .82rem;
}
.depoimento-quote-icon {
  font-size: 1.6rem;
  color: rgba(31,128,166,.18);
}
.depoimento-text {
  flex: 1;
  margin: 0 0 1.15rem;
  font-size: .96rem;
  line-height: 1.65;
  color: var(--text-color);
  font-style: normal;
}
.depoimento-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
}
.depoimento-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  box-shadow: 0 0 0 3px rgba(31,128,166,.12);
  flex-shrink: 0;
}
.depoimento-meta strong {
  display: block;
  font-size: .9rem;
  color: var(--brand-2);
  line-height: 1.2;
}
.depoimento-meta span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  margin-top: .1rem;
}
.depoimento-tag {
  align-self: flex-start;
  padding: .28rem .6rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--brand-2);
  background: rgba(31,128,166,.08);
  border: 1px solid rgba(31,128,166,.12);
}
.depoimentos-disclaimer {
  font-size: .78rem;
  color: var(--muted);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .depoimento-card,
  .depoimento-card--featured { transition: none; transform: none !important; }
  .depoimento-card:hover,
  .depoimento-card.is-active { transform: none; }
}

.testimonial { border: 1px solid #eef1f4; border-radius: 16px; padding: 22px; background: #fff; }
.testimonial p { color: var(--text-color); font-style: italic; }
.avatar { width: 36px; height: 36px; border-radius: 999px; background: var(--brand-1); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }

.contact-card a.btn { min-width: 240px; }
.contact-link { color: var(--brand-2); text-decoration: none; }
.contact-link:hover { text-decoration: underline; }

.site-footer {
  background: #0b1220;
  color: #cbd5e1;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 10% 0%, rgba(31,128,166,.14), transparent 60%),
    radial-gradient(ellipse 45% 35% at 95% 100%, rgba(243,147,51,.08), transparent 55%);
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }

.site-footer--modern .footer-cta-bar {
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(31,128,166,.12) 0%, rgba(11,18,32,0) 100%);
}
.site-footer--modern .footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 0;
}
@media (min-width: 768px) {
  .site-footer--modern .footer-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-cta-text strong {
  display: block;
  font-size: 1.02rem;
  color: #f8fafc;
  margin-bottom: .2rem;
}
.footer-cta-text span {
  font-size: .86rem;
  color: #94a3b8;
}
.footer-cta-btn {
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(243,147,51,.22);
}

.site-footer--modern .footer-main {
  padding: 3rem 0 2.25rem;
}
.site-footer .footer-logo {
  width: 148px;
  height: auto;
  filter: brightness(1.05);
}
.site-footer .footer-title {
  color: #f8fafc;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: .55rem;
}
.site-footer .footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-1), var(--accent));
}
.site-footer .footer-text {
  color: #94a3b8;
  line-height: 1.7;
  max-width: 42ch;
  font-size: .9rem;
}
.btn-footer-outline {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: #e2e8f0;
  font-weight: 600;
}
.btn-footer-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.34);
  color: #fff;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li + li {
  margin-top: .35rem;
}
.site-footer .footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .42rem 0;
  color: #cbd5e1;
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s ease, transform .2s ease;
}
.site-footer .footer-links a i {
  font-size: .72rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s ease, transform .2s ease;
  color: var(--accent);
}
.site-footer .footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}
.site-footer .footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.site-footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-contact-card {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem .8rem;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  color: inherit;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.footer-contact-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(31,128,166,.28);
  transform: translateY(-2px);
  color: inherit;
}
.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,128,166,.18);
  color: #7dd3fc;
  flex-shrink: 0;
}
.footer-contact-icon--whatsapp {
  background: rgba(37,211,102,.15);
  color: #4ade80;
}
.footer-contact-body {
  display: flex;
  flex-direction: column;
  gap: .05rem;
  min-width: 0;
}
.footer-contact-body strong {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #94a3b8;
}
.footer-contact-body span {
  font-size: .82rem;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(0,0,0,.18);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1rem 0 1.15rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-copy {
  font-size: .82rem;
  color: #94a3b8;
}
.footer-seo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem 1rem;
}
.footer-seo-links a {
  font-size: .8rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-seo-links a:hover {
  color: #e2e8f0;
}

.solucoes-landings-card {
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}
.solucoes-landings-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .85rem;
  color: var(--brand-2, #1F80A6);
}
.solucoes-landings-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.solucoes-landings-list a {
  font-size: .9rem;
  color: #475569;
  text-decoration: none;
  transition: color .2s ease;
}
.solucoes-landings-list a:hover {
  color: var(--brand-2, #1F80A6);
}

.site-footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color .25s ease;
}
.site-footer a:hover {
  color: #ffffff;
  text-decoration: none;
}
.site-footer .footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.whatsapp-fab { position: fixed; right: 18px; bottom: 18px; width: 56px; height: 56px; border-radius: 999px; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 10px 20px rgba(0,0,0,.15); z-index: 1080; }
.whatsapp-fab:hover { filter: brightness(0.95); color: #fff; }

/* Navbar link hover */
.navbar .nav-link:hover { color: var(--brand-2); }

/* Utilities */
.py-lg-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

/* Reveal animations: right-to-left */
.reveal { opacity: 0; transform: translate3d(48px,0,0); transition: opacity 1.4s cubic-bezier(.22,.61,.36,1), transform 1.4s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.revealed { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; transform: none; opacity: 1; }
}

/* ERP details accordion */
.erp-accordion .accordion-item { border: 1px solid #eef1f4; border-radius: 14px; overflow: hidden; background: #fff; }
.erp-accordion .accordion-item + .accordion-item { margin-top: 12px; }
.erp-accordion .accordion-button { padding: 16px 18px; font-weight: 600; }
.erp-accordion .accordion-button:not(.collapsed) { background: linear-gradient(180deg, rgba(31,128,166,.06), #ffffff); color: var(--brand-2); box-shadow: none; }
.erp-accordion .accordion-body { padding: 16px 18px; color: var(--muted); }
.erp-accordion .chev { transition: transform .2s ease; }
.erp-accordion .accordion-button:not(.collapsed) .chev { transform: rotate(180deg); }

/* Blog */
.blog-section { background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }
.blog-card {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(31, 128, 166, 0.28);
}
.blog-card-media { display: block; overflow: hidden; }
.blog-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .35s ease;
}
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body { padding: 1.15rem 1.2rem 1.25rem; }
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .75rem;
  margin-bottom: .65rem;
  font-size: .78rem;
}
.blog-card-category {
  display: inline-flex;
  align-items: center;
  padding: .2rem .65rem;
  border-radius: 999px;
  background: rgba(31, 128, 166, 0.1);
  color: var(--brand-2);
  font-weight: 600;
  text-decoration: none;
}
.blog-card-date { color: var(--muted); }
.blog-card-title {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: .55rem;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--brand-2); }
.blog-card-text {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: .85rem;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--brand-2);
  text-decoration: none;
}
.blog-card-link:hover { color: var(--brand-1); }
.blog-sidebar { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 6.5rem; }
.blog-sidebar-card {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.blog-sidebar-title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .85rem;
}
.blog-search-form { display: flex; flex-direction: column; gap: .75rem; }
.blog-search-input-wrap {
  position: relative;
}
.blog-search-input-wrap i {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}
.blog-search-input-wrap .form-control {
  padding-left: 2.35rem;
  border-radius: 12px;
}
.blog-category-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.blog-category-chip {
  display: inline-flex;
  align-items: center;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.blog-category-chip:hover,
.blog-category-chip.is-active {
  background: rgba(31, 128, 166, 0.12);
  color: var(--brand-2);
}
.blog-sidebar-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand-2);
  text-decoration: none;
}
.blog-sidebar-link:hover { color: var(--brand-1); }
.blog-empty-state {
  padding: 1.25rem 1rem;
  border-radius: 14px;
  background: rgba(31, 128, 166, 0.08);
  color: var(--brand-2);
  text-align: center;
  font-weight: 500;
}
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1rem;
  color: var(--muted);
  font-size: .88rem;
}
.blog-post-meta a { color: var(--brand-2); text-decoration: none; }
.blog-post-meta a:hover { text-decoration: underline; }
.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  margin-bottom: .85rem;
  font-size: .84rem;
  color: var(--muted);
}
.blog-breadcrumb a { color: var(--brand-2); text-decoration: none; }
.blog-breadcrumb a:hover { text-decoration: underline; }
.blog-cover img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.blog-article-layout .seo-prose img { max-width: 100%; height: auto; border-radius: 12px; }
.blog-author-card {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.blog-author-card h2 { font-size: .95rem; font-weight: 700; margin-bottom: .65rem; }
.blog-tag-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: .8rem;
  text-decoration: none;
}
.blog-tag:hover { background: rgba(31, 128, 166, 0.12); color: var(--brand-2); }

/* Blog — página do artigo */
.blog-post-page { background: linear-gradient(180deg, #f8fafc 0%, #ffffff 28rem); }
.blog-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1200;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  box-shadow: 0 0 12px rgba(31, 128, 166, 0.35);
  transition: width .12s linear;
}
.blog-post-meta--modern { gap: .55rem .7rem; }
.blog-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.22);
  font-size: .8rem;
}
.blog-meta-chip a { color: var(--brand-2); text-decoration: none; }
.blog-meta-chip a:hover { text-decoration: underline; }
.blog-cover--featured .blog-cover-figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}
.blog-cover--featured img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}
.blog-post-shell { position: relative; }
.blog-article-card {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 22px;
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.blog-article-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.15rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.blog-article-toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  color: var(--muted);
  font-size: .84rem;
}
.blog-article-toolbar-meta span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.blog-article-content { font-size: 1.02rem; line-height: 1.8; }
.blog-article-content h2,
.blog-article-content h3 {
  scroll-margin-top: 7rem;
  margin-top: 2rem;
}
.blog-article-content h2 { font-size: 1.45rem; }
.blog-article-content h3 { font-size: 1.15rem; }
.blog-article-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--brand-2);
  font-weight: 600;
  text-decoration: none;
  font-size: .9rem;
}
.blog-back-link:hover { color: var(--brand-1); }
.blog-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 6.5rem;
}
.blog-sidebar-card {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.blog-sidebar-title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.blog-sidebar-text {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 1rem;
}
.blog-sidebar-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem .9rem;
  border-radius: 12px;
  background: rgba(31, 128, 166, 0.08);
  color: var(--brand-2);
  font-weight: 600;
  text-decoration: none;
}
.blog-sidebar-category:hover { background: rgba(31, 128, 166, 0.14); color: var(--brand-1); }
.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.blog-toc-item a {
  display: block;
  padding: .45rem .65rem;
  border-radius: 10px;
  color: #475569;
  text-decoration: none;
  font-size: .86rem;
  line-height: 1.35;
  border-left: 2px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.blog-toc-item--h3 a { padding-left: 1.1rem; font-size: .82rem; }
.blog-toc-item a:hover,
.blog-toc-item a.is-active {
  background: rgba(31, 128, 166, 0.08);
  color: var(--brand-2);
  border-left-color: var(--brand-2);
}
.blog-author-card--modern {
  text-align: center;
  padding-top: 1.35rem;
}
.blog-author-avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto .85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  box-shadow: 0 10px 24px rgba(31, 128, 166, 0.25);
}
.blog-author-name { font-weight: 700; margin-bottom: .45rem; }
.blog-author-bio { color: var(--muted); font-size: .88rem; margin-bottom: .85rem; }
.blog-author-social {
  display: flex;
  justify-content: center;
  gap: .5rem;
}
.blog-author-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: #334155;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.blog-author-social a:hover {
  background: rgba(31, 128, 166, 0.12);
  color: var(--brand-2);
  transform: translateY(-2px);
}
.blog-share {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.blog-share-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}
.blog-share-actions { display: flex; gap: .45rem; }
.blog-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #fff;
  color: #334155;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.blog-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.blog-share-btn--whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }
.blog-share-btn--linkedin:hover { background: #0a66c2; border-color: #0a66c2; color: #fff; }
.blog-share-btn--copy.is-copied { background: #16a34a; border-color: #16a34a; color: #fff; }
.blog-tag-list-label {
  display: block;
  width: 100%;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: .55rem;
}
.blog-related-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.blog-related-header { margin-bottom: .25rem; }
.blog-card--related .blog-card-title { font-size: 1rem; }
@media (max-width: 991.98px) {
  .blog-post-sidebar { position: static; }
  .blog-article-card { padding: 1.15rem; }
  .blog-cover--featured img { aspect-ratio: 16 / 10; }
}
@media (max-width: 575.98px) {
  .blog-article-toolbar { flex-direction: column; align-items: flex-start; }
  .blog-article-footer { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   Páginas de conversão — assinar-plano / assinar-plano-enviado
   -------------------------------------------------------------------------- */
.assinar-plano-form-section {
  padding: 3rem 0 4.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.formulario_envio {
  background: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.formulario_envio h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: #0f172a;
  font-weight: 700;
}
.texto_planos_formulario {
  padding: 1rem 1.25rem 1rem 0;
  border-right: 1px solid rgba(148, 163, 184, 0.22);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.assinar-whatsapp-card {
  text-align: center;
  padding: 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, #f0fdf4, #ecfdf5);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.assinar-whatsapp-card p {
  color: #475569;
  margin-bottom: 1rem;
}
.btn-whatsapp-assinar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #25d366;
  border: 1px solid #21ba58;
  color: #fff;
  padding: .85rem 1.35rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: .75rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp-assinar:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-assinar img {
  width: 20px;
  height: 20px;
}
#meuFormulario { padding-left: .25rem; }
#meuFormulario .form-group { margin-bottom: .85rem; }
#meuFormulario .form-group label {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: .4rem;
  display: block;
  font-size: .94rem;
}
#meuFormulario .form-control {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid #cbd5e1;
  border-radius: .7rem;
  min-height: 46px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
#meuFormulario .form-control:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(31, 128, 166, 0.14);
  outline: none;
}
#meuFormulario .btn-primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-1));
  border: none;
  color: #fff;
  padding: .8rem 2rem;
  font-weight: 600;
  border-radius: .75rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
#meuFormulario .btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(19, 108, 162, 0.28);
}
#submitBtn[disabled] {
  opacity: .6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.valor_assinatura {
  font-size: 1.05rem;
  color: #16a34a;
  margin: .5rem 0 1rem;
  text-align: right;
  font-weight: 600;
}
.planoC {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.1rem;
  padding: .75rem;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: .75rem;
}
.planoC img { max-width: 60px; border-radius: .5rem; }
.planoC input {
  width: 120px;
  padding: .55rem .65rem;
  border: 1px solid #cbd5e1;
  border-radius: .6rem;
}
.formulario_envio .error {
  color: #dc3545;
  font-size: .85rem;
  margin-top: .35rem;
}
.formulario_envio .hidden { display: none !important; }
.confirmacao-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  text-align: center;
}
.confirmacao-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 2.5rem 2rem;
  max-width: 640px;
  margin: 0 auto;
}
.icone-confirmacao {
  font-size: 3.5rem;
  color: #22c55e;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .texto_planos_formulario {
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    padding: 0 0 1.25rem;
    margin-bottom: 1.25rem;
  }
  #meuFormulario { padding-left: 0; }
  .formulario_envio { padding: 1.25rem; }
  .planoC { flex-wrap: wrap; }
  .planoC input { width: 100%; }
}

