:root {
  --ink: #1b1730;
  --ink-soft: #635f77;
  --brand: #f41c6b;
  --brand-dark: #c70f58;
  --violet: #6d15b2;
  --violet-deep: #48106f;
  --violet-dark: #26103e;
  --paper: #faf7fd;
  --surface: #ffffff;
  --surface-soft: #f4edf9;
  --surface-alt: #fff4f8;
  --line: #eadcf4;
  --line-dark: rgba(255,255,255,.14);
  --shadow: 0 24px 60px rgba(65, 16, 95, .14);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--violet-dark);
  color: var(--surface);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.content-auto { content-visibility: auto; contain-intrinsic-size: 900px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(47,17,67,.08); background: rgba(255,255,255,.97); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 246px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.button) { color: #2d2742; font-size: .92rem; font-weight: 650; transition: color .2s ease; }
.main-nav > a:not(.button):hover { color: var(--brand); }
.nav-login { padding-left: 26px; border-left: 1px solid var(--line); color: var(--brand) !important; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; border-radius: 999px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid var(--brand);
  border-radius: 14px;
  background: var(--brand);
  color: var(--surface);
  font-weight: 760;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(244, 28, 107, .2);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--brand-dark); border-color: var(--brand-dark); box-shadow: 0 18px 36px rgba(244, 28, 107, .25); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid rgba(244,28,107,.25); outline-offset: 3px; }
