:root {
  --bg: #ffffff;
  --surface: #f5f7fa;
  --surface-2: #eef2f7;
  --card: #ffffff;
  --card-strong: #ffffff;
  --ink: #18212f;
  --muted: #667085;
  --line: #dde3ea;
  --brand: #1481ba;
  --brand-2: #0d5f8a;
  --brand-soft: #e8f5fb;
  --dark: #111827;
  --success: #087a55;
  --danger: #b42318;
  --header: rgba(17,24,39,.97);
  --topbar: #0b121f;
  --hero-1: #101827;
  --hero-2: #182b43;
  --hero-3: #0d5f8a;
  --hero-text: #ffffff;
  --hero-muted: #dce8f3;
  --input: #ffffff;
  --input-border: #ccd4df;
  --shadow: 0 18px 55px rgba(16, 24, 40, .12);
  --card-shadow: 0 8px 28px rgba(16,24,40,.06);
  --radius: 20px;
  --max: 1180px;
  color-scheme: light;
}
html[data-theme="dark"] {
  --bg: #0b111b;
  --surface: #111a28;
  --surface-2: #182334;
  --card: #121c2a;
  --card-strong: #162235;
  --ink: #eef4fb;
  --muted: #a9b6c6;
  --line: #2a3a4f;
  --brand: #48b7e8;
  --brand-2: #7bd1f4;
  --brand-soft: #132f41;
  --dark: #eef4fb;
  --success: #56d5a2;
  --danger: #ff8a80;
  --header: rgba(8,14,24,.975);
  --topbar: #050a12;
  --hero-1: #08111d;
  --hero-2: #102236;
  --hero-3: #0b4d70;
  --hero-text: #ffffff;
  --hero-muted: #cad8e7;
  --input: #0f1825;
  --input-border: #33465d;
  --shadow: 0 18px 55px rgba(0,0,0,.28);
  --card-shadow: 0 10px 28px rgba(0,0,0,.2);
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; background: var(--bg); }
body { margin: 0; color: var(--ink); background: var(--bg); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; transition: background .2s ease, color .2s ease; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; background: var(--card); color: var(--ink); padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }

