/* Tipografia e cores */
:root {
  --primary: #218DA6;
  --dark: #0D0D0D;
  --accent: #ffb703;
  --white: #FFFFFF;
  --muted: #6c757d;
}

html, body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  color: #1f2937;
}

.text-accent { color: var(--accent) !important; }
.bg-accent-soft { background: rgba(255, 183, 3, 0.15) !important; }
.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
  border-width: 1px;
  font-weight: 600;
  border-radius: .5rem;
  transition: background-color .2s ease, filter .2s ease, box-shadow .2s ease;
}
.navbar .btn-accent { background-color: var(--accent) !important; border-color: var(--accent) !important; color: var(--dark) !important; }
.btn-accent:hover, .btn-accent:active {
  background-color: var(--accent);
  border-color: var(--accent);
  filter: brightness(0.95);
  color: var(--dark);
}
.btn-accent:focus, .btn-accent:focus-visible {
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(255,183,3,0.35);
}

/* Navbar */
.bg-dark-gradient {
  background: linear-gradient(180deg, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.85) 100%);
  backdrop-filter: blur(6px);
}
.navbar .nav-link { font-size: .95rem; padding: .5rem .75rem; }
.navbar .btn { font-size: .95rem; padding: .5rem .9rem; }
.navbar-brand .brand-dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,183,3,0.15);
}

