:root {
  --bg: #06101d;
  --bg-deep: #030916;
  --bg-soft: #0a1730;
  --panel: rgba(11, 25, 50, 0.78);
  --panel-strong: #0b1931;
  --line: rgba(135, 197, 255, 0.14);
  --line-strong: rgba(92, 183, 255, 0.28);
  --text: #edf7ff;
  --muted: #9cb3cf;
  --muted-light: #c2d5e9;
  --blue: #123bff;
  --cyan: #19b9ff;
  --cyan-light: #77ddff;
  --success: #48e6b0;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(0, 8, 24, 0.48);
  --shadow-soft: 0 18px 45px rgba(0, 10, 30, 0.32);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(18, 59, 255, .18), transparent 34%),
    radial-gradient(circle at 95% 22%, rgba(25, 185, 255, .12), transparent 26%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 35%, #071221 100%);
  color: var(--text);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 2.2rem)); margin: 0 auto; }

.page-grid {
  position: fixed; inset: 0; z-index: -3; pointer-events: none; opacity: .3;
  background-image:
    linear-gradient(rgba(101, 156, 226, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 156, 226, .065) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 0%, rgba(0,0,0,.72) 48%, transparent 96%);
}
.page-glow { position: fixed; z-index: -2; pointer-events: none; filter: blur(80px); border-radius: 50%; opacity: .28; }
.page-glow-one { width: 360px; height: 360px; background: #124aff; top: 11%; left: -180px; }
.page-glow-two { width: 320px; height: 320px; background: #00c7ff; top: 45%; right: -190px; opacity: .18; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(3, 9, 22, .72);
  border-bottom: 1px solid rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .85rem; min-width: max-content; }
.brand-symbol {
  position: relative; width: 50px; height: 50px; flex: 0 0 50px; overflow: hidden;
  border-radius: 15px; border: 1px solid rgba(99, 196, 255, .22);
  background: radial-gradient(circle at 72% 18%, rgba(25,185,255,.22), transparent 38%), linear-gradient(145deg, #0b1c3d, #071225);
  box-shadow: 0 8px 24px rgba(0, 16, 55, .45), inset 0 1px 0 rgba(255,255,255,.06);
}
.brand-symbol i {
  position: absolute; bottom: 10px; width: 7px; border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, #25d4ff 0%, #147dff 52%, #1739e8 100%);
  box-shadow: 0 0 14px rgba(25,185,255,.28); transform: skewX(-10deg);
}
.brand-symbol i:nth-child(1) { left: 10px; height: 16px; opacity: .78; }
.brand-symbol i:nth-child(2) { left: 22px; height: 25px; opacity: .9; }
.brand-symbol i:nth-child(3) { left: 34px; height: 34px; }
.brand-symbol.product-symbol { width: 58px; height: 58px; flex-basis: 58px; border-radius: 17px; }
.brand-symbol.product-symbol i { bottom: 11px; width: 8px; }
.brand-symbol.product-symbol i:nth-child(1) { left: 11px; height: 18px; }
.brand-symbol.product-symbol i:nth-child(2) { left: 25px; height: 29px; }
.brand-symbol.product-symbol i:nth-child(3) { left: 39px; height: 40px; }
.brand-copy { display: grid; gap: .15rem; }
.brand-copy strong { font-size: 1.05rem; letter-spacing: .25em; line-height: 1; }
.brand-copy small { color: #879bb8; font-size: .59rem; letter-spacing: .33em; font-weight: 700; }
.desktop-nav { display: flex; align-items: center; gap: 1.55rem; }
.desktop-nav > a { color: var(--muted); font-size: .92rem; font-weight: 600; transition: .2s ease; }
.desktop-nav > a:hover { color: var(--white); }
.client-link { border: 1px solid rgba(255,255,255,.12); padding: .78rem 1.05rem; border-radius: 999px; color: var(--white) !important; background: rgba(255,255,255,.045); }
.client-link:hover { border-color: rgba(25,185,255,.34); background: rgba(25,185,255,.08); }
.menu-button { width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.04); display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-button span { width: 20px; height: 2px; border-radius: 3px; background: white; transition: .25s ease; }
.menu-button.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.active span:nth-child(2) { opacity: 0; }
.menu-button.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { min-height: 730px; padding: 6rem 0 5rem; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 4rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; color: #bfe8ff; font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; border-radius: 4px; background: linear-gradient(90deg, var(--blue), var(--cyan)); box-shadow: 0 0 18px rgba(25,185,255,.55); }
.hero h1 { margin: 1.2rem 0 1.25rem; font-size: clamp(3.35rem, 6vw, 5.85rem); line-height: .98; letter-spacing: -.055em; max-width: 720px; }
.hero h1 em { display: block; font-style: normal; color: transparent; background: linear-gradient(100deg, #ffffff 0%, #a6e6ff 35%, #19b9ff 68%, #3158ff 100%); background-clip: text; -webkit-background-clip: text; }
.hero-copy > p { max-width: 650px; margin: 0; color: var(--muted-light); font-size: 1.08rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: .92rem 1.3rem; border-radius: 999px; border: 0; font-weight: 750; font-size: .93rem; cursor: pointer; transition: .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--blue), var(--cyan)); box-shadow: 0 16px 35px rgba(18, 70, 255, .29); }
.button-primary:hover { box-shadow: 0 20px 45px rgba(18, 100, 255, .38); }
.button-secondary { color: white; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); }
.button-secondary:hover, .button-ghost:hover { border-color: rgba(25,185,255,.38); background: rgba(25,185,255,.08); }
.button-ghost { color: #d7edff; background: transparent; border: 1px solid rgba(255,255,255,.12); }
.hero-pill-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.hero-pill-row span { padding: .65rem .85rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.075); background: rgba(255,255,255,.035); color: #b3c9df; font-size: .78rem; font-weight: 600; }

.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(90,187,255,.13); }
.orbit-one { width: 540px; height: 540px; }
.orbit-two { width: 420px; height: 420px; border-style: dashed; animation: spin 30s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.visual-panel { position: relative; z-index: 2; width: min(100%, 650px); overflow: hidden; border-radius: 28px; border: 1px solid rgba(124, 198, 255, .18); background: linear-gradient(180deg, rgba(12,28,57,.96), rgba(6,18,38,.97)); box-shadow: 0 38px 90px rgba(0,6,25,.62), 0 0 80px rgba(15,84,255,.12); transform: perspective(1100px) rotateY(-4deg) rotateX(1.5deg); }
.visual-topbar { min-height: 48px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 1rem; background: rgba(255,255,255,.035); border-bottom: 1px solid rgba(255,255,255,.06); }
.visual-dots { display: flex; gap: 6px; }
.visual-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.22); }
.visual-topbar > span { color: #8ca5c2; font-size: .68rem; }
.visual-topbar > b { justify-self: end; color: var(--success); font-size: .64rem; padding: .35rem .55rem; border: 1px solid rgba(72,230,176,.18); border-radius: 999px; background: rgba(72,230,176,.07); }
.visual-body { display: grid; grid-template-columns: 74px 1fr; min-height: 440px; }
.visual-sidebar { padding: 1.1rem .75rem; border-right: 1px solid rgba(255,255,255,.06); background: rgba(0,0,0,.08); display: flex; align-items: center; flex-direction: column; gap: 1.2rem; }
.visual-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--cyan)); font-weight: 800; box-shadow: 0 10px 24px rgba(18,59,255,.32); margin-bottom: .4rem; }
.visual-sidebar i { width: 26px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.08); }
.visual-sidebar i.active { background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.visual-content { padding: 1.35rem; }
.visual-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.visual-heading div { display: grid; gap: .35rem; }
.visual-heading span { color: #839bb8; font-size: .69rem; }
.visual-heading strong { font-size: 1.08rem; }
.visual-heading button { width: 35px; height: 35px; border: 0; border-radius: 11px; background: linear-gradient(135deg, var(--blue), var(--cyan)); font-size: 1.2rem; }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; }
.metric-grid article, .chart-card, .activity-card { border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.035); border-radius: 15px; }
.metric-grid article { padding: .9rem; display: grid; gap: .38rem; }
.metric-grid span { color: #829bb9; font-size: .62rem; }
.metric-grid strong { font-size: 1.25rem; }
.metric-grid small { color: #72d8ff; font-size: .52rem; }
.chart-card { margin-top: .8rem; padding: 1rem; }
.chart-head { display: flex; align-items: center; justify-content: space-between; }
.chart-head strong { font-size: .78rem; }
.chart-head span { color: #7f99b8; font-size: .58rem; }
.chart-bars { height: 132px; display: flex; align-items: end; gap: .65rem; padding: .8rem .4rem 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px); background-size: 100% 32px; }
.chart-bars i { flex: 1; height: var(--h); border-radius: 7px 7px 2px 2px; background: linear-gradient(180deg, #21c6ff, #1845ff); box-shadow: 0 0 18px rgba(25,185,255,.15); }
.activity-card { margin-top: .8rem; padding: .8rem 1rem; display: grid; grid-template-columns: auto 1fr auto; gap: .7rem; align-items: center; }
.activity-icon { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; color: var(--success); background: rgba(72,230,176,.09); border: 1px solid rgba(72,230,176,.16); }
.activity-card div { display: grid; gap: .2rem; }
.activity-card strong { font-size: .68rem; }
.activity-card small, .activity-card b { color: #7891af; font-size: .53rem; font-weight: 500; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: .65rem; padding: .8rem .9rem; border-radius: 15px; border: 1px solid rgba(105,193,255,.2); background: rgba(7,19,40,.9); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px); animation: float 5s ease-in-out infinite; }
.floating-card > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: #abddff; background: rgba(18,91,255,.16); font-size: .62rem; font-weight: 800; }
.floating-card div { display: grid; gap: .15rem; }
.floating-card strong { font-size: .72rem; }
.floating-card small { color: #87a1bd; font-size: .58rem; }
.floating-card-one { top: 30px; left: -6px; }
.floating-card-two { right: -10px; bottom: 118px; animation-delay: -1.5s; }
.floating-card-three { left: 46px; bottom: 18px; animation-delay: -3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.statement-strip { border-top: 1px solid rgba(255,255,255,.055); border-bottom: 1px solid rgba(255,255,255,.055); background: rgba(255,255,255,.018); }
.statement-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.statement-grid > div { min-height: 54px; display: grid; align-content: center; gap: .28rem; padding: 0 1.4rem; border-right: 1px solid rgba(255,255,255,.065); }
.statement-grid > div:first-child { padding-left: 0; }
.statement-grid > div:last-child { border-right: 0; }
.statement-grid strong { font-size: .9rem; }
.statement-grid span { color: #829ab7; font-size: .75rem; }

.section { padding: 7rem 0; }
.section-copy h2, .section-heading h2, .contact-copy h2 { margin: 1.1rem 0 1.25rem; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.045em; }
.section-copy p, .section-heading p, .contact-copy > p { color: var(--muted); line-height: 1.8; font-size: 1rem; }
.section-heading { max-width: 800px; margin-bottom: 3.2rem; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.text-link { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.15rem; color: #cdeeff; font-weight: 700; }
.text-link span { color: var(--cyan); font-size: 1.2rem; }
.about { background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 5rem; align-items: center; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.value-card { min-height: 250px; padding: 1.6rem; border-radius: var(--radius-lg); border: 1px solid var(--line); background: linear-gradient(145deg, rgba(14,31,61,.78), rgba(7,18,38,.78)); box-shadow: var(--shadow-soft); }
.value-card.featured { grid-row: span 2; min-height: 516px; display: flex; flex-direction: column; justify-content: flex-end; background: radial-gradient(circle at 70% 15%, rgba(25,185,255,.18), transparent 34%), linear-gradient(145deg, rgba(15,42,86,.92), rgba(7,18,38,.88)); }
.value-number { color: #74d9ff; font-size: .7rem; font-weight: 800; letter-spacing: .16em; }
.value-card h3 { margin: .9rem 0 .7rem; font-size: 1.2rem; }
.value-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: .88rem; }

.solutions { position: relative; }
.product-showcase { display: grid; grid-template-columns: .92fr 1.08fr; gap: 3.5rem; align-items: center; padding: 3.2rem; border-radius: var(--radius-xl); border: 1px solid rgba(95,187,255,.18); background: radial-gradient(circle at 84% 12%, rgba(25,185,255,.16), transparent 30%), linear-gradient(145deg, rgba(12,31,63,.94), rgba(5,16,35,.96)); box-shadow: var(--shadow); overflow: hidden; }
.product-badge { display: inline-flex; padding: .55rem .78rem; border-radius: 999px; background: rgba(25,185,255,.09); border: 1px solid rgba(25,185,255,.2); color: #9fddff; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.product-title-row { display: flex; align-items: center; gap: .9rem; margin: 1.35rem 0; }

.product-title-row div { display: grid; gap: .2rem; }
.product-title-row small { color: #7e9abb; font-size: .67rem; letter-spacing: .27em; font-weight: 800; }
.product-title-row h3 { margin: 0; font-size: 2.35rem; line-height: 1; }
.product-lead { color: #bdd1e6; line-height: 1.75; }
.product-features { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .85rem; }
.product-features li { display: flex; gap: .7rem; color: #c8dcee; font-size: .9rem; }
.product-features span { color: var(--success); }
.product-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.product-preview { position: relative; padding: 1.2rem 0; }
.browser-frame { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(160,213,255,.18); border-radius: 22px; background: #071226; box-shadow: 0 30px 65px rgba(0,7,25,.55); transform: perspective(1000px) rotateY(-3deg); }
.browser-frame-bar { min-height: 45px; display: flex; align-items: center; gap: 6px; padding: 0 .95rem; border-bottom: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.035); }
.browser-frame-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.21); }
.browser-frame-bar span { margin-left: .6rem; color: #7690af; font-size: .62rem; }
.browser-frame img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; }
.preview-label { position: absolute; z-index: 3; display: grid; gap: .18rem; padding: .75rem .9rem; border-radius: 14px; background: rgba(6,18,38,.93); border: 1px solid rgba(25,185,255,.2); box-shadow: var(--shadow-soft); }
.preview-label b { font-size: .7rem; }
.preview-label span { color: #849fbd; font-size: .56rem; }
.preview-label-one { left: -18px; top: 34px; }
.preview-label-two { right: -18px; bottom: 30px; }
.future-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: center; margin-top: 1.2rem; padding: 1.6rem 2rem; border-radius: 22px; border: 1px dashed rgba(123,185,239,.18); background: rgba(255,255,255,.022); }
.future-card span { color: #6ecfff; font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.future-card h3 { margin: .5rem 0 0; font-size: 1.25rem; }
.future-card p { margin: 0; color: #839ab5; line-height: 1.7; font-size: .87rem; }

.method { background: rgba(255,255,255,.018); border-top: 1px solid rgba(255,255,255,.045); border-bottom: 1px solid rgba(255,255,255,.045); }
.method-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 5rem; align-items: start; }
.steps { display: grid; gap: .8rem; }
.step { display: grid; grid-template-columns: 62px 1fr; gap: 1rem; padding: 1.35rem; border-radius: 20px; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.025); }
.step.active { border-color: rgba(25,185,255,.2); background: linear-gradient(135deg, rgba(18,59,255,.08), rgba(25,185,255,.05)); }
.step > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: #a9e2ff; background: rgba(18,91,255,.12); border: 1px solid rgba(25,185,255,.14); font-size: .72rem; font-weight: 800; }
.step h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .87rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.benefit-card { padding: 1.45rem; border-radius: 22px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(12,28,56,.76), rgba(7,17,36,.76)); }
.benefit-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 1.2rem; border-radius: 13px; color: #aee6ff; background: rgba(18,80,255,.12); border: 1px solid rgba(25,185,255,.15); font-size: 1rem; }
.benefit-card h3 { margin: 0 0 .65rem; font-size: 1rem; }
.benefit-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: .84rem; }

.contact-section { padding: 2rem 0 7rem; }
.contact-shell { display: grid; grid-template-columns: .82fr 1.18fr; gap: 4rem; padding: 3.4rem; border-radius: var(--radius-xl); border: 1px solid rgba(87,182,255,.17); background: radial-gradient(circle at 5% 5%, rgba(18,59,255,.15), transparent 30%), linear-gradient(145deg, rgba(12,29,59,.93), rgba(5,16,34,.95)); box-shadow: var(--shadow); }
.contact-details { display: grid; gap: .8rem; margin-top: 2rem; }
.contact-details a { display: flex; align-items: center; gap: .8rem; padding: .85rem; border-radius: 16px; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.028); }
.contact-details a > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: rgba(18,91,255,.12); color: #92ddff; }
.contact-details div { display: grid; gap: .2rem; min-width: 0; }
.contact-details small { color: #8099b8; font-size: .64rem; }
.contact-details strong { font-size: .78rem; overflow-wrap: anywhere; }
.contact-form { padding: 1.45rem; border-radius: 24px; border: 1px solid rgba(255,255,255,.075); background: rgba(2,10,25,.42); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.contact-form label { display: grid; gap: .48rem; }
.contact-form label > span { color: #b9cde1; font-size: .75rem; font-weight: 650; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.045); color: white; outline: none; padding: .9rem 1rem; transition: .2s ease; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #67809e; }
/* Garante contraste correto na lista nativa de opções (Chrome/Edge/Windows). */
.contact-form select {
  color-scheme: light;
  color: var(--white);
  background-color: #0b1931;
}
.contact-form select option {
  color: #07111f;
  background-color: #ffffff;
}
.contact-form select:invalid {
  color: #8fa6c1;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(25,185,255,.48); box-shadow: 0 0 0 4px rgba(25,185,255,.07); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.full-field { grid-column: 1/-1; }
.consent { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: .7rem !important; margin: 1rem 0; }
.consent input { width: 17px; height: 17px; padding: 0; margin-top: 2px; accent-color: var(--blue); }
.consent span { color: #8fa6c1 !important; line-height: 1.5; font-weight: 500 !important; }
.form-submit { width: 100%; }
.form-submit[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-feedback { min-height: 24px; margin: .8rem 0 0; text-align: center; color: #9eb4ca; font-size: .78rem; }
.form-feedback.success { color: var(--success); }
.form-feedback.error { color: #ff9eaa; }
.honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; pointer-events: none !important; }

.site-footer { border-top: 1px solid rgba(255,255,255,.06); background: rgba(1,7,17,.52); }
.footer-main { padding: 3.5rem 0; display: grid; grid-template-columns: 1.5fr .7fr .8fr 1fr; gap: 2rem; }
.footer-brand p { margin: 1rem 0 0; color: #859db9; font-size: .85rem; }
.footer-links { display: grid; align-content: start; gap: .7rem; }
.footer-links strong { font-size: .78rem; margin-bottom: .3rem; }
.footer-links a { color: #829ab6; font-size: .78rem; }
.footer-links a:hover { color: white; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.055); color: #6e86a2; font-size: .72rem; }
.footer-bottom a { color: #9cb4cf; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s ease, transform .72s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

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

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-button { display: flex; }
  .mobile-nav { position: fixed; top: 82px; left: 0; right: 0; z-index: 49; padding: 1rem; display: grid; gap: .55rem; background: rgba(3,9,22,.97); border-bottom: 1px solid rgba(255,255,255,.07); transform: translateY(-120%); opacity: 0; visibility: hidden; transition: .28s ease; }
  .mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .mobile-nav a { padding: .9rem 1rem; border-radius: 14px; color: #a9bfd7; background: rgba(255,255,255,.035); font-weight: 600; }
  .mobile-nav .client-link { text-align: center; }
  .hero { padding-top: 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .hero-pill-row { justify-content: center; }
  .hero-copy > p { margin: 0 auto; }
  .hero-visual { max-width: 720px; width: 100%; margin: 0 auto; }
  .about-grid, .method-grid, .contact-shell { grid-template-columns: 1fr; gap: 3rem; }
  .product-showcase { grid-template-columns: 1fr; }
  .product-copy { max-width: 740px; }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1.4fr repeat(3,1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 1.25rem, var(--container)); }
  .site-header, .header-inner { min-height: 72px; }
  .mobile-nav { top: 72px; }
  .brand img { width: 44px; height: 44px; border-radius: 13px; }
  .brand-copy strong { font-size: .92rem; }
  .brand-copy small { font-size: .52rem; }
  .hero { min-height: auto; padding: 3.6rem 0 3rem; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-copy > p { font-size: .98rem; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 430px; }
  .visual-panel { transform: none; border-radius: 20px; }
  .visual-body { grid-template-columns: 54px 1fr; min-height: 350px; }
  .visual-sidebar { padding: .8rem .45rem; gap: .85rem; }
  .visual-mark { width: 32px; height: 32px; }
  .visual-sidebar i { width: 20px; }
  .visual-content { padding: .8rem; }
  .metric-grid { gap: .4rem; }
  .metric-grid article { padding: .6rem; }
  .metric-grid strong { font-size: .96rem; }
  .metric-grid small { display: none; }
  .chart-bars { height: 90px; gap: .35rem; }
  .activity-card { padding: .65rem; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 315px; height: 315px; }
  .floating-card { padding: .55rem .65rem; }
  .floating-card-one { left: 0; top: 0; }
  .floating-card-two { right: 0; bottom: 34px; }
  .floating-card-three { display: none; }
  .statement-grid { grid-template-columns: repeat(2,1fr); padding: 1rem 0; }
  .statement-grid > div { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.055); }
  .statement-grid > div:nth-child(2) { border-right: 0; }
  .statement-grid > div:nth-child(3), .statement-grid > div:nth-child(4) { border-bottom: 0; }
  .section { padding: 5rem 0; }
  .about-grid { gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card.featured { grid-row: auto; min-height: 260px; }
  .product-showcase { padding: 1.35rem; border-radius: 24px; gap: 2rem; }
  .product-title-row h3 { font-size: 2rem; }
  .product-actions .button { width: 100%; }
  .preview-label { display: none; }
  .browser-frame { transform: none; border-radius: 16px; }
  .future-card { grid-template-columns: 1fr; padding: 1.3rem; }
  .benefit-grid { grid-template-columns: 1fr; }
  .contact-shell { padding: 1.2rem; border-radius: 24px; }
  .contact-form { padding: 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .footer-main { grid-template-columns: repeat(2,1fr); }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { gap: .7rem; padding: 1rem 0; text-align: center; flex-direction: column; justify-content: center; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 3rem; }
  .hero-pill-row span { width: 100%; text-align: center; }
  .hero-visual { min-height: 390px; }
  .visual-topbar > span { display: none; }
  .visual-topbar { grid-template-columns: 1fr 1fr; }
  .visual-topbar > b { grid-column: 2; }
  .visual-body { grid-template-columns: 46px 1fr; }
  .visual-sidebar { padding: .7rem .3rem; }
  .visual-heading strong { font-size: .9rem; }
  .metric-grid article:nth-child(3) { display: none; }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
  .floating-card-one { transform: scale(.9); transform-origin: left top; }
  .floating-card-two { transform: scale(.9); transform-origin: right bottom; }
  .statement-grid { grid-template-columns: 1fr; }
  .statement-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.055) !important; padding-left: .3rem; }
  .statement-grid > div:last-child { border-bottom: 0 !important; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* Troca somente do símbolo, mantendo exatamente o espaço original */
.brand-symbol-img {
  display: block;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  object-fit: contain;
  border-radius: 15px;
}
.product-symbol-img {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  border-radius: 17px;
}
.footer-symbol-img {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
}
@media (max-width: 640px) {
  .brand-symbol-img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .product-symbol-img {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}


/* Redução forçada do símbolo C */
.brand-symbol-img { width:38px!important; height:38px!important; flex:0 0 38px!important; }
.product-symbol-img { width:44px!important; height:44px!important; flex:0 0 44px!important; }
.footer-symbol-img { width:38px!important; height:38px!important; flex:0 0 38px!important; }
@media (max-width:640px) {
  .brand-symbol-img { width:34px!important; height:34px!important; flex:0 0 34px!important; }
  .product-symbol-img { width:40px!important; height:40px!important; flex:0 0 40px!important; }
  .footer-symbol-img { width:34px!important; height:34px!important; flex:0 0 34px!important; }
}