.button-small { min-height: 44px; padding-inline: 19px; border-radius: 12px; font-size: .9rem; }
.button-ghost { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); color: var(--surface); box-shadow: none; }
.button-ghost:hover { background: rgba(255,255,255,.2); color: var(--surface); box-shadow: none; }
.button-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 106px;
  background: linear-gradient(100deg, #f11e63 0%, #c01787 35%, #7716ad 72%, #58128f 100%);
  color: var(--surface);
}
.hero::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -70px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(197,255,229,.22);
  box-shadow: 0 0 0 48px rgba(197,255,229,.1), 0 0 0 108px rgba(197,255,229,.07), 0 0 0 170px rgba(197,255,229,.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 16% 8%, rgba(255,255,255,.14), transparent 18%), radial-gradient(circle at 82% 70%, rgba(255,255,255,.08), transparent 26%);
}
.hero-orb { display: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr); align-items: center; gap: 42px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; color: #fff0f6; font-size: .78rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 9px; height: 9px; border-radius: 50%; background: #9effcf; box-shadow: 0 0 0 5px rgba(158,255,207,.18); }
.hero h1 { max-width: 560px; margin-bottom: 22px; font-size: clamp(2.9rem, 5.2vw, 4.7rem); line-height: 1.02; letter-spacing: -.055em; font-weight: 600; }
.hero h1 em { color: #fff2f9; font-style: normal; }
.hero h1 em::after { content: none; }
.hero-lead { max-width: 520px; margin-bottom: 34px; color: rgba(255,255,255,.88); font-size: clamp(1rem, 1.35vw, 1.14rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 13px 22px; margin: 28px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 650; }
.trust-list li { display: flex; align-items: center; gap: 7px; }
.trust-list span { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); color: #9effcf; font-size: .72rem; }

.hero-visual { position: relative; min-height: 510px; display: grid; place-items: center; width: 100%; justify-self: end; }
.visual-glow { position: absolute; width: 88%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 68%); }
.dashboard-card {
  position: relative;
  width: min(100%, 560px);
  min-height: 390px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.15);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.dashboard-card-clean { padding: 22px; }
.dashboard-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; color: var(--surface); }
.mini-label { display:block; color: rgba(255,255,255,.74); font-size:.72rem; font-weight:700; text-transform: uppercase; letter-spacing:.08em; }
.status-pill { display:inline-flex; align-items:center; justify-content:center; min-height: 38px; padding: 0 14px; border-radius: 999px; background: rgba(255,255,255,.14); color:#fff; font-size:.76rem; font-weight:700; white-space: nowrap; }
.journey-board {
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.07));
}
.journey-head { margin-bottom: 16px; color: #fff; }
.journey-head span { display:block; color: rgba(255,255,255,.64); font-size:.68rem; text-transform: uppercase; letter-spacing:.08em; }
.journey-head strong { display:block; font-size:.92rem; }
.journey-steps { display:grid; grid-template-columns: auto 1fr auto 1fr auto; align-items:center; gap: 10px; margin-bottom: 16px; }
.journey-step { display:grid; justify-items:center; gap:6px; color:#fff; font-size:.72rem; font-weight:700; }
.journey-step b { display:grid; width:32px; height:32px; place-items:center; border-radius:50%; background:#fff; color:var(--violet); font-size:.9rem; }
.journey-line { height: 3px; border-radius: 999px; background: linear-gradient(90deg, #7cf3ff, #a7d6ff); opacity:.9; }
.dashboard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.metric-card {
  display:grid;
  grid-template-columns: 40px 1fr;
  grid-template-areas:
    "icon label"
    "title title";
  align-items:center;
  column-gap:12px;
  row-gap:10px;
  min-height: 112px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
}
.metric-icon { display:grid; grid-area: icon; width:40px; height:40px; place-items:center; border-radius: 12px; background: var(--surface-alt); color: var(--brand); }
.metric-card small { display:block; grid-area: label; color:#7a748c; font-size:.68rem; text-transform:uppercase; letter-spacing:.08em; align-self:center; }
.metric-card strong { display:block; grid-area: title; font-size:1.02rem; line-height:1.25; letter-spacing:-.01em; }
.icon-search::before, .icon-cursor::before, .icon-code::before, .icon-flow::before { content: ""; width: 18px; height: 18px; border: 2px solid currentColor; border-radius: 50%; display:block; }
.icon-cursor::before { width: 0; height: 0; border: 0; border-left: 14px solid currentColor; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-radius: 0; }
.icon-code::before { width: 18px; height: 18px; border: 0; position: relative; box-shadow: inset 0 0 0 2px currentColor; }
.icon-code::after { content: "</>"; position: absolute; font-size: .55rem; color: currentColor; }
.metric-icon.icon-code { position: relative; }
.icon-flow::before { width: 20px; height: 20px; border-radius: 6px; border-style: dashed; }
.note-bottom { display: none !important; }

.quick-proof { padding: 18px 0; background: #fff; border-bottom: 1px solid var(--line); overflow: hidden; }
.proof-track { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #5e5875; font-size: .8rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.proof-track i { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--brand); }

.section-heading { margin-bottom: 50px; }
.heading-split { display: grid; grid-template-columns: 1.02fr .8fr; align-items: end; gap: 60px; }
.section-heading h2, .ecosystem-copy h2, .faq-intro h2, .contact-copy h2, .performance-band h2 { margin-bottom: 0; font-size: clamp(2.15rem, 4.2vw, 3.7rem); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p { margin: 0 0 5px; color: rgba(255,255,255,.82); font-size: 1.05rem; }

.services-section {
  background: var(--surface);
  color: var(--ink);
}
.services-section .section-kicker {
  background: linear-gradient(90deg, rgba(241,30,99,.08), rgba(124,25,174,.08));
  color: var(--brand);
  padding: 8px 12px;
  border-radius: 999px;
  letter-spacing: normal;
  font-size:.82rem;
  text-transform:none;
}
.services-section .heading-split {
  grid-template-columns: 1fr;
  gap: 16px;
  justify-items: center;
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
}
.services-section .section-heading {
  margin: 0 auto 46px;
}
.services-section .section-heading h2 {
  max-width: 620px;
  margin: 0 auto 10px;
  color: var(--ink);
}
.services-section .section-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .service-wide {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(124,25,174,.12);
  border-radius: 18px;
  background: linear-gradient(145deg, #9e1f7b 0%, #751b92 55%, #5a167e 100%);
  box-shadow: 0 16px 36px rgba(96, 21, 131, .12);
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.service-card:hover, .service-wide:hover {
  transform: translateY(-5px);
  border-color: rgba(124,25,174,.2);
  background: linear-gradient(145deg, #a82280 0%, #8020a0 55%, #63198a 100%);
  box-shadow: 0 22px 44px rgba(96, 21, 131, .18);
}
.service-featured { background: linear-gradient(145deg, #8f1d74 0%, #6f198c 55%, #551574 100%); color: var(--surface); }
.service-featured::before { content:none; }
.service-icon { display: grid; width: 58px; height: 58px; place-items: center; margin-bottom: 22px; border-radius: 14px; background: rgba(255,255,255,.09); color: var(--surface); }
.service-icon svg { width: 28px; fill: currentColor; }
.service-number { position: absolute; top: 24px; right: 24px; color: rgba(255,255,255,.54); font-size: .76rem; font-weight: 850; letter-spacing: .1em; }
.service-card h3, .service-wide h3 { margin-bottom: 10px; font-size: 1.28rem; letter-spacing: -.02em; color: var(--surface); }
.service-card > p, .service-wide-copy p, .service-wide > p { color: rgba(255,255,255,.84); font-size: .92rem; }
.service-card ul, .service-wide ul { display: grid; gap: 8px; margin: 18px 0 26px; padding: 0; list-style: none; }
.service-card li, .service-wide li { position: relative; padding-left: 18px; color: rgba(255,255,255,.82); font-size: .86rem; }
.service-card li::before, .service-wide li::before { content: ""; position:absolute; left:0; top:.68em; width:6px; height:6px; border-radius:50%; background: #8dffd0; }
.text-link { display: inline-flex; align-items: center; gap: 9px; align-self: flex-start; margin-top: auto; padding: 0; border: 0; background: transparent; color: #fff; font-size: .91rem; font-weight: 830; cursor: pointer; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.service-wide { grid-column: auto; }
.service-wide .service-icon { margin-bottom: 22px; }
.service-wide-copy p { margin-bottom: 0; }

.ecosystem-section { overflow: hidden; background: var(--surface); }
.ecosystem-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); align-items: center; gap: 70px; }
.ecosystem-copy .section-kicker,
.process-section .section-kicker,
.faq-intro .section-kicker,
.contact-copy .section-kicker,
.section-heading .section-kicker { color: var(--brand); }
.ecosystem-copy > p { max-width: 650px; margin: 24px 0 34px; color: var(--ink-soft); font-size: 1.04rem; }
.feature-list { display: grid; gap: 18px; }
.feature-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding-top: 18px; border-top: 1px solid var(--line); }
.feature-list span { color: var(--brand); font-size: .75rem; font-weight: 900; }
.feature-list p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
.feature-list strong { display: block; margin-bottom: 3px; color: var(--ink); }
.ecosystem-map { position: relative; width: min(100%, 620px); aspect-ratio: 1; margin-inline: auto; }
.orbit { position: absolute; inset: 12%; border: 1px solid rgba(124,25,174,.18); border-radius: 50%; }
.orbit-two { inset: 26%; border-style: dashed; }
.center-node { position: absolute; left: 50%; top: 50%; display: grid; width: 180px; height: 180px; place-items: center; align-content: center; border-radius: 50%; background: linear-gradient(145deg, var(--brand), var(--violet)); color: var(--surface); transform: translate(-50%,-50%); box-shadow: 0 25px 50px rgba(81, 22, 121, .24); }
.center-node::after { content:""; position:absolute; inset:14px; border:1px solid rgba(255,255,255,.16); border-radius:50%; }
.center-node span { color: rgba(255,255,255,.74); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.center-node strong { font-size: 1.25rem; }
.map-node { position: absolute; display: grid; width: 110px; height: 110px; place-items: center; align-content: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); box-shadow: 0 18px 36px rgba(76, 17, 108, .08); }
.map-node span { font-weight: 850; }
.map-node small { color: var(--brand); font-size: .72rem; font-weight: 750; }
.node-seo { top: 0; left: 50%; transform: translateX(-50%); }
.node-ads { top: 24%; right: 1%; }
.node-web { right: 11%; bottom: 6%; }
.node-data { left: 11%; bottom: 6%; }
.node-crm { top: 24%; left: 1%; }

.process-section { background: var(--surface-alt); }
.centered-heading { max-width: 760px; margin-inline: auto; text-align: center; }
.centered-heading p { max-width: 650px; margin: 18px auto 0; color: var(--ink-soft); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.process-grid li { position: relative; min-height: 300px; padding: 32px 28px; border-right: 1px solid var(--line); }
.process-grid li:last-child { border-right: 0; }
.process-grid li::after { content:"→"; position:absolute; top:39px; right:-12px; z-index:2; display:grid; width:24px; height:24px; place-items:center; border:1px solid var(--line); border-radius:50%; background:var(--surface); color:var(--brand); font-size:.75rem; }
.process-grid li:last-child::after { display:none; }
.step-number { margin-bottom: 64px; color: var(--brand); font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.process-grid h3 { margin-bottom: 11px; font-size: 1.28rem; }
.process-grid p { margin-bottom: 0; color: var(--ink-soft); font-size: .91rem; }

.performance-band { padding: 88px 0; background: linear-gradient(120deg, var(--violet-dark), var(--violet), #8b1ab0); color: var(--surface); }
.band-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 86px; }
.section-kicker-light { color: #ffd4e9 !important; }
.band-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.band-features > div { padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; background: rgba(255,255,255,.06); }
.band-features strong, .band-features span { display:block; }
.band-features strong { margin-bottom: 4px; font-size: .95rem; }
.band-features span { color: rgba(255,255,255,.72); font-size: .8rem; }

.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 80px; }
.faq-intro { position: sticky; top: calc(var(--header-height) + 36px); }
.faq-intro p { margin: 22px 0 28px; color: var(--ink-soft); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; cursor: pointer; font-size: 1.05rem; font-weight: 760; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { position: relative; width: 26px; height: 26px; flex: 0 0 auto; border-radius: 50%; background: var(--surface-soft); }
summary span::before, summary span::after { content:""; position:absolute; left:7px; top:12px; width:12px; height:2px; background:var(--brand); transition: transform .2s ease; }
summary span::after { transform: rotate(90deg); }
details[open] summary span::after { transform: rotate(0); }
details p { max-width: 760px; margin: -5px 0 26px; padding-right: 50px; color: var(--ink-soft); }

.contact-section { padding: 112px 0; background: linear-gradient(115deg, #f11e63 0%, #a61d8c 45%, #631592 100%); color: var(--surface); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.contact-copy > p { max-width: 520px; margin: 24px 0 34px; color: rgba(255,255,255,.76); }
.contact-direct { display: grid; gap: 10px; }
.contact-direct a { display: grid; width: max-content; }
.contact-direct span { color: rgba(255,255,255,.58); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-direct strong { font-size: .92rem; }
.contact-form { padding: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: var(--surface); color: var(--ink); box-shadow: 0 30px 70px rgba(0,0,0,.12); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; color: #3d3755; font-size: .79rem; font-weight: 780; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #e4d7ef; border-radius: 12px; background: #fcfaff; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { min-height: 50px; padding: 0 14px; }
.contact-form textarea { min-height: 116px; padding: 12px 14px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(244,28,107,.1); outline: none; }
.form-note { margin: 12px 0 0; color: #81788f; font-size: .7rem; text-align: center; }

.site-footer { padding: 70px 0 24px; background: #ffffff; color: var(--ink); border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 52px; }
.footer-brand p { max-width: 340px; margin: 18px 0 0; color: var(--ink-soft); font-size: .88rem; }
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column strong { margin-bottom: 8px; font-size: .88rem; }
.footer-column a { color: var(--ink-soft); font-size: .82rem; }
.footer-column a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); color: #7c738e; font-size: .72rem; }
.footer-bottom p { margin: 0; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: grid; width: 58px; height: 58px; place-items: center; border: 4px solid rgba(255,255,255,.85); border-radius: 50%; background: #25d366; color: var(--surface); box-shadow: 0 16px 34px rgba(20,72,39,.24); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 28px; fill: currentColor; }

@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.button) { font-size: .84rem; }
  .brand img { width: 220px; }
  .hero-grid { grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr); gap: 30px; }
  .hero h1 { font-size: clamp(2.9rem, 5vw, 4.15rem); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ecosystem-grid { grid-template-columns: .95fr 1fr; gap: 42px; }
}

@media (max-width: 900px) {
  :root { --header-height: 74px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 84px 0; }
  .menu-toggle { display: block; z-index: 3; }
  .main-nav { position: fixed; left: 16px; right: 16px; top: calc(var(--header-height) - 2px); display: grid; gap: 4px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: 0 22px 48px rgba(39, 16, 56, .16); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a:not(.button) { padding: 10px 9px; font-size: .94rem; }
  .nav-login { border-left: 0; border-top: 1px solid var(--line); padding-left: 9px !important; margin-top: 5px; padding-top: 14px !important; }
  .main-nav .button { margin-top: 6px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding: 72px 0 86px; }
  .hero-grid, .ecosystem-grid, .band-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; }
  .hero-copy { order: 1; text-align: center; }
  .hero-visual { order: 2; min-height: 420px; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .dashboard-card { width: min(92%, 560px); }
  .heading-split { grid-template-columns: 1fr; gap: 22px; }
  .heading-split br { display: none; }
  .section-heading { text-align: left; }
  .services-section .section-heading { text-align: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .ecosystem-grid { gap: 54px; }
  .ecosystem-map { max-width: 580px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-grid li:nth-child(2)::after { display: none; }
  .band-grid { gap: 45px; }
  .faq-grid { gap: 40px; }
  .faq-intro { position: static; }
  .contact-grid { gap: 50px; }
  .footer-main { grid-template-columns: 1.2fr repeat(2, .8fr); }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 640px) {
  .dashboard-top { flex-direction: column; align-items: flex-start; }
  .status-pill { min-height: 34px; padding: 0 12px; font-size: .72rem; }
  .journey-board { padding: 14px; }
  .journey-steps { gap: 8px; }
  .journey-step b { width: 28px; height: 28px; font-size: .82rem; }
  .journey-step span { font-size: .66rem; }

  :root { --radius: 18px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 70px 0; }
  .brand img { width: 194px; }
  .header-inner { gap: 12px; }
  .hero { padding: 54px 0 68px; }
  .hero::before { width: 320px; height: 320px; right: -110px; top: 20px; box-shadow: 0 0 0 30px rgba(197,255,229,.08), 0 0 0 70px rgba(197,255,229,.05); }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; justify-content: start; width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .hero-visual { min-height: 390px; }
  .dashboard-card { width: 100%; min-height: 380px; padding: 18px; border-radius: 22px; }
  .dashboard-grid { gap: 8px; }
  .metric-card {
    grid-template-columns: 34px 1fr;
    grid-template-areas:
      "icon label"
      "title title";
    min-height: 98px;
    padding: 12px 14px;
    column-gap: 8px;
    row-gap: 8px;
  }
  .metric-icon { width: 34px; height: 34px; border-radius: 10px; }
  .metric-card strong { font-size: .9rem; }
  .metric-card small { font-size: .6rem; }
  
  .proof-track { width: max-content; animation: none; justify-content: flex-start; }
  .quick-proof { overflow-x: auto; scrollbar-width: none; }
  .quick-proof::-webkit-scrollbar { display: none; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .ecosystem-copy h2, .faq-intro h2, .contact-copy h2, .performance-band h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-wide { min-height: 0; padding: 24px; }
  .service-icon { margin-bottom: 20px; }
  .ecosystem-map { transform: scale(.92); margin-block: -20px; }
  .map-node { width: 86px; height: 86px; }
  .center-node { width: 150px; height: 150px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .process-grid li:last-child { border-bottom: 0 !important; }
  .process-grid li::after { display: none; }
  .step-number { margin-bottom: 36px; }
  .performance-band { padding: 70px 0; }
  .band-features { grid-template-columns: 1fr; }
  details p { padding-right: 0; }
  .contact-section { padding: 72px 0; }
  .contact-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-direct a { width: 100%; overflow-wrap: anywhere; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .whatsapp-float { width: 54px; height: 54px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

.note-bottom { display: none !important; }


.hero-screenshot-card {
  position: relative;
  width: min(100%, 720px);
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(65, 16, 95, .22);
}
.hero-screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

@media (max-width: 900px) {
  .hero-visual { min-height: auto; }
  .hero-screenshot-card { width: min(100%, 620px); }
}

@media (max-width: 640px) {
  .hero-screenshot-card {
    border-radius: 18px;
  }
  .hero-screenshot-card img {
    border-radius: 18px;
  }
}

.hero-copy { max-width: 560px; }
.hero-screenshot-card { justify-self: end; }


.service-media-card {
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: visible;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.service-media-card:hover {
  transform: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.service-media-card::before { content: none; }
.service-media-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-media-wrap img {
  width: min(84%, 295px);
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 20px 28px rgba(35, 8, 56, .28));
}

@media (max-width: 640px) {
  .service-media-card {
    padding: 16px;
  }
  .service-media-wrap {
    min-height: 210px;
  }
  .service-media-wrap img {
    width: min(78%, 230px);
  }
}

.service-media-card .service-number { display: none !important; }


/* === Nossas especialidades + páginas de serviço | 2026-08-19 === */
.nav-services { position: relative; display: flex; align-items: center; }
.nav-services-trigger { display: inline-flex; align-items: center; gap: 5px; color: #2d2742; font-size: .92rem; font-weight: 650; }
.nav-services-trigger > span { color: var(--brand); font-size: .9rem; transform: translateY(-1px); }
.nav-dropdown { position: absolute; left: 50%; top: calc(100% + 18px); z-index: 120; display: grid; width: 330px; padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.99); box-shadow: 0 24px 50px rgba(47,17,67,.16); opacity: 0; visibility: hidden; transform: translate(-50%,-6px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.nav-services:hover .nav-dropdown, .nav-services:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%,0); }
.nav-dropdown::before { content:""; position:absolute; left:0; right:0; top:-20px; height:20px; }
.nav-dropdown a { display: grid; gap: 1px; padding: 11px 12px; border-radius: 11px; }
.nav-dropdown a:hover, .nav-dropdown a:focus-visible { background: var(--surface-alt); }
.nav-dropdown strong { color: var(--ink); font-size: .84rem; }
.nav-dropdown small { color: var(--ink-soft); font-size: .72rem; }

.specialties-section { position: relative; overflow: hidden; background: linear-gradient(180deg,#faf7fd 0%,#fff 100%); }
.specialties-section::before { content:""; position:absolute; width:430px; height:430px; right:-250px; top:70px; border-radius:50%; background: radial-gradient(circle,rgba(244,28,107,.08),transparent 68%); pointer-events:none; }
.specialties-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.specialties-heading .section-kicker { padding: 8px 12px; border-radius:999px; background: linear-gradient(90deg,rgba(241,30,99,.08),rgba(124,25,174,.08)); color: var(--brand); letter-spacing: normal; text-transform:none; }
.specialties-heading h2 { margin-bottom: 14px; }
.specialties-heading p { max-width: 650px; margin: 0 auto; color: var(--ink-soft); }
.specialties-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.specialty-card { position: relative; display:flex; min-height: 430px; flex-direction:column; padding: 32px; overflow:hidden; border:1px solid rgba(124,25,174,.12); border-radius:24px; background:#fff; box-shadow:0 18px 44px rgba(63,18,88,.08); transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease; }
.specialty-card::after { content:""; position:absolute; width:190px; height:190px; right:-85px; top:-85px; border-radius:50%; background:radial-gradient(circle,rgba(244,28,107,.13),rgba(109,21,178,.04) 58%,transparent 70%); pointer-events:none; }
.specialty-card:hover { transform:translateY(-5px); border-color:rgba(244,28,107,.24); box-shadow:0 24px 54px rgba(63,18,88,.12); }
.specialty-top { display:flex; align-items:center; gap:13px; margin-bottom:24px; }
.specialty-top > span { color:var(--brand); font-size:.72rem; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }
.specialty-icon { display:grid; width:54px; height:54px; place-items:center; border-radius:15px; background:linear-gradient(145deg,var(--brand),var(--violet)); color:#fff; box-shadow:0 12px 24px rgba(109,21,178,.18); }
.specialty-icon svg { width:27px; fill:currentColor; }
.specialty-card h3 { max-width:420px; margin-bottom:9px; font-size:1.55rem; letter-spacing:-.03em; }
.specialty-impact { margin-bottom:21px; color:var(--ink-soft); font-size:1.02rem; font-weight:650; }
.specialty-card ul { display:grid; gap:10px; margin:0 0 28px; padding:0; list-style:none; }
.specialty-card li { position:relative; padding-left:25px; color:#575169; font-size:.91rem; }
.specialty-card li::before { content:"✓"; position:absolute; left:0; top:0; color:var(--brand); font-weight:900; }
.specialty-actions { display:flex; align-items:center; gap:19px; margin-top:auto; }
.button-specialty { min-height:48px; padding-inline:20px; border-radius:12px; font-size:.9rem; box-shadow:0 12px 26px rgba(244,28,107,.17); }
.specialty-more { display:inline-flex; align-items:center; gap:7px; color:var(--violet); font-size:.89rem; font-weight:800; }
.specialty-more span { transition:transform .18s ease; }
.specialty-more:hover span { transform:translateX(4px); }

/* service pages */
body.service-page { background:#fff; }
.service-page .site-header { position:sticky; }
.service-page-main { overflow:hidden; }
.service-page-hero { position:relative; padding:88px 0 92px; background:linear-gradient(108deg,#f31d67 0%,#bc188d 43%,#6915a2 100%); color:#fff; }
.service-page-hero::before { content:""; position:absolute; width:520px; height:520px; right:-180px; top:-190px; border:1px solid rgba(255,255,255,.16); border-radius:50%; box-shadow:0 0 0 58px rgba(255,255,255,.055),0 0 0 120px rgba(255,255,255,.035); }
.service-page-hero::after { content:""; position:absolute; inset:0; background:radial-gradient(circle at 10% 10%,rgba(255,255,255,.13),transparent 24%); pointer-events:none; }
.service-hero-grid { position:relative; z-index:1; display:grid; grid-template-columns:minmax(0,1fr) minmax(420px,.9fr); align-items:center; gap:60px; }
.service-breadcrumb { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px; color:rgba(255,255,255,.72); font-size:.78rem; font-weight:700; }
.service-breadcrumb a:hover { color:#fff; }
.service-page-hero .section-kicker { margin-bottom:14px; }
.service-page-hero h1 { max-width:720px; margin-bottom:22px; font-size:clamp(2.8rem,5.4vw,4.8rem); line-height:1.02; letter-spacing:-.055em; font-weight:620; }
.service-page-hero .service-hero-lead { max-width:640px; margin-bottom:30px; color:rgba(255,255,255,.88); font-size:1.08rem; line-height:1.75; }
.service-hero-actions { display:flex; flex-wrap:wrap; gap:13px; }
.service-hero-actions .button-ghost { border-color:rgba(255,255,255,.36); }
.service-proof-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:27px; }
.service-proof-chips span { padding:7px 11px; border:1px solid rgba(255,255,255,.18); border-radius:999px; background:rgba(255,255,255,.08); color:rgba(255,255,255,.86); font-size:.74rem; font-weight:700; }
.service-visual-panel { position:relative; padding:24px; border:1px solid rgba(255,255,255,.18); border-radius:28px; background:rgba(255,255,255,.12); box-shadow:0 28px 60px rgba(46,8,70,.22); backdrop-filter:blur(10px); }
.service-visual-top { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:16px; }
.service-visual-top strong { font-size:.95rem; }
.service-visual-top span { padding:6px 10px; border-radius:999px; background:rgba(255,255,255,.12); font-size:.68rem; font-weight:750; }
.service-visual-grid { display:grid; grid-template-columns:1fr 1fr; gap:11px; }
.service-visual-item { min-height:118px; padding:17px; border-radius:18px; background:rgba(255,255,255,.95); color:var(--ink); }
.service-visual-item b { display:block; margin-bottom:7px; font-size:1rem; }
.service-visual-item small { color:var(--ink-soft); font-size:.75rem; }
.service-visual-line { width:58%; height:5px; margin-top:16px; border-radius:99px; background:linear-gradient(90deg,var(--brand),var(--violet)); }

.service-intro-section { padding:96px 0 78px; background:#fff; }
.service-intro-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.service-intro-copy { position:sticky; top:120px; }
.service-intro-copy h2 { margin-bottom:18px; font-size:clamp(2.25rem,4vw,3.55rem); line-height:1.07; letter-spacing:-.045em; }
.service-intro-copy p { color:var(--ink-soft); }
.service-feature-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.service-feature-box { min-height:225px; padding:25px; border:1px solid var(--line); border-radius:20px; background:linear-gradient(180deg,#fff,#fcf9fe); }
.service-feature-box span { display:grid; width:38px; height:38px; place-items:center; margin-bottom:35px; border-radius:11px; background:var(--surface-alt); color:var(--brand); font-size:.78rem; font-weight:900; }
.service-feature-box h3 { margin-bottom:9px; font-size:1.07rem; }
.service-feature-box p { margin:0; color:var(--ink-soft); font-size:.86rem; }

.service-process-section { padding:84px 0; background:var(--surface-alt); }
.service-process-heading { max-width:700px; margin:0 auto 42px; text-align:center; }
.service-process-heading h2 { margin-bottom:12px; font-size:clamp(2.1rem,4vw,3.2rem); letter-spacing:-.04em; }
.service-process-heading p { color:var(--ink-soft); }
.service-process-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.service-process-card { padding:28px; border:1px solid var(--line); border-radius:20px; background:#fff; }
.service-process-card > span { display:inline-flex; margin-bottom:46px; color:var(--brand); font-size:.76rem; font-weight:900; letter-spacing:.1em; }
.service-process-card h3 { margin-bottom:10px; }
.service-process-card p { margin:0; color:var(--ink-soft); font-size:.9rem; }

.service-cta-section { padding:54px 0 90px; background:#fff; }
.service-cta-box { position:relative; overflow:hidden; display:grid; grid-template-columns:1fr auto; align-items:center; gap:35px; padding:45px 48px; border-radius:28px; background:linear-gradient(105deg,#29103f,#71159e 60%,#bc187f); color:#fff; box-shadow:0 24px 60px rgba(51,14,74,.15); }
.service-cta-box::after { content:""; position:absolute; width:280px; height:280px; right:-120px; top:-150px; border:1px solid rgba(255,255,255,.12); border-radius:50%; box-shadow:0 0 0 45px rgba(255,255,255,.035); }
.service-cta-box > * { position:relative; z-index:1; }
.service-cta-box h2 { max-width:720px; margin-bottom:10px; font-size:clamp(2rem,3.8vw,3rem); line-height:1.08; letter-spacing:-.04em; }
.service-cta-box p { max-width:670px; margin:0; color:rgba(255,255,255,.78); }
.service-cta-box .button { white-space:nowrap; }
.service-page .footer-column a { line-height:1.5; }

@media (max-width:1100px) {
  .nav-services-trigger { font-size:.84rem; }
  .service-hero-grid { grid-template-columns:1fr minmax(370px,.8fr); gap:38px; }
}
@media (max-width:900px) {
  .nav-services { display:block; }
  .nav-services-trigger { width:100%; padding:10px 9px; font-size:.94rem; }
  .nav-dropdown { position:static; width:100%; margin:0 0 4px; padding:5px 8px 8px 18px; border:0; border-left:2px solid var(--line); border-radius:0; background:transparent; box-shadow:none; opacity:1; visibility:visible; transform:none; }
  .nav-services:hover .nav-dropdown, .nav-services:focus-within .nav-dropdown { transform:none; }
  .nav-dropdown a { padding:8px 10px; }
  .nav-dropdown small { display:none; }
  .specialties-grid { grid-template-columns:1fr; }
  .specialty-card { min-height:0; }
  .service-page-hero { padding:70px 0 76px; }
  .service-hero-grid, .service-intro-grid { grid-template-columns:1fr; }
  .service-hero-grid { gap:42px; }
  .service-page-hero h1 { font-size:clamp(2.65rem,9vw,4.2rem); }
  .service-visual-panel { max-width:620px; }
  .service-intro-copy { position:static; }
  .service-feature-grid { grid-template-columns:1fr 1fr; }
  .service-process-grid { grid-template-columns:1fr; }
  .service-process-card > span { margin-bottom:25px; }
  .service-cta-box { grid-template-columns:1fr; }
  .service-cta-box .button { justify-self:start; }
}
@media (max-width:640px) {
  .specialties-heading { margin-bottom:34px; }
  .specialty-card { padding:24px; border-radius:20px; }
  .specialty-card h3 { font-size:1.35rem; }
  .specialty-actions { align-items:stretch; flex-direction:column; gap:13px; }
  .specialty-actions .button { width:100%; }
  .specialty-more { justify-content:center; min-height:40px; }
  .service-page-hero { padding:52px 0 62px; }
  .service-page-hero h1 { font-size:clamp(2.45rem,12vw,3.45rem); }
  .service-page-hero .service-hero-lead { font-size:1rem; }
  .service-hero-actions { display:grid; grid-template-columns:1fr; }
  .service-hero-actions .button { width:100%; }
  .service-visual-panel { padding:17px; border-radius:21px; }
  .service-visual-grid { grid-template-columns:1fr; }
  .service-visual-item { min-height:94px; }
  .service-intro-section { padding:70px 0 60px; }
  .service-intro-grid { gap:38px; }
  .service-feature-grid { grid-template-columns:1fr; }
  .service-feature-box { min-height:0; }
  .service-feature-box span { margin-bottom:24px; }
  .service-process-section { padding:66px 0; }
  .service-cta-section { padding:42px 0 70px; }
  .service-cta-box { padding:31px 24px; border-radius:22px; }
  .service-cta-box .button { width:100%; }
}


/* === Updates 2026-08-20 === */
.nav-services-trigger { gap: 8px; }
.nav-services-trigger > span { display:grid; width:18px; height:18px; place-items:center; border-radius:999px; background:rgba(241,30,99,.08); color:var(--ink-soft); font-size:.62rem; transform:none; transition:background .18s ease,color .18s ease; }
.nav-services:hover .nav-services-trigger > span, .nav-services:focus-within .nav-services-trigger > span { background:rgba(241,30,99,.14); color:var(--brand); }
.nav-dropdown { width: 370px; }
.specialties-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.specialty-card { min-height: 395px; }
.specialty-top { align-items: center; gap: 16px; margin-bottom: 18px; }
.specialty-top h3 { margin: 0; font-size: 1.42rem; line-height: 1.12; letter-spacing: -.03em; }
.specialty-impact { min-height: 54px; margin-bottom: 18px; }
.specialty-card ul { gap: 12px; margin-bottom: 24px; }
.specialty-card li { padding-left: 22px; font-size: .9rem; line-height: 1.5; }
.specialty-card li::before { content:""; width: 8px; height: 8px; top: .45rem; border-radius: 50%; background: linear-gradient(145deg,var(--brand),var(--violet)); box-shadow: 0 0 0 4px rgba(241,30,99,.08); }
.specialty-actions { gap: 14px; }
.specialty-actions .button { white-space: nowrap; }
@media (max-width: 1200px) {
  .specialties-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .nav-services-trigger > span { width:16px; height:16px; font-size:.56rem; }
}
@media (max-width: 640px) {
  .specialty-top h3 { font-size: 1.28rem; }
}


/* === Updates 2026-08-20-2 === */
.specialty-card { min-height: 520px; }
.specialty-top { align-items: center; }
.specialty-impact {
  min-height: 0;
  margin-bottom: 16px;
  color: #6f6881;
  font-size: .93rem;
  font-weight: 500;
  line-height: 1.55;
}
.specialty-card ul { gap: 11px; margin-bottom: 26px; }
.specialty-card li {
  padding-left: 22px;
  color: #5f5870;
  font-size: .895rem;
  line-height: 1.52;
}
@media (max-width: 1200px) {
  .specialty-card { min-height: 0; }
}


/* === Updates 2026-08-20-3 === */
.specialty-card {
  min-height: 0;
  padding-bottom: 26px;
}
.specialty-card ul {
  margin-bottom: 18px;
}
.specialty-actions {
  margin-top: 6px;
  align-items: center;
}
@media (max-width: 640px) {
  .specialty-card {
    padding-bottom: 24px;
  }
}


/* === Ajuste visual do ícone Serviços | 2026-08-19 === */
.nav-services-trigger {
  gap: 7px;
}

.nav-services-trigger > span.nav-chevron {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  transform: translateY(1px);
}

.nav-services-trigger > span.nav-chevron svg {
  width: 10px;
  height: 7px;
  overflow: visible;
}

.nav-services-trigger > span.nav-chevron path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-services:hover .nav-services-trigger > span.nav-chevron,
.nav-services:focus-within .nav-services-trigger > span.nav-chevron {
  background: transparent;
  color: var(--violet);
}

.nav-services:hover .nav-chevron svg,
.nav-services:focus-within .nav-chevron svg {
  transform: translateY(1px);
}

.nav-chevron svg {
  transition: transform .18s ease;
}


/* === Updates 2026-08-20-4 === */
.quick-proof {
  position: relative;
  padding: 18px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.proof-marquee {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: proof-marquee 24s linear infinite;
}
.proof-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
  padding-inline: 24px;
  color: #5e5875;
  font-size: .8rem;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.proof-group i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
}
@keyframes proof-marquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
@media (prefers-reduced-motion: reduce) {
  .proof-marquee { animation: none; }
}
@media (max-width: 900px) {
  .specialties-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  .proof-group {
    gap: 20px;
    padding-inline: 18px;
    font-size: .74rem;
  }
}