/* Navbar pro (home) */
.navbar-pro {
  --nav-h: 4.25rem;
  min-height: var(--nav-h);
  padding-top: .65rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: min-height .25s ease, padding .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.navbar-pro.is-scrolled {
  --nav-h: 3.75rem;
  padding-top: .45rem;
  padding-bottom: .45rem;
  background: rgba(13, 13, 13, 0.92) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(33, 141, 166, 0.25);
}
.navbar-brand-pro {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 1rem;
}
.navbar-brand-pro .brand-logo {
  height: 32px;
  width: auto;
  transition: height .25s ease;
}
.navbar-pro.is-scrolled .brand-logo {
  height: 28px;
}
.navbar-brand-pro .brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: .65rem;
}
.navbar-brand-pro .brand-name {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.navbar-brand-pro .brand-tagline {
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}
.navbar-nav-pro {
  gap: .15rem;
}
.navbar-nav-pro .nav-link {
  position: relative;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78) !important;
  padding: .45rem .85rem !important;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.navbar-nav-pro .nav-link:hover,
.navbar-nav-pro .nav-link:focus-visible {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}
.navbar-nav-pro .nav-link.active {
  color: #fff !important;
  background: rgba(33, 141, 166, 0.22);
  box-shadow: inset 0 0 0 1px rgba(33, 141, 166, 0.35);
}
.nav-item-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}
@media (min-width: 992px) {
  .nav-item-cta {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    width: auto;
    margin-left: .75rem !important;
    padding-left: .75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.btn-nav-outline {
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  font-weight: 600;
  font-size: .875rem;
  padding: .45rem 1rem;
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-nav-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-nav-primary {
  font-size: .875rem;
  font-weight: 600;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(255, 183, 3, 0.25);
}
.btn-nav-primary:hover {
  box-shadow: 0 6px 22px rgba(255, 183, 3, 0.35);
}
.navbar-toggler-pro {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: .5rem;
  padding: .45rem .55rem;
  gap: .25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.navbar-toggler-pro:focus {
  box-shadow: 0 0 0 .2rem rgba(33, 141, 166, 0.45);
}
.navbar-toggler-pro .navbar-toggler-bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.navbar-toggler-pro[aria-expanded="true"] .navbar-toggler-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navbar-toggler-pro[aria-expanded="true"] .navbar-toggler-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggler-pro[aria-expanded="true"] .navbar-toggler-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (max-width: 991.98px) {
  .navbar-brand-pro .brand-copy {
    display: none;
  }
  .navbar-nav-pro {
    padding: .75rem 0 .25rem;
  }
  .nav-item-cta .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  .navbar-pro .navbar-collapse {
    margin-top: .65rem;
    padding: .75rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
  }
}
@media (min-width: 992px) {
  .nav-item-cta .btn-nav-primary {
    white-space: nowrap;
  }
}

/* Hero */
.pt-8 { padding-top: 7rem !important; }
.pb-6 { padding-bottom: 4rem !important; }
.pt-6 { padding-top: 4rem !important; }
.py-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.hero-section {
  position: relative;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(33,141,166,0.25), transparent 60%),
              radial-gradient(1000px 500px at 80% 0%, rgba(255,183,3,0.12), transparent 60%),
              linear-gradient(180deg, #0F1113 0%, #0D0D0D 60%, #0D0D0D 100%);
}
.hero-section { color: #FFFFFF; }
.hero-section .card { color: #FFFFFF; }
.hero-section .text-secondary { color: rgba(255,255,255,0.85) !important; }

/* Hero home */
.hero-pro {
  padding-top: clamp(6.5rem, 12vh, 8.5rem);
  padding-bottom: clamp(3.5rem, 8vh, 5.5rem);
  overflow: hidden;
}
.hero-subpage {
  padding-top: clamp(6.5rem, 11vh, 8rem);
  padding-bottom: clamp(2.75rem, 6vh, 4rem);
}
.hero-subpage .hero-title {
  max-width: 18ch;
}
.hero-subpage .hero-lead {
  max-width: 42rem;
}
/* Hero landing pages (SEO) */
.hero-landing {
  padding-bottom: clamp(3.25rem, 7vh, 5rem);
}
.hero-landing .hero-title {
  max-width: none;
  font-size: clamp(1.9rem, 4.5vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.hero-landing .hero-lead {
  max-width: 38rem;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.hero-landing-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .45rem;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}
.hero-landing-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color .15s ease;
}
.hero-landing-breadcrumb a:hover {
  color: #fff;
}
.hero-landing-breadcrumb-sep {
  opacity: 0.45;
  user-select: none;
}
.hero-landing-breadcrumb-current {
  color: rgba(255, 255, 255, 0.62);
}
.hero-landing-aside {
  width: 100%;
  max-width: 400px;
}
@media (min-width: 992px) {
  .hero-landing-aside {
    margin-left: auto;
  }
}
.hero-landing-card {
  border-radius: 18px;
  padding: 1.35rem 1.35rem 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-landing-card-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.hero-landing-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}
.hero-landing-checks {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.hero-landing-checks li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}
.hero-landing-checks li i {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--primary);
  margin-top: .05rem;
}
.hero-landing-card-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.28);
}
.hero-landing-card-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
@media (max-width: 991.98px) {
  .hero-landing-aside {
    max-width: none;
    margin-top: .5rem;
  }
  .hero-landing .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
}
.section-orbit-pro .section-lead {
  max-width: 36rem;
  margin-inline: auto;
}
.orbit-desc-pro {
  border-radius: 16px;
  padding: 1.15rem 1.35rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.orbit-desc-pro h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.section-process .process-card-pro {
  height: 100%;
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.section-process .process-card-pro:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  border-color: rgba(33, 141, 166, 0.25);
}
.section-process .process-card-pro-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--primary);
  background: rgba(33, 141, 166, 0.1);
  margin-bottom: 1rem;
}
.section-process .process-card-pro-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.section-process .process-card-pro p {
  margin: 0;
  font-size: .875rem;
  line-height: 1.55;
  color: #64748b;
}
.solutions-sector .module-card-pro {
  height: 100%;
}

.contact-panel {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.contact-panel-muted {
  background: #f8fafc;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.landing-panel {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.landing-link-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  color: inherit;
}
.landing-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  border-color: rgba(33, 141, 166, 0.25);
}
.section-landing-related .section-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
.hero-pro-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-pro-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
  opacity: 0.45;
}
.hero-pro-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.hero-pro-orb-1 {
  width: 420px;
  height: 420px;
  top: -8%;
  left: -6%;
  background: rgba(33, 141, 166, 0.35);
}
.hero-pro-orb-2 {
  width: 360px;
  height: 360px;
  top: 10%;
  right: -8%;
  background: rgba(255, 183, 3, 0.18);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: .35rem .85rem .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1.25rem;
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.2);
  animation: hero-pulse 2.4s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}
.hero-title {
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 14em;
}
.hero-title-accent {
  background: linear-gradient(90deg, #fff 0%, #7dd3ea 45%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38rem;
}
.hero-btn-primary {
  box-shadow: 0 8px 28px rgba(255, 183, 3, 0.28);
}
.hero-btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.hero-note {
  color: rgba(255, 255, 255, 0.55);
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  padding: .4rem .75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-trust-item i {
  color: var(--accent);
  font-size: 1rem;
}
.hero-visual {
  position: relative;
  max-width: 540px;
  margin-inline: auto;
}
.hero-mock {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 10, 12, 0.85);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(33, 141, 166, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
  transition: transform .45s ease;
}
.hero-visual:hover .hero-mock {
  transform: perspective(1200px) rotateY(-2deg) rotateX(2deg);
}
.hero-mock-chrome {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .75rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.hero-mock-dot:nth-child(1) { background: #ff5f57; }
.hero-mock-dot:nth-child(2) { background: #febc2e; }
.hero-mock-dot:nth-child(3) { background: #28c840; }
.hero-mock-url {
  margin-left: .5rem;
  font-size: .68rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-mock-body {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #12151a, #0a0c0f);
}
.hero-mock-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-mock-ui {
  position: absolute;
  inset: 0;
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.15) 0%, rgba(13, 13, 13, 0.75) 100%);
}
.hero-mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.hero-metric {
  padding: .55rem .6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}
.hero-metric-accent {
  border-color: rgba(33, 141, 166, 0.45);
  background: rgba(33, 141, 166, 0.12);
}
.hero-metric-label {
  display: block;
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
}
.hero-metric-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero-metric-trend {
  display: block;
  font-size: .58rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: .15rem;
}
.hero-mock-bars {
  display: flex;
  align-items: flex-end;
  gap: .35rem;
  height: 72px;
  padding: .5rem .65rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-mock-bars span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, rgba(33, 141, 166, 0.95), rgba(33, 141, 166, 0.35));
  opacity: 0.9;
}
.hero-mock-bars span:nth-child(even) {
  background: linear-gradient(180deg, rgba(255, 183, 3, 0.95), rgba(255, 183, 3, 0.35));
}
.hero-float {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .65rem .85rem;
  border-radius: 12px;
  background: rgba(13, 13, 13, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 200px;
  animation: hero-float 5s ease-in-out infinite;
}
.hero-float i {
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: .1rem;
}
.hero-float strong {
  display: block;
  color: #fff;
  font-size: .82rem;
}
.hero-float-a {
  top: 8%;
  right: -4%;
  animation-delay: 0s;
}
.hero-float-b {
  bottom: 10%;
  left: -6%;
  animation-delay: 1.2s;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 991.98px) {
  .hero-title { max-width: none; }
  .hero-mock {
    transform: none;
  }
  .hero-visual:hover .hero-mock {
    transform: none;
  }
  .hero-float-a { right: 0; }
  .hero-float-b { left: 0; }
  .hero-mock-metrics {
    grid-template-columns: 1fr;
  }
  .hero-metric-value { font-size: 1rem; }
}
@media (max-width: 575.98px) {
  .hero-trust {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-trust-item { justify-content: flex-start; }
  .hero-actions .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

.glass-card {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-shape {
  position: absolute; inset: auto 0 0 0; height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  pointer-events: none;
}

/* Cards/Features */
.feature-card {
  background: #fff; border: 1px solid rgba(13,13,13,0.06); border-radius: 12px;
}
.feature-card:hover { box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.icon-lg { font-size: 2rem; }

/* Seção PCP (home) */
.section-pcp {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 45%, #fff 100%);
  border-bottom: 1px solid rgba(13, 13, 13, 0.06);
}
.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-eyebrow-primary {
  color: var(--primary);
  padding: .3rem .75rem;
  border-radius: 999px;
  background: rgba(33, 141, 166, 0.1);
}
.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #0f172a;
}
.section-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 40rem;
}
.pcp-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.pcp-pipeline::before {
  content: "";
  position: absolute;
  top: 3.1rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(33, 141, 166, 0.15), rgba(33, 141, 166, 0.45), rgba(255, 183, 3, 0.35));
  z-index: 0;
}
.pcp-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.07);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pcp-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(33, 141, 166, 0.25);
}
.pcp-step-index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(33, 141, 166, 0.45);
}
.pcp-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--primary);
  background: rgba(33, 141, 166, 0.1);
  margin-bottom: 1rem;
}
.pcp-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #0f172a;
}
.pcp-step-text {
  font-size: .875rem;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 1rem;
  flex: 1;
}
.pcp-step-tag {
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
  padding: .25rem .55rem;
  border-radius: 6px;
  background: #f1f5f9;
}
.pcp-bridge {
  margin-top: 1.75rem;
}
.pcp-bridge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(33, 141, 166, 0.08), rgba(255, 183, 3, 0.08));
  border: 1px dashed rgba(33, 141, 166, 0.25);
}
.pcp-bridge-copy {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
  color: #64748b;
  min-width: 0;
}
.pcp-bridge-copy i {
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}
.pcp-bridge-copy strong {
  display: block;
  color: #0f172a;
  font-size: .88rem;
}
.pcp-bridge-copy-end i {
  color: var(--accent);
}
.pcp-bridge-track {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-width: 60px;
  max-width: 280px;
  margin-inline: auto;
}
.pcp-bridge-track span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(33, 141, 166, 0.25);
  animation: pcp-bridge-pulse 1.8s ease-in-out infinite;
}
.pcp-bridge-track span:nth-child(2) { animation-delay: .15s; }
.pcp-bridge-track span:nth-child(3) { animation-delay: .3s; }
.pcp-bridge-track span:nth-child(4) { animation-delay: .45s; }
.pcp-bridge-track span:nth-child(5) { animation-delay: .6s; }
@keyframes pcp-bridge-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.6); background: rgba(33, 141, 166, 0.65); }
}
@media (max-width: 991.98px) {
  .pcp-pipeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .pcp-pipeline::before {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .pcp-pipeline {
    grid-template-columns: 1fr;
  }
  .pcp-bridge-inner {
    flex-direction: column;
    text-align: center;
  }
  .pcp-bridge-copy {
    justify-content: center;
  }
  .pcp-bridge-track {
    width: 100%;
    max-width: none;
  }
}

/* Módulos */
.module-card {
  background: #fff; border: 1px solid rgba(13,13,13,0.06); border-radius: 14px; padding: 1.25rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.module-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.08); }
.module-card h5 { margin-top: .75rem; margin-bottom: .5rem; }
.module-card ul { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.module-icon { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; }

/* Módulos (home) */
.section-modulos {
  background: #fff;
}
.module-feature {
  margin-bottom: 1.25rem;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(120deg, #0d3d47 0%, var(--primary) 45%, #13677a 100%);
  box-shadow: 0 16px 48px rgba(33, 141, 166, 0.22);
}
.module-feature-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem;
  color: #fff;
}
.module-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
  flex-shrink: 0;
}
.module-feature-copy {
  flex: 1 1 220px;
  min-width: 0;
}
.module-feature-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: .35rem;
}
.module-feature-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: .35rem;
}
.module-feature-text {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42rem;
}
.module-feature-cta {
  font-weight: 600;
  flex-shrink: 0;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.module-card-pro {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.07);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.module-card-pro:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(33, 141, 166, 0.22);
}
.module-card-pro-top {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .65rem;
}
.module-card-pro-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: var(--primary);
  background: rgba(33, 141, 166, 0.1);
  flex-shrink: 0;
}
.module-card-pro-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: .15rem 0 0;
  color: #0f172a;
  line-height: 1.25;
}
.module-card-pro-desc {
  font-size: .875rem;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 1rem;
}
.module-card-pro-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: auto;
  display: grid;
  gap: .35rem;
}
.module-card-pro-list li {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .82rem;
  color: #475569;
  font-weight: 500;
}
.module-card-pro-list i {
  color: var(--primary);
  margin-top: .1rem;
  flex-shrink: 0;
}
.modules-footnote a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.modules-footnote a:hover {
  text-decoration: underline;
}
@media (max-width: 991.98px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .module-feature-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .module-feature-cta {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
}

/* Integrações */
.integrations-card { background: #fff; border: 1px dashed rgba(13,13,13,0.12); border-radius: 16px; }
.logo-box { border: 1px solid rgba(13,13,13,0.1); border-radius: 12px; padding: 1.25rem; color: #111; background: linear-gradient(180deg,#fff, #f9fafb); font-weight: 600; }

/* Integrações (home) */
.section-integracoes {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-top: 1px solid rgba(13, 13, 13, 0.06);
}
.integrations-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
}
.integrations-stack {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.integration-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.07);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.integration-item:hover {
  border-color: rgba(33, 141, 166, 0.25);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.integration-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--primary);
  background: rgba(33, 141, 166, 0.1);
  flex-shrink: 0;
}
.integration-item-icon-wa {
  color: #128c7e;
  background: rgba(37, 211, 102, 0.12);
}
.integration-item-title {
  font-size: .95rem;
  font-weight: 700;
  margin: 0 0 .25rem;
  color: #0f172a;
}
.integration-item-text {
  margin: 0;
  font-size: .84rem;
  line-height: 1.55;
  color: #64748b;
}
.integrations-panel {
  padding: 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.integration-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
}
.integration-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .85rem .5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #fff, #f8fafc);
  font-size: .78rem;
  font-weight: 600;
  color: #334155;
  text-align: center;
}
.integration-tile i {
  font-size: 1.35rem;
  color: var(--primary);
}
.integration-tile-wa i {
  color: #25d366;
}
.integration-tile-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  gap: .5rem;
  padding: .75rem 1rem;
}
.integration-code {
  border-radius: 12px;
  overflow: hidden;
  background: #0f1419;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.integration-code-head {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .75rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.integration-code-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.integration-code-dot:nth-child(1) { background: #ff5f57; }
.integration-code-dot:nth-child(2) { background: #febc2e; }
.integration-code-dot:nth-child(3) { background: #28c840; }
.integration-code-label {
  margin-left: .35rem;
  font-size: .68rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: ui-monospace, monospace;
}
.integration-code-body {
  margin: 0;
  padding: 1rem 1.1rem;
  font-size: .78rem;
  line-height: 1.55;
  color: #cbd5e1;
  overflow-x: auto;
}
.integration-code-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.integration-panel-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.integration-panel-note a:hover {
  text-decoration: underline;
}
@media (max-width: 991.98px) {
  .integrations-layout {
    grid-template-columns: 1fr;
  }
}

/* Fluxo PCP */
.stepper { list-style: none; margin: 0; padding: 0; position: relative; }
.stepper::before { content: ""; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: rgba(13,13,13,0.1); }
.stepper li { position: relative; padding-left: 44px; margin-bottom: .5rem; }
.stepper .step { width: 100%; text-align: left; background: #fff; border: 1px solid rgba(13,13,13,0.08); border-radius: 12px; padding: .6rem .8rem; display: flex; align-items: center; gap: .6rem; transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease; }
.stepper .step i { color: var(--primary); }
.stepper .step:hover { transform: translateX(2px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.stepper .step.is-active { border-color: rgba(33,141,166,0.5); box-shadow: 0 10px 24px rgba(33,141,166,0.12); }
.stepper li::before { content: ""; position: absolute; left: 9px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 2px solid var(--primary); box-shadow: 0 0 0 3px rgba(33,141,166,0.12); }
.stepper li .step.is-active + .dummy, .stepper li .step.is-active { position: relative; }

.flow-panels { background: #fff; border: 1px solid rgba(13,13,13,0.06); border-radius: 16px; padding: 1rem; }
.flow-panel { display: none; opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease; }
.flow-panel.active { display: block; opacity: 1; transform: none; }
.flow-head .badge { font-weight: 600; }
.flow-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.flow-list li { display: flex; align-items: center; gap: .5rem; color: #334155; }
.flow-list i { color: var(--primary); }

/* Fluxo de produção (home) */
.section-fluxo {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.fluxo-shell {
  display: grid;
  grid-template-columns: minmax(280px, 36%) 1fr;
  gap: 1.25rem;
  align-items: start;
}
.fluxo-sidebar {
  padding: 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}
.fluxo-progress-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}
.fluxo-progress-name {
  font-size: .78rem;
  color: #64748b;
  font-weight: 500;
}
.fluxo-progress-track {
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}
.fluxo-progress-fill {
  display: block;
  height: 100%;
  width: 11.11%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #2bb8d4);
  transition: width .35s cubic-bezier(.2, .8, .2, 1);
}
.fluxo-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 13, 13, 0.08);
}
.fluxo-autoplay-btn {
  margin-left: auto;
  font-size: .8rem;
  text-decoration: none;
  color: #64748b;
}
.fluxo-autoplay-btn:hover {
  color: var(--primary);
}
.fluxo-detail {
  min-height: 320px;
}
.stepper-pro {
  margin-top: 1rem;
  max-height: 420px;
  overflow-y: auto;
  padding-right: .25rem;
  scrollbar-width: thin;
}
.stepper-pro::before,
.stepper-pro li::before {
  display: none;
}
.stepper-pro li {
  padding-left: 0;
}
.stepper-pro .step {
  padding: .55rem .65rem;
  gap: .5rem;
}
.stepper-pro .step-num {
  flex-shrink: 0;
  width: 1.35rem;
  font-size: .68rem;
  font-weight: 700;
  color: #94a3b8;
  text-align: center;
}
.stepper-pro .step.is-active .step-num {
  color: var(--primary);
}
.stepper-pro .step-label {
  flex: 1;
  font-size: .84rem;
  font-weight: 600;
  color: #334155;
}
.stepper-pro .step.is-active .step-label {
  color: #0f172a;
}
.stepper-pro .step i {
  font-size: 1rem;
}
.flow-panels-pro {
  min-height: 100%;
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.07);
  position: relative;
  overflow: hidden;
}
.flow-panels-pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.flow-panel-pro {
  animation: flow-panel-in .35s ease;
}
@keyframes flow-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.flow-phase {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(33, 141, 166, 0.1);
}
.flow-phase-start { background: rgba(33, 141, 166, 0.12); }
.flow-phase-floor { background: rgba(255, 183, 3, 0.15); color: #92400e; }
.flow-phase-end { background: rgba(16, 185, 129, 0.12); color: #047857; }
.flow-panel-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: .85rem 0 .5rem;
  color: #0f172a;
}
.flow-panel-lead {
  font-size: .95rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 1.25rem;
  max-width: 36rem;
}
.flow-list-pro {
  display: grid;
  gap: .55rem;
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.flow-list-pro li {
  font-size: .9rem;
  font-weight: 500;
  color: #334155;
}
@media (max-width: 991.98px) {
  .fluxo-shell {
    grid-template-columns: 1fr;
  }
  .fluxo-sidebar {
    padding: 1rem;
  }
  .stepper-pro {
    max-height: none;
    overflow: visible;
  }
  .fluxo-autoplay-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .pt-8 { padding-top: 6rem !important; }
}
@media (max-width: 767.98px) {
  /* Stepper vira carrossel horizontal */
  .stepper { display: flex; overflow-x: auto; gap: .6rem; padding: .25rem .25rem .5rem .25rem; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
  .stepper::-webkit-scrollbar { height: 6px; }
  .stepper::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }
  .stepper::before { display: none; }
  .stepper li { padding-left: 0; margin-bottom: 0; flex: 0 0 auto; }
  .stepper .step { min-width: 220px; scroll-snap-align: start; }
  .stepper-pro {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: visible;
    margin-top: 0.75rem;
  }
  .stepper-pro .step { min-width: 210px; }
  .flow-panels { margin-top: .75rem; }
  /* Colunas em 1 no footer listagem */
  .footer-section .two-col { columns: 1; }
}
@media (max-width: 575.98px) {
  /* Ajuste CTA: botões empilhados mais confortáveis */
  .cta-section .btn { width: 100%; }
  .whatsapp-float { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); }
  /* Hero: reduzir título e lead para caber melhor */
  .hero-section .display-5 { font-size: 2rem; line-height: 1.2; }
  .hero-section .lead { font-size: 1rem; }
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(900px 400px at 10% 20%, rgba(255,183,3,0.18), transparent 60%),
              linear-gradient(135deg, rgba(33,141,166,1) 0%, rgba(19,103,122,1) 45%, #0D0D0D 100%);
}
.cta-section::before {
  content: "";
  position: absolute; inset: -20% -10% auto -10%; height: 220px;
  background: radial-gradient(closest-side, rgba(255,183,3,0.22), rgba(255,183,3,0));
  filter: blur(16px);
}
.cta-section .card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: #fff;
}
.cta-section h3 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.85) !important; }
.cta-section .btn-primary {
  background-color: #fff;
  color: #0D0D0D;
  border-color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}
.cta-section .btn-primary:hover { filter: brightness(0.95); color: #0D0D0D; }
.cta-section .btn-success { box-shadow: 0 8px 18px rgba(0,0,0,0.22); }

/* CTA home */
.cta-pro .cta-pro-card {
  border-radius: 20px;
  padding: 1.75rem 1.75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.cta-pro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cta-pro-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: .65rem;
}
.cta-pro-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: .65rem;
}
.cta-pro-text {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 32rem;
}
.cta-pro-checks li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: .35rem;
}
.cta-pro-checks i {
  color: var(--accent);
}
.cta-pro-actions {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: stretch;
}
.cta-pro-btn {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  justify-content: center;
}
.cta-pro-btn-outline {
  font-weight: 600;
  color: #0d0d0d;
  border: none;
}
.cta-pro-mail {
  text-align: center;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin-top: .25rem;
}
.cta-pro-mail:hover {
  color: #fff;
}
@media (max-width: 991.98px) {
  .cta-pro-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Planos (home) */
.section-planos {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.planos-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.planos-hint[hidden] {
  display: none !important;
}
.planos-hint-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid #cbd5e1;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: planos-spin 0.7s linear infinite;
}
@keyframes planos-spin {
  to { transform: rotate(360deg); }
}
.section-planos .pricing-card {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.section-planos .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.planos-foot-item {
  padding: 1rem 1.1rem;
  height: 100%;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.07);
}
.planos-foot-item strong {
  display: block;
  font-size: .9rem;
  color: #0f172a;
  margin-bottom: .25rem;
}
.planos-foot-item span {
  font-size: .8rem;
  line-height: 1.45;
  color: #64748b;
}

/* FAQ (home) */
.section-faq {
  background: #fff;
  border-top: 1px solid rgba(13, 13, 13, 0.06);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 1.5rem;
  align-items: start;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.faq-accordion .accordion-item {
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: 14px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
}
.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: #0f172a;
  padding: 1rem 1.15rem;
  gap: .75rem;
  align-items: flex-start;
  box-shadow: none !important;
  background: #fff;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(33, 141, 166, 0.06);
}
.faq-accordion .accordion-button::after {
  margin-top: .15rem;
  flex-shrink: 0;
}
.faq-q-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(33, 141, 166, 0.1);
  color: var(--primary);
}
.faq-accordion .accordion-button:not(.collapsed) .faq-q-icon {
  background: rgba(33, 141, 166, 0.18);
}
.faq-accordion .accordion-body {
  padding: 0 1.15rem 1.1rem 4.35rem;
  font-size: .925rem;
  line-height: 1.65;
  color: #475569;
}
.faq-aside-card {
  padding: 1.35rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fafc, #fff);
  border: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
  position: sticky;
  top: 5.5rem;
}
.faq-aside-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #0f172a;
}
.faq-aside-text {
  font-size: .875rem;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 1rem;
}
.faq-quick-links {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px dashed rgba(13, 13, 13, 0.1);
}
.faq-quick-links li + li {
  margin-top: .45rem;
}
.faq-quick-links a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.faq-quick-links a:hover {
  text-decoration: underline;
}
@media (max-width: 991.98px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-aside-card {
    position: static;
  }
  .faq-accordion .accordion-body {
    padding-left: 1.15rem;
  }
}

/* Benefícios - seção chamativa */
.benefits-section {
  position: relative;
  background: radial-gradient(1000px 420px at 80% 10%, rgba(255,183,3,0.25), transparent 60%),
              linear-gradient(120deg, #0D0D0D 0%, #13677a 55%, #218DA6 100%);
  color: #fff;
}
.benefits-section .text-secondary { color: rgba(255,255,255,0.85) !important; }
.benefit-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 1rem; height: 100%; color: #fff; }
.benefit-card .icon { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,0.12); color: var(--accent); font-size: 1.25rem; }
.benefit-card h6 { margin: .75rem 0 .25rem; color: #fff; }
.benefit-card p { margin: 0; color: rgba(255,255,255,0.85); }

/* Benefícios home */
.benefits-pro {
  overflow: hidden;
}
.benefits-pro-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 380px at 15% 0%, rgba(255, 183, 3, 0.12), transparent 55%),
    radial-gradient(700px 320px at 90% 80%, rgba(33, 141, 166, 0.2), transparent 50%);
  pointer-events: none;
}
.section-eyebrow-light {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: .3rem .75rem;
  border-radius: 999px;
}
.benefits-pro-title {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
  max-width: 22rem;
}
@media (min-width: 992px) {
  .benefits-pro-title { max-width: none; }
}
.benefits-pro-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.benefit-card-pro {
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.benefit-card-pro:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 183, 3, 0.35);
  background: rgba(255, 255, 255, 0.09);
}
.benefit-card-pro-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}
.benefit-card-pro-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .45rem;
  color: #fff;
}
.benefit-card-pro p {
  margin: 0;
  font-size: .875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.benefits-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.benefits-fact {
  text-align: center;
  padding: 1rem .75rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.benefits-fact-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1.2;
}
.benefits-fact-label {
  display: block;
  margin-top: .35rem;
  font-size: .78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
.benefits-pro-cta {
  box-shadow: 0 8px 28px rgba(255, 183, 3, 0.25);
}
@media (max-width: 991.98px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefits-facts {
    grid-template-columns: 1fr;
  }
}

/* KPIs */
.kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.kpi { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 1rem; text-align: center; color: #fff; }
.kpi-value { font-weight: 700; font-size: 1.75rem; line-height: 1; }
.kpi-label { margin: .25rem 0 0; color: rgba(255,255,255,0.85); font-size: .95rem; }
@media (max-width: 991.98px) { .kpis { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575.98px) { .kpis { grid-template-columns: 1fr 1fr; } .kpi-value { font-size: 1.5rem; } }

/* Comparação de planos */
.plans-compare { background: #fff; border: 1px solid rgba(13,13,13,0.08); border-radius: 16px; overflow: hidden; }
.plans-compare .compare-controls { padding: 1rem; border-bottom: 1px dashed rgba(13,13,13,0.12); background: linear-gradient(180deg,#fff,#fafafa); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table thead th { background: rgba(33,141,166,0.08); color: #0D0D0D; font-weight: 600; padding: .85rem; border-bottom: 1px solid rgba(13,13,13,0.1); }
.compare-table tbody th { text-align: left; padding: .75rem .85rem; font-weight: 500; color: #334155; background: #fff; border-bottom: 1px dashed rgba(13,13,13,0.08); }
.compare-table td { text-align: center; padding: .75rem; border-bottom: 1px dashed rgba(13,13,13,0.08); }
.compare-table .yes { color: #16a34a; }
.compare-table .no { color: #ef4444; opacity: .7; }
.compare-table .plus { color: var(--accent); }
.compare-sticky { position: sticky; top: 64px; z-index: 1; }

@media (max-width: 991.98px) {
  .compare-table thead { display: none; }
  .compare-table, .compare-table tbody, .compare-table tr, .compare-table td, .compare-table th { display: block; width: 100%; }
  .compare-table tr { border-bottom: 1px solid rgba(13,13,13,0.06); }
  .compare-table tbody th { background: #f9fafb; }
  .compare-table td { display: grid; grid-template-columns: 1fr auto; justify-content: space-between; text-align: left; }
  .compare-table td::before { content: attr(data-col); color: #64748b; }
}
/* Footer */
.footer-section { background: #0D0D0D; }
.footer-section .two-col { columns: 2; gap: 1.25rem; }
.footer-section .two-col li { break-inside: avoid; margin-bottom: .25rem; opacity: .9; }

.footer-pro {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-cta {
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-cta-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer-heading {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: .85rem;
}
.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color .15s ease;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}
.footer-links li + li {
  margin-top: .4rem;
}
.footer-brand {
  display: inline-block;
  max-width: 100%;
  line-height: 0;
}
.footer-brand.d-inline-flex {
  display: inline-flex !important;
  align-items: center;
  max-width: min(7.0625rem, 100%);
}
/* Logo do rodapé — escala em telas estreitas (sobrescreve width/height fixos no HTML) */
.footer-section img[src*="logo.webp"] {
  display: block;
  width: min(7.0625rem, 100%);
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
  object-position: left center;
}
.footer-brand-text {
  max-width: 22rem;
  line-height: 1.55;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background .2s ease, border-color .2s ease;
}
.footer-social-btn:hover {
  color: #fff;
  background: rgba(33, 141, 166, 0.25);
  border-color: rgba(33, 141, 166, 0.4);
}
.footer-seo {
  margin-top: .5rem;
  padding: .75rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-seo-summary {
  cursor: pointer;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  list-style: none;
  user-select: none;
}
.footer-seo-summary::-webkit-details-marker {
  display: none;
}
.footer-seo-summary::before {
  content: "+ ";
  color: var(--accent);
  font-weight: 700;
}
.footer-seo[open] .footer-seo-summary::before {
  content: "− ";
}
.footer-seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .35rem .75rem;
  margin-top: .85rem;
  padding-bottom: .25rem;
}
.footer-seo-grid a {
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  line-height: 1.35;
}
.footer-seo-grid a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .footer-seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cta .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* WhatsApp Floater */
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; background: #25D366; color: #fff; font-size: 1.5rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18); z-index: 1040;
}
.whatsapp-float:hover { color: #fff; filter: brightness(0.95); }

/* Utilities */
.opacity-90 { opacity: .9; }
.opacity-85 { opacity: .85; }

/* Overrides Bootstrap */
.btn-primary { background-color: var(--primary); border-color: var(--primary); }
.btn-primary:hover { filter: brightness(1.08); }
.text-primary { color: var(--primary) !important; }
.bg-primary-subtle { background-color: rgba(33,141,166,0.12) !important; }

/* Revelar ao rolar */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition-property: opacity, transform;
  transition-duration: .7s;
  transition-timing-function: cubic-bezier(.2,.65,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Direções opcionais */
[data-reveal="left"] { transform: translateX(-18px); }
[data-reveal="right"] { transform: translateX(18px); }
[data-reveal="up"] { transform: translateY(18px); }
[data-reveal="down"] { transform: translateY(-18px); }

/* Delays utilitários */
.delay-0 { transition-delay: 0ms; }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }

/* Pricing */
.pricing-card { background: #fff; border: 1px solid rgba(13,13,13,0.08); border-radius: 16px; overflow: hidden; }
.pricing-card .pricing-header { padding: 1.25rem 1.25rem 0.75rem 1.25rem; border-bottom: 1px dashed rgba(13,13,13,0.08); background: linear-gradient(180deg,#fff, #fafafa); }
.pricing-card .pricing-body { padding: 1rem 1.25rem 1.25rem 1.25rem; }
.pricing-card.highlight { border-color: rgba(255,183,3,0.55); box-shadow: 0 12px 32px rgba(255,183,3,0.15); }

.pricing-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.pricing-list.two-col { columns: 2; gap: 1rem; }
.pricing-list li { display: flex; align-items: center; gap: .5rem; font-size: .95rem; }
.pricing-list li i { color: var(--primary); font-size: 1rem; }
.pricing-list li.plus i { color: var(--accent); }


/* Seção informativa escura */
.info-section-dark {
  background: radial-gradient(900px 420px at 85% 15%, rgba(255,183,3,0.2), transparent 60%),
              linear-gradient(120deg, #0D0D0D 0%, #121417 60%, #0D0D0D 100%);
  color: #FFFFFF;
}
.info-section-dark h2, .info-section-dark h3, .info-section-dark h4, .info-section-dark h5, .info-section-dark h6 { color: #FFFFFF; }
.info-section-dark .section-title { color: #FFFFFF; }
.info-section-dark .text-secondary { color: rgba(255,255,255,0.85) !important; }
.info-section-dark .badge.bg-primary-subtle { background-color: rgba(255,255,255,0.15) !important; color: #FFFFFF; }
.info-section-dark .list-check { list-style: none; padding: 0; margin: 0; }
.info-section-dark .list-check li { display: flex; gap: .5rem; align-items: flex-start; margin-bottom: .35rem; opacity: .95; }
.info-section-dark .list-check i { color: var(--accent); margin-top: .2rem; }

/* Soluções setoriais - fundo destacado */
.solutions-sector {
  background: linear-gradient(180deg, #0D0D0D 0%, #121417 60%, #0D0D0D 100%);
  color: #FFFFFF;
}
.solutions-sector .text-secondary { color: rgba(255,255,255,0.85) !important; }
.solutions-sector h2 { color: #FFFFFF; }
.solutions-sector .section-title { color: #FFFFFF; }
.solutions-sector h5 { color: #0D0D0D; }
/* Não inverter os cards internos */
.solutions-sector .module-card { background: #FFFFFF; color: #1f2937; }
.solutions-sector .module-card ul { color: #6c757d; }
/* Elementos internos para contraste */
.solutions-sector .badge.bg-primary-subtle { background-color: rgba(255,255,255,0.12) !important; color: #FFFFFF; }
.solutions-sector .badge.bg-accent-soft { background-color: rgba(255,183,3,0.25) !important; color: #FFFFFF; }
.solutions-sector .text-muted { color: rgba(255,255,255,0.7) !important; }
.solutions-sector .icon-lg, .solutions-sector .module-icon i { color: var(--primary); }
.solutions-sector a:not(.btn) { color: #FFFFFF; }

/* Orbit - funcionalidades girando */
.orbit-section { position: relative; }
.orbit-wrap { position: relative; width: 100%; max-width: 780px; aspect-ratio: 1/1; margin: 0 auto; }
.orbit-center { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 220px; height: 220px; border-radius: 50%; background: linear-gradient(180deg,#0D0D0D,#121417); color: #fff; border: 1px solid rgba(255,255,255,0.12); display: grid; place-items: center; text-align: center; padding: 1rem; }
.orbit-center .brand { font-weight: 700; font-size: 1.1rem; }
.orbit-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(13,13,13,0.15); animation: orbit-rotate 40s linear infinite; }
.orbit-items { position: absolute; inset: 0; animation: orbit-rotate 40s linear infinite; }
.orbit-item { position: absolute; width: 110px; height: 110px; border-radius: 12px; background: #fff; border: 1px solid rgba(13,13,13,0.08); display: grid; place-items: center; text-align: center; padding: .5rem; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.orbit-item i { font-size: 1.2rem; color: var(--primary); }
.orbit-item .label { margin-top: .25rem; font-weight: 600; font-size: .9rem; color: #0D0D0D; }
.orbit-item:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.08); }
.orbit-item.active { border-color: rgba(33,141,166,0.5); box-shadow: 0 12px 28px rgba(33,141,166,0.18); }
.orbit-wrap:hover .orbit-ring, .orbit-wrap:hover .orbit-items { animation-play-state: paused; }

@keyframes orbit-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Posições polares dos itens (8 itens) */
.pos-0 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.pos-1 { top: 20%; left: 82%; transform: translate(-50%, -50%); }
.pos-2 { top: 50%; left: 100%; transform: translate(-50%, -50%); }
.pos-3 { top: 82%; left: 80%; transform: translate(-50%, -50%); }
.pos-4 { top: 100%; left: 50%; transform: translate(-50%, -50%); }
.pos-5 { top: 82%; left: 20%; transform: translate(-50%, -50%); }
.pos-6 { top: 50%; left: 0%; transform: translate(-50%, -50%); }
.pos-7 { top: 20%; left: 18%; transform: translate(-50%, -50%); }

.orbit-desc { max-width: 820px; margin: 1.25rem auto 0; background: #fff; border: 1px solid rgba(13,13,13,0.08); border-radius: 14px; padding: 1rem 1.25rem; }
.orbit-desc h5 { margin-bottom: .25rem; }
.orbit-desc p { margin: 0; color: #334155; }

@media (max-width: 991.98px) {
  .orbit-center { width: 180px; height: 180px; }
  .orbit-item { width: 96px; height: 96px; }
}
@media (max-width: 575.98px) {
  .orbit-wrap { max-width: 520px; }
  .orbit-center { width: 160px; height: 160px; padding: .75rem; }
  .orbit-item { width: 90px; height: 90px; }
}
/* Integrações - seção interativa */
.flow-tabs { background: #fff; border: 1px solid rgba(13,13,13,0.08); border-radius: 12px; padding: .5rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.flow-tabs .btn { border-radius: 999px; padding: .4rem .9rem; }
.flow-tabs .btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.integration-panels { margin-top: 1rem; }
.integration-panel { display: none; }
.integration-panel.active { display: block; }
.flow-steps { display: grid; grid-template-columns: repeat(6, minmax(120px,1fr)); gap: .75rem; }
.flow-steps .step-card { background: #fff; border: 1px solid rgba(13,13,13,0.08); border-radius: 12px; padding: .75rem; text-align: center; }
.flow-steps .step-card i { font-size: 1.25rem; color: var(--primary); }
.flow-steps .step-card .title { font-weight: 600; margin-top: .35rem; }
.code-block { background: #0D0D0D; color: #e5e7eb; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); position: relative; }
.code-block pre { margin: 0; padding: 1rem 1.25rem; overflow: auto; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: .9rem; }
.code-block .copy-btn { position: absolute; top: 8px; right: 8px; }
@media (max-width: 991.98px){ .flow-steps { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 575.98px){ .flow-steps { grid-template-columns: repeat(2,1fr); } }

/* Timeline Example */
.timeline-example { position: relative; }
.timeline-step { opacity: 0.4; transition: opacity 0.4s ease, transform 0.4s ease; transform: translateY(10px); }
.timeline-step.active { opacity: 1; transform: translateY(0); }
.timeline-marker { width: 48px; height: 48px; font-weight: 600; font-size: 1.1rem; }
.timeline-step.active .timeline-marker { animation: pulse 2s infinite; box-shadow: 0 0 0 0 rgba(33, 141, 166, 0.7); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(33, 141, 166, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(33, 141, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(33, 141, 166, 0); }
}