.topbar { background: var(--topbar); color: #d8e0ec; font-size: 13px; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-contact { display: flex; align-items: center; gap: 22px; }
.topbar a:hover { color: #fff; }
.site-tools { display: flex; align-items: center; gap: 9px; }
.theme-switcher { display: inline-flex; align-items: center; padding: 3px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.055); }
.theme-button, .share-button { border: 0; cursor: pointer; color: #dce6f1; background: transparent; }
.theme-button { min-height: 29px; display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.theme-button:hover { background: rgba(255,255,255,.09); color: #fff; }
.theme-button[aria-pressed="true"] { background: #fff; color: #111827; box-shadow: 0 2px 8px rgba(0,0,0,.18); }
.share-button { min-height: 31px; display: inline-flex; align-items: center; gap: 7px; padding: 5px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: 11px; font-weight: 750; }
.share-button:hover { background: rgba(255,255,255,.09); color: #fff; }
.share-button svg { width: 15px; height: 15px; fill: currentColor; }

.site-header { position: sticky; top: 0; z-index: 1000; background: var(--header); color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); transition: box-shadow .2s ease, background .2s ease; }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 230px; height: auto; max-height: 52px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 23px; font-size: 14px; font-weight: 650; }
.main-nav > a { opacity: .9; }
.main-nav > a:hover { opacity: 1; color: #79c9ef; }
.nav-cta { padding: 10px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 10px; background: rgba(255,255,255,.08); padding: 9px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

.hero { overflow: hidden; background: radial-gradient(circle at 78% 15%, rgba(20,129,186,.3), transparent 31%), linear-gradient(135deg, var(--hero-1), var(--hero-2) 55%, var(--hero-3)); color: var(--hero-text); }
.hero-grid { min-height: 590px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; padding-block: 78px; }
.eyebrow { display: inline-block; margin-bottom: 10px; color: var(--brand); font-size: 12px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.hero .eyebrow { color: #86d6fa; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(42px, 5.9vw, 74px); line-height: 1.02; letter-spacing: -.045em; }
.hero p { max-width: 680px; margin: 25px 0 0; color: var(--hero-muted); font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 31px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 24px; color: #c8d9e9; font-size: 13px; font-weight: 650; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 9px; padding: 11px 20px; border: 0; border-radius: 999px; font-weight: 750; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { background: #1481ba; color: #fff; box-shadow: 0 12px 30px rgba(20,129,186,.28); }
.button.primary:hover { background: #0d6f9f; }
.button.secondary { background: var(--surface-2); color: var(--ink); border: 1px solid var(--line); }
.button.secondary:hover { background: var(--brand-soft); border-color: var(--brand); }
.button.ghost { color: #fff; border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.06); }
.button.full { width: 100%; }
.button.whatsapp { background: #18a968; color: #fff; box-shadow: 0 11px 24px rgba(24,169,104,.22); }
.button.whatsapp:hover { background: #138b57; }
.whatsapp-icon { width: 22px; height: 22px; fill: currentColor; flex: 0 0 auto; }
.hero-art { display: flex; justify-content: center; perspective: 1200px; }
.screen-card { width: min(100%, 500px); aspect-ratio: 4/3; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(255,255,255,.08); box-shadow: 0 35px 80px rgba(0,0,0,.34); backdrop-filter: blur(10px); transform: rotateY(-9deg) rotateX(4deg); overflow: hidden; }
.screen-top { height: 46px; display: flex; align-items: center; gap: 7px; padding-inline: 16px; border-bottom: 1px solid rgba(255,255,255,.11); background: rgba(8,14,24,.28); }
.screen-top i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.48); }
.screen-content { height: calc(100% - 46px); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 30px; }
.hero-brand-image { width: min(74%, 360px); height: auto; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(0,0,0,.18)); }
.screen-lines { width: 66%; display: grid; gap: 11px; }
.screen-lines b { height: 10px; border-radius: 999px; background: rgba(255,255,255,.23); }
.screen-lines b:nth-child(2) { width: 78%; }
.screen-lines b:nth-child(3) { width: 48%; }

.section { padding-block: 88px; }
.section.muted { background: var(--surface); }
.section-heading { max-width: 770px; margin-bottom: 38px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2, .clients-wrap h2, .contact-copy h2 { margin: 0; font-size: clamp(32px, 4.5vw, 50px); line-height: 1.1; letter-spacing: -.035em; }
.section-heading p { margin: 14px 0 0; color: var(--muted); font-size: 17px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--card-shadow); }
.feature-card img { width: 100%; height: auto; aspect-ratio: 3 / 2; margin: 0; border-radius: 0; object-fit: cover; object-position: center; background: var(--surface-2); }
.feature-body { padding: 24px 26px 28px; }
.feature-body h2 { margin: 0 0 8px; font-size: 25px; letter-spacing: -.02em; }
.feature-body p { margin: 0; color: var(--muted); }

.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.model-card { min-height: 240px; padding: 28px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); box-shadow: 0 4px 16px rgba(16,24,40,.025); }
.model-card > span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--brand-soft); color: var(--brand-2); font-weight: 800; }
.model-card h3 { margin: 26px 0 8px; font-size: 23px; }
.model-card p { margin: 0; color: var(--muted); }

.clients-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; padding: 52px; border-radius: 28px; background: linear-gradient(135deg, #101827, #20344b); color: #fff; }
.clients-wrap .eyebrow { color: #86d6fa; }
.clients-copy { display: grid; gap: 12px; }
.clients-wrap p { margin: 0; color: #d9e2ee; font-size: 17px; }

.plans-section { background: var(--surface); border-top: 1px solid var(--line); }
.plan-group { margin-top: 46px; }
.plan-group + .plan-group { margin-top: 62px; padding-top: 52px; border-top: 1px solid var(--line); }
.plan-group-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: end; margin-bottom: 23px; }
.plan-group-heading h3 { margin: 2px 0 0; font-size: clamp(27px, 3.2vw, 38px); letter-spacing: -.025em; }
.plan-group-heading p { margin: 0; color: var(--muted); max-width: 640px; justify-self: end; }
.plan-kicker { color: var(--brand-2); font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.plans-grid { display: grid; gap: 20px; align-items: stretch; }
.plans-grid-small { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; margin-inline: auto; }
.plans-grid-complete { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plan-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--card-shadow); }
.plan-card.featured { border: 2px solid var(--brand); box-shadow: 0 22px 50px rgba(20,129,186,.16); }
.plans-grid-complete .plan-card.featured { transform: translateY(-8px); }
.badge { position: absolute; top: 18px; right: 18px; padding: 6px 10px; background: var(--brand-soft); color: var(--brand-2); border-radius: 999px; font-size: 10px; font-weight: 850; letter-spacing: .03em; }
.plan-card h3 { margin: 0 0 10px; padding-right: 112px; font-size: 28px; }
.price { min-height: 58px; max-width: 330px; color: var(--brand-2); font-size: 19px; font-weight: 850; line-height: 1.35; }
.plan-card ul { flex: 1; list-style: none; margin: 18px 0 28px; padding: 0; display: grid; align-content: start; gap: 10px; color: var(--muted); }
.plan-card li { position: relative; padding-left: 27px; }
.plan-card li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.plan-card li.plan-note-item { padding-left: 0; margin-top: -3px; font-size: 12px; font-style: italic; }
.plan-card li.plan-note-item::before { display: none; }
.plans-footnote { max-width: 850px; margin: 32px auto 0; text-align: center; color: var(--muted); font-size: 12px; }

.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-copy p { color: var(--muted); font-size: 17px; }
.contact-list { display: grid; gap: 12px; margin: 28px 0; }
.contact-list a { display: grid; padding: 14px 16px; border-radius: 13px; background: var(--card); border: 1px solid var(--line); }
.contact-list a:hover { border-color: var(--brand); }
.contact-list strong { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.contact-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 7px; margin-bottom: 16px; font-size: 13px; font-weight: 750; color: var(--ink); }
input, textarea { width: 100%; border: 1px solid var(--input-border); border-radius: 11px; background: var(--input); color: var(--ink); padding: 12px 13px; outline: 0; transition: border .15s ease, box-shadow .15s ease; }
input::placeholder, textarea::placeholder { color: var(--muted); opacity: .78; }
input:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(20,129,186,.12); }
textarea { resize: vertical; }
.hp { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; }
.alert { margin-bottom: 18px; padding: 12px 14px; border-radius: 10px; font-size: 14px; }
.alert.success { background: #ecfdf3; color: #05603a; border: 1px solid #abefc6; }
.alert.error { background: #fef3f2; color: #912018; border: 1px solid #fecdca; }
html[data-theme="dark"] .alert.success { background: #0c2b20; color: #9de3c5; border-color: #275b49; }
html[data-theme="dark"] .alert.error { background: #321513; color: #ffb4ad; border-color: #65312c; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.links-section { background: var(--surface); border-top: 1px solid var(--line); }
.links-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 980px; margin-inline: auto; }
.link-panel { display: flex; flex-direction: column; min-width: 0; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--card-shadow); }
.link-panel-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 20px; border-radius: 16px; background: var(--brand-soft); color: var(--brand-2); }
.link-panel-icon svg { width: 27px; height: 27px; fill: currentColor; }
.link-panel-copy { flex: 1; }
.link-kicker { color: var(--brand-2); font-size: 11px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.link-panel h3 { margin: 5px 0 9px; font-size: 26px; letter-spacing: -.02em; }
.link-panel p { margin: 0 0 22px; color: var(--muted); }
.partner-links { display: grid; gap: 14px; }
.partner-site { display: grid; gap: 9px; padding-top: 14px; border-top: 1px solid var(--line); }
.partner-site:first-child { padding-top: 0; border-top: 0; }
.partner-site-copy { display: grid; gap: 4px; }
.partner-site-copy strong { color: var(--ink); font-size: 15px; }
.partner-site-copy span { color: var(--muted); font-size: 13px; line-height: 1.55; }
.link-action { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 48px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink); font-size: 14px; font-weight: 760; word-break: break-word; transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease; }
.link-action:hover { transform: translateY(-1px); border-color: var(--brand); background: var(--brand-soft); color: var(--brand-2); }
.link-action svg { flex: 0 0 auto; width: 19px; height: 19px; fill: currentColor; }

.site-footer { background: #080e18; color: #cdd6e2; }
.footer-inner { min-height: 82px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 13px; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.92); border-radius: 50%; background: #18a968; color: #fff; box-shadow: 0 13px 32px rgba(0,0,0,.25); transition: transform .15s ease, background .15s ease, box-shadow .15s ease; }
.floating-whatsapp:hover { transform: translateY(-2px) scale(1.03); background: #138b57; box-shadow: 0 16px 36px rgba(0,0,0,.29); }
.floating-whatsapp svg { width: 31px; height: 31px; fill: currentColor; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 1200; max-width: min(420px, calc(100% - 32px)); transform: translate(-50%, 18px); padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--card-strong); color: var(--ink); box-shadow: var(--shadow); font-size: 13px; font-weight: 700; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 1020px) {
  .main-nav { gap: 16px; }
  .main-nav > a { font-size: 13px; }
}

@media (max-width: 900px) {
  .topbar-inner { align-items: stretch; padding-block: 6px; }
  .topbar-contact { align-items: flex-start; justify-content: center; flex-direction: column; gap: 0; }
  .site-tools { justify-content: flex-end; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 16px 20px 22px; background: #111827; border-top: 1px solid rgba(255,255,255,.09); box-shadow: 0 18px 30px rgba(0,0,0,.2); flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 8px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .hero-grid, .clients-wrap, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; padding-block: 64px; }
  .hero-art { max-width: 560px; margin-inline: auto; width: 100%; }
  .feature-grid, .model-grid, .plans-grid-complete, .links-grid { grid-template-columns: 1fr; }
  .feature-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .feature-card img { height: 100%; aspect-ratio: auto; }
  .clients-wrap { gap: 24px; padding: 34px; }
  .contact-grid { gap: 36px; }
  .plans-grid-complete .plan-card.featured { transform: none; }
  .plan-group-heading { grid-template-columns: 1fr; gap: 10px; }
  .plan-group-heading p { justify-self: start; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .topbar-inner { flex-direction: column; align-items: center; gap: 6px; padding-block: 7px; }
  .topbar-contact { flex-direction: row; flex-wrap: wrap; gap: 4px 15px; justify-content: center; text-align: center; }
  .site-tools { width: 100%; justify-content: center; }
  .theme-button { padding-inline: 8px; }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 190px; }
  .hero-grid { min-height: auto; padding-block: 52px; }
  .hero h1 { font-size: clamp(39px, 12vw, 58px); }
  .hero p { font-size: 16px; }
  .hero-points { display: grid; gap: 5px; }
  .section { padding-block: 64px; }
  .feature-card { display: block; }
  .plans-grid-small { grid-template-columns: 1fr; }
  .plan-card h3 { padding-right: 0; }
  .badge { position: static; align-self: flex-start; order: -1; margin-bottom: 13px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-card { padding: 22px; }
  .clients-wrap { padding: 28px 22px; }
  .footer-inner { padding-block: 20px; flex-direction: column; justify-content: center; text-align: center; gap: 5px; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .toast { bottom: 82px; }
}

@media (max-width: 430px) {
  .theme-button span:last-child { display: none; }
  .theme-button { width: 34px; justify-content: center; }
  .share-button span { display: none; }
  .share-button { width: 34px; justify-content: center; padding-inline: 0; }
}

/* v1.3.3 — identidade contemporânea e WhatsApp no topo */
.logo-dark { display: none; }
html[data-theme="dark"] .logo-light { display: none; }
html[data-theme="dark"] .logo-dark { display: block; }
.brand { display: flex; align-items: center; min-width: 0; }
.brand img { width: 252px; max-width: 100%; height: auto; max-height: 58px; object-fit: contain; object-position: left center; }
.hero-brand-image { width: min(82%, 390px); max-height: none; object-fit: contain; filter: drop-shadow(0 13px 26px rgba(7, 55, 120, .16)); }
html[data-theme="dark"] .hero-brand-image { filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .34)); }
.topbar-whatsapp { display: inline-flex; align-items: center; gap: 7px; font-weight: 720; }
.topbar-whatsapp svg { width: 17px; height: 17px; fill: #31d37d; flex: 0 0 auto; }
.topbar-whatsapp:hover svg { fill: #72f1ad; }
@media (max-width: 640px) {
  .brand img { width: 218px; max-height: 52px; }
  .hero-brand-image { width: min(90%, 340px); }
}

/* v1.3.4 — identidade artística e nova apresentação visual */
.brand img { width: 270px; max-height: 62px; }
.hero-art { perspective: none; }
.hero-showcase {
  position: relative;
  width: min(100%, 590px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(135, 205, 255, .24);
  border-radius: 28px;
  background: #071a35;
  box-shadow: 0 34px 85px rgba(0, 0, 0, .38), 0 0 0 1px rgba(255,255,255,.035) inset;
  transform: rotateY(-3deg) rotateX(1.5deg);
}
.hero-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.12), transparent 24%, transparent 74%, rgba(50,165,255,.08));
}
.hero-showcase img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.hero-showcase figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(4, 18, 41, .72);
  color: #eaf7ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  backdrop-filter: blur(9px);
}

@media (max-width: 960px) {
  .hero-showcase { margin-inline: auto; transform: none; }
}

@media (max-width: 640px) {
  .brand img { width: 232px; max-height: 54px; }
  .hero-showcase { border-radius: 22px; }
  .hero-showcase figcaption { left: 12px; right: 12px; bottom: 11px; max-width: calc(100% - 24px); font-size: 10.5px; padding: 7px 10px; }
}


/* v1.3.5 — WhatsApp sem número público */
.topbar-whatsapp {
  width: 36px; height: 36px; padding: 0; justify-content: center; gap: 0;
  border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  background: linear-gradient(145deg,#25d366,#0fa958);
  box-shadow: 0 7px 20px rgba(18,180,96,.28), inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.topbar-whatsapp svg { width: 20px; height: 20px; fill: #fff; }
.topbar-whatsapp:hover { transform: translateY(-1px) scale(1.04); box-shadow: 0 10px 24px rgba(18,180,96,.36); filter: saturate(1.06); }
.topbar-whatsapp:hover svg { fill: #fff; }
.contact-whatsapp-link { align-items: center !important; flex-direction: row !important; gap: 12px !important; }
.contact-whatsapp-icon { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg,#25d366,#0fa958); color: #fff; box-shadow: 0 8px 18px rgba(18,180,96,.23); }
.contact-whatsapp-icon svg { width: 22px; height: 22px; fill: currentColor; }
.contact-whatsapp-link > span:last-child { display: grid; gap: 2px; }
.contact-whatsapp-link small { color: var(--muted); font-size: 12px; font-weight: 600; }
@media (max-width: 640px) { .topbar-whatsapp { width: 34px; height: 34px; } }

/* v1.4.0 — sete soluções comerciais e integrações */
.solutions-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(20,129,186,.07), transparent 28%),
    radial-gradient(circle at 92% 86%, rgba(89,92,255,.055), transparent 30%),
    var(--bg);
}
.solutions-primary-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.solution-card { position: relative; min-width: 0; border: 1px solid var(--line); border-radius: 22px; background: var(--card); box-shadow: var(--card-shadow); overflow: hidden; }
.solution-card-media { display: flex; flex-direction: column; }
.solution-card-media > img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; background: var(--surface-2); }
.solution-content { position: relative; padding: 25px 26px 28px; }
.solution-number { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 28px; margin-bottom: 15px; padding: 0 10px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-2); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.solution-card h3 { margin: 0 0 8px; font-size: 24px; line-height: 1.16; letter-spacing: -.025em; }
.solution-card strong { display: block; margin-bottom: 11px; color: var(--ink); font-size: 14px; line-height: 1.45; }
.solution-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.solutions-subheading { max-width: 860px; margin: 72px auto 28px; text-align: center; }
.solutions-subheading h3 { margin: 0; font-size: clamp(28px, 3.7vw, 42px); line-height: 1.12; letter-spacing: -.035em; }
.solutions-subheading p { margin: 13px auto 0; max-width: 760px; color: var(--muted); font-size: 16px; }
.solutions-integration-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.solution-card-integration { display: grid; grid-template-columns: 88px 1fr; align-items: start; padding: 28px; overflow: visible; }
.solution-card-integration .solution-content { padding: 0; }
.solution-icon { width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid rgba(20,129,186,.2); border-radius: 20px; background: linear-gradient(145deg, var(--brand-soft), var(--card)); box-shadow: 0 9px 24px rgba(20,129,186,.1); }
.solution-icon img { width: 42px; height: 42px; object-fit: contain; }
.solution-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.solution-tags span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 11px; font-weight: 750; }
.solutions-cta-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; margin-top: 34px; }
.solution-cta-card { padding: 31px; border-radius: 22px; background: linear-gradient(135deg,#101827,#1c3450); color: #fff; box-shadow: var(--shadow); }
.solution-cta-card .eyebrow { color: #83d4fb; }
.solution-cta-card h3 { margin: 0; font-size: clamp(25px,3vw,34px); line-height: 1.12; letter-spacing: -.03em; }
.solution-cta-card p { margin: 14px 0 22px; color: #d5e1ed; }
.solution-cta-card .button { width: fit-content; }
.solution-cta-highlight { background: linear-gradient(135deg, var(--card), var(--brand-soft)); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--card-shadow); }
.solution-cta-highlight .eyebrow { color: var(--brand-2); }
.solution-cta-highlight p { color: var(--muted); }

html[data-theme="dark"] .solution-icon { border-color: rgba(72,183,232,.25); box-shadow: 0 10px 26px rgba(0,0,0,.18); }
html[data-theme="dark"] .solution-cta-highlight { background: linear-gradient(135deg, var(--card), #142b3c); }

@media (max-width: 980px) {
  .solutions-primary-grid { grid-template-columns: 1fr; }
  .solution-card-media { display: grid; grid-template-columns: minmax(240px,.8fr) 1.2fr; }
  .solution-card-media > img { height: 100%; min-height: 310px; aspect-ratio: auto; }
  .solutions-integration-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .solution-card-media { display: block; }
  .solution-card-media > img { height: auto; min-height: 0; aspect-ratio: 3 / 2; }
  .solution-card-integration { grid-template-columns: 1fr; gap: 18px; padding: 23px; }
  .solution-icon { width: 62px; height: 62px; border-radius: 18px; }
  .solution-icon img { width: 38px; height: 38px; }
  .solution-content { padding: 22px; }
  .solution-card h3 { font-size: 22px; }
  .solutions-subheading { margin-top: 56px; }
  .solutions-cta-grid { grid-template-columns: 1fr; }
  .solution-cta-card { padding: 25px; }
}

/* v1.4.1 — Opção 3 do logo + layout contemporâneo inspirado na referência */
:root {
  --bg: #f8fbff;
  --surface: #f2f7ff;
  --surface-2: #eaf2ff;
  --card: #ffffff;
  --card-strong: #ffffff;
  --ink: #081b43;
  --muted: #52698c;
  --line: #d7e4f5;
  --brand: #087cff;
  --brand-2: #045dc8;
  --brand-soft: #e9f3ff;
  --header: rgba(255,255,255,.94);
  --hero-text: #071b45;
  --hero-muted: #3f5d86;
  --shadow: 0 18px 55px rgba(15,80,160,.12);
  --card-shadow: 0 10px 30px rgba(17,74,145,.075);
}
html[data-theme="dark"] {
  --bg: #07111f;
  --surface: #0b1728;
  --surface-2: #10203a;
  --card: #0c1a2d;
  --card-strong: #10213a;
  --ink: #f4f8ff;
  --muted: #aabbd3;
  --line: #243956;
  --brand: #30a4ff;
  --brand-2: #67c3ff;
  --brand-soft: #0c2c4d;
  --header: rgba(6,16,31,.95);
  --hero-text: #f7fbff;
  --hero-muted: #c6d5e9;
  --shadow: 0 18px 55px rgba(0,0,0,.3);
  --card-shadow: 0 12px 30px rgba(0,0,0,.22);
}

body { background: var(--bg); }
.container { width: min(1320px, calc(100% - 44px)); }
.topbar { display: none !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header);
  color: var(--ink);
  border-bottom: 1px solid rgba(10,79,160,.12);
  backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 2px 18px rgba(19,72,130,.035);
}
html[data-theme="dark"] .site-header { color: #fff; border-bottom-color: rgba(255,255,255,.09); }
.site-header.scrolled { box-shadow: 0 10px 28px rgba(15,64,124,.12); }
.nav-wrap { min-height: 78px; gap: 18px; }
.brand { flex: 0 0 230px; }
.brand img { width: 230px; max-height: 58px; }
.main-nav { flex: 1 1 auto; display: flex; justify-content: flex-end; align-items: center; gap: 8px; font-size: 12px; font-weight: 760; }
.main-nav > a:not(.nav-whatsapp):not(.nav-webapp) { padding: 9px 9px; border-radius: 10px; color: var(--ink); opacity: .9; white-space: nowrap; }
.main-nav > a:not(.nav-whatsapp):not(.nav-webapp):hover { color: var(--brand-2); background: var(--brand-soft); opacity: 1; }
html[data-theme="dark"] .main-nav > a:not(.nav-whatsapp):not(.nav-webapp) { color: #edf5ff; }

.nav-whatsapp, .nav-webapp {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  white-space: nowrap;
}
.nav-whatsapp { background: linear-gradient(135deg,#1bc56c,#0aa74f); }
.nav-webapp { background: linear-gradient(135deg,#087cff,#0a63db); }
.nav-whatsapp:hover, .nav-webapp:hover { color: #fff !important; transform: translateY(-1px); filter: saturate(1.05); }
.nav-whatsapp svg { width: 21px; height: 21px; fill: currentColor; flex: 0 0 auto; }
.nav-whatsapp > span, .nav-webapp > span:last-child { display: grid; line-height: 1.1; }
.nav-whatsapp strong, .nav-webapp strong { font-size: 11px; }
.nav-whatsapp small, .nav-webapp small { margin-top: 2px; font-size: 8.5px; font-weight: 600; opacity: .82; }
.nav-webapp-icon { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); font-size: 15px; }

.site-header .share-button { min-height: 40px; padding: 7px 10px; color: var(--brand-2); border: 1px solid #a8c9f5; background: rgba(255,255,255,.7); }
.site-header .share-button:hover { color: var(--brand-2); background: var(--brand-soft); }
html[data-theme="dark"] .site-header .share-button { color: #dceeff; border-color: #2a4d75; background: #0d2038; }
.site-header .theme-switcher { border-color: #c8d9ec; background: var(--surface); }
.site-header .theme-button { color: var(--muted); }
.site-header .theme-button:hover { background: var(--brand-soft); color: var(--brand-2); }
.site-header .theme-button[aria-pressed="true"] { background: #0b1c3e; color: #fff; }
html[data-theme="dark"] .site-header .theme-button[aria-pressed="true"] { background: #fff; color: #08172d; }
.menu-toggle { background: #0a1d3c; }

.hero {
  overflow: hidden;
  color: var(--hero-text);
  background:
    radial-gradient(circle at 7% 14%, rgba(53,159,255,.12), transparent 31%),
    linear-gradient(90deg, #ffffff 0%, #f4f9ff 42%, #dfefff 72%, #c7e4ff 100%);
  border-bottom: 1px solid var(--line);
}
html[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(30,139,255,.28), transparent 34%),
    linear-gradient(110deg,#07111f 0%,#0b1b32 52%,#0b3159 100%);
}
.hero-grid { min-height: 520px; grid-template-columns: .9fr 1.1fr; gap: 34px; padding-block: 46px 34px; }
.hero-copy { position: relative; z-index: 3; }
.hero .eyebrow { color: var(--brand-2); margin-bottom: 11px; }
html[data-theme="dark"] .hero .eyebrow { color: #76caff; }
.hero h1 { max-width: 700px; color: var(--hero-text); font-size: clamp(42px,5vw,68px); line-height: .98; letter-spacing: -.052em; }
.hero-accent { color: var(--brand); }
.hero p { max-width: 650px; margin-top: 20px; color: var(--hero-muted); font-size: 17px; line-height: 1.55; }
.hero-benefits { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; margin-top: 25px; }
.hero-benefits > span { display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 8px; align-items: center; min-width: 0; }
.hero-benefits b { grid-row: 1 / 3; width: 32px; height: 32px; display: grid; place-items: center; color: var(--brand); font-size: 20px; font-weight: 850; }
.hero-benefits strong { font-size: 12px; line-height: 1.1; }
.hero-benefits small { color: var(--muted); font-size: 9px; line-height: 1.2; }
html[data-theme="dark"] .hero-benefits small { color: #aabed6; }
.hero-actions { margin-top: 27px; gap: 12px; }
.hero-actions .button { min-height: 52px; padding: 9px 18px; border-radius: 999px; }
.hero-actions .button > span:last-child { display: grid; text-align: left; line-height: 1.1; }
.hero-actions .button strong { font-size: 13px; }
.hero-actions .button small { margin-top: 3px; font-size: 9px; font-weight: 650; opacity: .8; }
.hero-whatsapp { box-shadow: 0 12px 26px rgba(15,167,84,.2); }
.hero-outline { color: var(--brand-2); border: 1.5px solid var(--brand); background: rgba(255,255,255,.72); }
.hero-outline:hover { background: var(--brand-soft); }
html[data-theme="dark"] .hero-outline { color: #e8f5ff; background: rgba(7,25,49,.54); border-color: #4eaef5; }

.hero-art { position: relative; justify-content: stretch; }
.hero-showcase { width: 100%; max-width: none; margin: 0; border: 0; border-radius: 28px; background: #dcecff; box-shadow: 0 24px 60px rgba(14,71,136,.22); transform: none; }
.hero-showcase img { aspect-ratio: 16 / 10; object-fit: cover; object-position: center; }
.hero-showcase figcaption { display: none; }
.hero-showcase::after { background: linear-gradient(100deg, transparent 54%, rgba(7,40,88,.14)); }
.hero-callout { position: absolute; top: 24px; right: 22px; z-index: 3; width: min(270px,44%); padding: 17px 18px; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; background: rgba(5,28,67,.86); color: #fff; box-shadow: 0 14px 36px rgba(1,24,59,.24); backdrop-filter: blur(9px); }
.hero-callout small, .hero-callout strong, .hero-callout span { display: block; }
.hero-callout small { font-size: 10px; font-weight: 700; color: #d7ebff; }
.hero-callout strong { margin-top: 3px; font-size: 13px; line-height: 1.25; }
.hero-callout span { margin-top: 13px; padding: 10px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: rgba(19,115,255,.16); font-size: 12px; font-weight: 800; }

.hero-webapp-strip { min-height: 76px; margin-bottom: 34px; display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center; padding: 13px 17px; border: 1px solid #8fbcef; border-radius: 18px; background: linear-gradient(120deg,#071b42,#074b9a); color: #fff; box-shadow: 0 14px 32px rgba(4,54,119,.17); }
.hero-webapp-mark { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.08); }
.hero-webapp-mark img { width: 42px; height: 42px; }
.hero-webapp-strip > div:nth-child(2) { display: grid; }
.hero-webapp-strip small { color: #6bc5ff; font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.hero-webapp-strip strong { font-size: 15px; }
.hero-webapp-strip span { color: #bfd9f5; font-size: 11px; }
.hero-webapp-strip > a { display: inline-flex; align-items: center; gap: 7px; padding: 10px 14px; border-radius: 999px; background: #087cff; color: #fff; font-size: 11px; font-weight: 850; }
.hero-webapp-strip > a:hover { background: #0a68d8; }

.section { padding-block: 72px; }
.section-heading { margin-bottom: 30px; }
.section-heading h2, .clients-wrap h2, .contact-copy h2 { font-size: clamp(31px,3.7vw,46px); }
.solutions-section { background: var(--bg); }
.solutions-primary-grid { gap: 18px; }
.solution-card { border-radius: 16px; box-shadow: 0 8px 24px rgba(21,82,150,.07); }
.solution-card-media > img { aspect-ratio: 2.45 / 1; }
.solution-card-media .solution-content { padding: 17px 18px 20px; }
.solution-number { min-width: 34px; height: 24px; margin-bottom: 10px; font-size: 9px; }
.solution-card h3 { font-size: 20px; }
.solution-card strong { font-size: 13px; }
.solution-card p { font-size: 13px; line-height: 1.55; }
.solutions-subheading { margin-top: 54px; }
.solution-card-integration { border-radius: 16px; padding: 22px; }
.solutions-cta-grid { margin-top: 26px; }
.solution-cta-card { border-radius: 18px; }

.clients-wrap { padding: 38px 42px; border-radius: 20px; background: linear-gradient(120deg,#061a3d,#074b98); }
.plans-section { background: linear-gradient(180deg,var(--surface) 0%,var(--bg) 100%); }
.plan-group { margin-top: 34px; }
.plan-group + .plan-group { margin-top: 42px; padding-top: 38px; }
.plan-card { padding: 22px; border-radius: 16px; }
.plan-card h3 { font-size: 24px; }
.price { min-height: 52px; font-size: 17px; }
.plan-card ul { margin: 13px 0 20px; gap: 7px; font-size: 13px; }
.plans-grid-complete .plan-card.featured { transform: translateY(-4px); }
.badge { top: 13px; right: 13px; }

.links-section { background: var(--bg); }
.links-grid { max-width: none; grid-template-columns: .9fr 1.1fr; }
.link-panel { padding: 24px; border-radius: 16px; }

.contact-section { background: linear-gradient(180deg,var(--bg),var(--surface)); }
.contact-card { border-radius: 18px; }
.site-footer { background: linear-gradient(90deg,#03122d,#062958,#031a3d); }
.footer-inner { min-height: 106px; display: grid; grid-template-columns: 245px 1fr auto; gap: 28px; color: #dbe9fa; }
.footer-brand img { width: 225px; height: auto; }
.footer-nav { display: flex; align-items: center; justify-content: center; gap: 18px; font-size: 11px; font-weight: 700; }
.footer-nav a:hover { color: #67c6ff; }
.footer-meta { display: grid; justify-items: end; gap: 2px; color: #a9bfd9; font-size: 10px; }
.mobile-bottom-nav { display: none; }
.floating-whatsapp { right: 18px; bottom: 18px; }

@media (max-width: 1220px) {
  .brand { flex-basis: 205px; }
  .brand img { width: 205px; }
  .main-nav { gap: 5px; }
  .main-nav > a:not(.nav-whatsapp):not(.nav-webapp) { padding-inline: 6px; font-size: 11px; }
  .nav-whatsapp strong, .nav-webapp strong { font-size: 10px; }
  .site-header .share-button span { display: none; }
  .site-header .share-button { width: 40px; justify-content: center; padding-inline: 0; }
  .site-header .theme-button span:last-child { display: none; }
  .site-header .theme-button { width: 31px; justify-content: center; padding-inline: 0; }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 76px; }
  .container { width: min(100% - 32px, 900px); }
  .nav-wrap { min-height: 70px; }
  .brand { flex-basis: auto; }
  .brand img { width: 220px; max-height: 54px; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; max-height: calc(100vh - 70px); overflow-y: auto; padding: 14px 16px 22px; border-top: 1px solid var(--line); background: var(--card); box-shadow: 0 20px 40px rgba(7,34,72,.16); flex-direction: column; align-items: stretch; gap: 6px; }
  html[data-theme="dark"] .main-nav { background: #08172a; border-top-color: #213958; }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.nav-whatsapp):not(.nav-webapp) { padding: 11px 12px; font-size: 13px; }
  .nav-whatsapp, .nav-webapp { border-radius: 14px; justify-content: center; min-height: 50px; }
  .site-header .share-button { width: 100%; min-height: 44px; justify-content: center; }
  .site-header .share-button span { display: inline; }
  .site-header .theme-switcher { justify-content: center; padding: 5px; }
  .site-header .theme-button { width: auto; flex: 1; justify-content: center; }
  .site-header .theme-button span:last-child { display: inline; }

  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 28px; padding-block: 42px 26px; }
  .hero-copy { max-width: 760px; }
  .hero h1 { max-width: 780px; }
  .hero-art { width: 100%; max-width: 780px; margin-inline: auto; }
  .hero-showcase { border-radius: 22px; }
  .hero-webapp-strip { margin-bottom: 28px; }
  .solutions-primary-grid { grid-template-columns: 1fr; }
  .solution-card-media { display: grid; grid-template-columns: 38% 62%; }
  .solution-card-media > img { min-height: 100%; height: 100%; aspect-ratio: auto; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; padding-block: 24px; }
  .footer-meta { justify-items: center; }
}

@media (max-width: 680px) {
  body { padding-bottom: 64px; }
  .container { width: min(100% - 24px, 640px); }
  .brand img { width: 206px; }
  .menu-toggle { width: 44px; height: 44px; border-radius: 12px; }
  .hero { background: linear-gradient(180deg,#f9fcff 0%,#eaf5ff 64%,#d8ecff 100%); }
  html[data-theme="dark"] .hero { background: linear-gradient(180deg,#07121f,#0a1d35 70%,#0a3157); }
  .hero-grid { padding-top: 34px; gap: 24px; }
  .hero .eyebrow { font-size: 10px; }
  .hero h1 { font-size: clamp(38px,11.3vw,54px); line-height: .98; }
  .hero p { font-size: 15px; margin-top: 16px; }
  .hero-benefits { grid-template-columns: 1fr 1fr; gap: 14px 8px; }
  .hero-benefits > span { grid-template-columns: 31px 1fr; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; min-height: 56px; }
  .hero-showcase { border-radius: 18px; }
  .hero-showcase img { aspect-ratio: 4 / 3; }
  .hero-callout { position: absolute; top: auto; left: 12px; right: 12px; bottom: 12px; width: auto; padding: 12px 13px; border-radius: 14px; }
  .hero-callout small { font-size: 8.5px; }
  .hero-callout strong { font-size: 11px; }
  .hero-callout span { margin-top: 8px; padding: 7px 9px; font-size: 10px; }
  .hero-webapp-strip { grid-template-columns: 44px 1fr; margin-bottom: 20px; padding: 12px; border-radius: 15px; }
  .hero-webapp-mark { width: 44px; height: 44px; }
  .hero-webapp-mark img { width: 35px; height: 35px; }
  .hero-webapp-strip strong { font-size: 13px; }
  .hero-webapp-strip span { font-size: 9.5px; }
  .hero-webapp-strip > a { grid-column: 1 / -1; width: 100%; justify-content: center; }

  .section { padding-block: 52px; }
  .section-heading { text-align: left !important; margin-inline: 0 !important; }
  .section-heading h2, .clients-wrap h2, .contact-copy h2 { font-size: clamp(30px,9vw,41px); }
  .solution-card-media { display: block; }
  .solution-card-media > img { height: auto; min-height: 0; aspect-ratio: 16 / 8.5; }
  .solutions-subheading { text-align: left; margin-top: 46px; }
  .solution-card-integration { border-radius: 14px; }
  .solutions-cta-grid { gap: 14px; }
  .clients-wrap { padding: 26px 22px; border-radius: 16px; }
  .plan-group-heading { grid-template-columns: 1fr; }
  .plan-card { padding: 20px; }
  .links-grid { grid-template-columns: 1fr; }
  .link-panel { padding: 20px; }
  .footer-nav { flex-wrap: wrap; gap: 10px 16px; }
  .footer-brand img { width: 210px; }

  .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 920; height: 62px; display: grid; grid-template-columns: repeat(4,1fr); padding: 5px 8px max(5px,env(safe-area-inset-bottom)); border-top: 1px solid rgba(104,157,216,.24); background: rgba(5,21,48,.96); color: #dcecff; backdrop-filter: blur(14px); }
  .mobile-bottom-nav a { display: grid; place-items: center; align-content: center; gap: 1px; border-radius: 10px; font-weight: 750; }
  .mobile-bottom-nav a:hover { background: rgba(31,142,255,.16); color: #fff; }
  .mobile-bottom-nav span { font-size: 20px; line-height: 1; color: #5dbaff; }
  .mobile-bottom-nav small { font-size: 9px; }
  .floating-whatsapp { right: 14px; bottom: 74px; width: 53px; height: 53px; }
  .toast { bottom: 130px; }
}

/* ===== v1.4.2 - Seletor internacional de idioma ===== */
.language-switcher {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px 4px 9px;
  border: 1px solid #c8d9ec;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  box-shadow: 0 4px 13px rgba(8,71,143,.05);
}
.language-icon { flex: 0 0 auto; font-size: 15px; line-height: 1; }
.language-switcher select {
  min-width: 112px;
  max-width: 130px;
  height: 30px;
  padding: 0 22px 0 2px;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 10.5px;
  font-weight: 760;
  cursor: pointer;
}
.language-switcher select:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 7px;
}
html[data-theme="dark"] .language-switcher {
  border-color: #2a4d75;
  background: #0d2038;
  color: #edf5ff;
}
html[data-theme="dark"] .language-switcher option { background: #0d2038; color: #edf5ff; }

@media (max-width: 1220px) {
  .language-switcher { padding-inline: 7px 5px; }
  .language-switcher select { min-width: 94px; max-width: 104px; font-size: 9.5px; }
}

@media (max-width: 980px) {
  .language-switcher {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    border-radius: 14px;
    padding: 6px 12px;
  }
  .language-switcher select {
    width: auto;
    min-width: 180px;
    max-width: none;
    height: 34px;
    font-size: 13px;
    text-align: center;
  }
}
@media (min-width: 981px) {
  .language-switcher select { min-width: 126px; max-width: 148px; }
}

/* ===== v1.4.4 - i18n integral e marca sem texto embutido ===== */
html.i18n-pending body { opacity: 0; }
body { transition: opacity .12s ease; }
.brand {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 0;
}
.brand-logo-wrap { display: block; line-height: 0; }
.brand-logo-wrap img { display: block; }
.brand-tagline {
  margin: -4px 0 0 56px;
  color: #4b6380;
  font-size: 8px;
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: .085em;
  text-transform: uppercase;
  white-space: nowrap;
}
html[data-theme="dark"] .brand-tagline { color: #a9bfd7; }
.footer-brand { display: grid; align-content: center; justify-items: start; }
.footer-brand-tagline {
  margin: -5px 0 0 53px;
  color: #a9bfd9;
  font-size: 7.5px;
  font-weight: 760;
  letter-spacing: .08em;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}
.language-switcher[translate="no"], .language-switcher[translate="no"] * { unicode-bidi: isolate; }

@media (max-width: 1220px) {
  .brand-tagline { margin-left: 49px; font-size: 7.2px; }
}
@media (max-width: 980px) {
  .brand-tagline { margin-left: 52px; font-size: 7.4px; }
}
@media (max-width: 680px) {
  .brand-tagline { margin-left: 48px; font-size: 6.7px; letter-spacing: .06em; }
  .footer-brand { justify-items: center; }
  .footer-brand-tagline { margin-left: 0; text-align: center; }
}

/* ===== v1.4.5 - idioma fixo no cabeçalho + hero responsivo localizado ===== */
.header-controls {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

/* O seletor fica sempre no cabeçalho, fora do menu recolhível. */
.header-language {
  position: relative;
  width: auto !important;
  min-width: 74px;
  min-height: 40px;
  justify-content: center;
  gap: 6px;
  padding: 5px 12px !important;
  border-radius: 999px !important;
  cursor: pointer;
  overflow: hidden;
}
.header-language .language-icon { font-size: 14px; }
.header-language .language-current {
  display: inline-block;
  min-width: 34px;
  color: inherit;
  font-size: 10.5px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .02em;
  text-align: center;
  white-space: nowrap;
}
.header-language select {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
.header-language:focus-within {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* A marca e a assinatura são elementos distintos, para a assinatura poder ser traduzida. */
.brand-tagline,
.footer-brand-tagline { text-transform: none; letter-spacing: .035em; }

.hero-picture { display: block; width: 100%; line-height: 0; }
.hero-showcase img {
  width: 100%;
  height: auto;
  aspect-ratio: auto !important;
  object-fit: contain;
  object-position: center;
}
.hero-showcase::after { display: none; }
.hero-callout { display: none !important; }

@media (min-width: 981px) {
  .nav-wrap { gap: 12px; }
  .main-nav { min-width: 0; }
  .header-controls { margin-left: 0; }
}

@media (max-width: 1220px) and (min-width: 981px) {
  .header-language { min-width: 66px; padding-inline: 9px !important; }
  .header-language .language-current { font-size: 9.5px; }
}

@media (max-width: 980px) {
  .nav-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .header-controls { margin-left: auto; }
  .header-language {
    width: auto !important;
    min-width: 68px;
    min-height: 42px;
    padding: 5px 9px !important;
    border-radius: 13px !important;
  }
  .header-language .language-current { font-size: 10px; }
  .menu-toggle { flex: 0 0 auto; }
  .main-nav { z-index: 20; }
}

@media (max-width: 680px) {
  .nav-wrap { min-height: 66px; }
  .brand { max-width: 174px; }
  .brand img { width: 174px; max-height: 45px; }
  .brand-tagline {
    margin-left: 40px;
    margin-top: -3px;
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 5.9px;
    line-height: 1.08;
    white-space: nowrap;
  }
  .header-controls { gap: 6px; }
  .header-language {
    min-width: 62px;
    min-height: 40px;
    padding: 4px 7px !important;
  }
  .header-language .language-icon { font-size: 13px; }
  .header-language .language-current { min-width: 29px; font-size: 9px; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero-showcase { overflow: hidden; }
  .hero-showcase img { aspect-ratio: auto !important; }
}

@media (max-width: 390px) {
  .brand { max-width: 154px; }
  .brand img { width: 154px; }
  .brand-tagline { margin-left: 35px; max-width: 116px; font-size: 5.3px; }
  .header-language { min-width: 58px; padding-inline: 6px !important; }
  .header-language .language-icon { display: none; }
}


/* ===== v1.4.6 - arte comercial, marca sem cache antigo e soluções sem numeração ===== */
.solution-number { display: none !important; }
.solution-card .solution-content { position: relative; }
.hero-showcase { background: linear-gradient(135deg,#eaf5ff,#d7ebff); }
.hero-showcase img { width:100%; height:auto; display:block; object-fit:cover; }
@media (max-width:680px){
  .hero-art { margin-top: 6px; }
  .hero-showcase { border-radius: 20px; box-shadow: 0 16px 38px rgba(3,42,92,.22); }
  .hero-showcase img { aspect-ratio:1/1 !important; object-fit:cover; object-position:center; }
  .brand-tagline { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}
