:root {
  --navy-950: #02152f;
  --navy-900: #041f45;
  --navy-850: #072959;
  --navy-800: #0a356e;
  --blue-600: #087ed0;
  --cyan-500: #08c5e8;
  --cyan-400: #38d9f2;
  --cyan-100: #dff9fd;
  --ink: #092143;
  --muted: #5b6f89;
  --line: #dbe7f1;
  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --surface-cyan: #effbfe;
  --success: #19a66c;
  --danger: #e55252;
  --shadow: 0 24px 70px rgba(4, 31, 69, .13);
  --shadow-dark: 0 30px 90px rgba(0, 10, 32, .4);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; border-radius: 10px; background: white; color: var(--ink); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-height); border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(3, 24, 54, .78); backdrop-filter: blur(18px); transition: background .25s, box-shadow .25s; }
.site-header.scrolled { background: rgba(3, 24, 54, .96); box-shadow: 0 12px 40px rgba(0, 11, 33, .25); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 145px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 23px; color: rgba(255,255,255,.82); font-size: .93rem; font-weight: 650; }
.main-nav > a:not(.btn) { position: relative; transition: color .2s; }
.main-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--cyan-400); transition: right .25s; }
.main-nav > a:not(.btn):hover { color: white; }
.main-nav > a:not(.btn):hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; color: white; padding: 8px; cursor: pointer; }
.menu-toggle svg { width: 28px; height: 28px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 13px; padding: 13px 20px; font-weight: 800; line-height: 1; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .main-nav a:focus-visible, .text-link:focus-visible, .whatsapp-float:focus-visible, .faq-item button:focus-visible { outline: 3px solid rgba(56,217,242,.5); outline-offset: 3px; }
.btn-primary { color: white; background: linear-gradient(135deg, var(--blue-600), var(--cyan-500)); box-shadow: 0 14px 32px rgba(8, 166, 216, .25); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(8, 166, 216, .36); }
.btn-secondary { color: white; background: var(--navy-900); }
.btn-ghost { color: white; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.05); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.42); }
.btn-small { padding: 11px 16px; font-size: .88rem; }
.btn-large { min-height: 52px; padding: 16px 24px; }
.btn-full { width: 100%; }

.section { position: relative; padding: 112px 0; overflow: hidden; }
.section-dark { color: white; background: radial-gradient(circle at 80% 10%, rgba(12, 128, 205, .22), transparent 30%), linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #06356d); }
.section-dark-soft { color: white; background: linear-gradient(135deg, #031a3a, #073367); }
.section-light { background: white; }
.section-tinted { background: linear-gradient(180deg, #f3f9fd, #eef8fb); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 17px; padding: 7px 11px; border: 1px solid rgba(56,217,242,.3); border-radius: 999px; color: var(--cyan-400); background: rgba(8,197,232,.08); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow-dark { color: var(--blue-600); border-color: rgba(8,126,208,.18); background: rgba(8,126,208,.07); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.035em; }
h1 { margin-bottom: 25px; font-size: clamp(3rem, 6vw, 5.5rem); }
h1 span { color: var(--cyan-400); }
h2 { margin-bottom: 20px; font-size: clamp(2.35rem, 4.2vw, 4rem); }
h3 { margin-bottom: 12px; font-size: 1.25rem; }
p { color: var(--muted); }
.section-dark p, .section-dark-soft p { color: rgba(255,255,255,.73); }
.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p { max-width: 660px; margin: 0 auto; font-size: 1.08rem; }

.hero { min-height: 850px; padding: calc(var(--header-height) + 86px) 0 42px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 62px; }
.hero-copy { padding: 35px 0; }
.hero-lead { max-width: 650px; color: rgba(255,255,255,.78) !important; font-size: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 35px 0 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 11px 20px; color: rgba(255,255,255,.7); font-size: .9rem; }
.hero-meta span { display: flex; align-items: center; gap: 7px; }
.hero-meta svg { color: var(--cyan-400); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(5px); pointer-events: none; }
.hero-glow-one { width: 540px; height: 540px; right: -210px; top: 90px; background: radial-gradient(circle, rgba(0,196,238,.14), transparent 68%); }
.hero-glow-two { width: 420px; height: 420px; left: -260px; bottom: -110px; background: radial-gradient(circle, rgba(7,111,203,.2), transparent 70%); }
.hero-visual { position: relative; min-width: 0; }
.browser-frame { overflow: hidden; border: 1px solid rgba(103,222,255,.4); border-radius: 25px; background: #f7fbfd; box-shadow: var(--shadow-dark); transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.browser-top { height: 52px; display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 12px; padding: 0 18px; color: rgba(255,255,255,.9); background: linear-gradient(90deg, #052652, #075496); font-size: .82rem; }
.browser-top small { color: rgba(255,255,255,.62); }
.browser-dots { display: flex; gap: 7px; }
.browser-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); }
.dashboard-layout { min-height: 475px; display: grid; grid-template-columns: 72px 1fr; }
.demo-sidebar { display: flex; flex-direction: column; align-items: center; gap: 17px; padding: 18px 10px; background: linear-gradient(180deg, #062654, #073875); }
.demo-sidebar img { width: 47px; margin-bottom: 4px; }
.demo-nav { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; color: rgba(255,255,255,.68); }
.demo-nav.active { color: white; background: linear-gradient(135deg, #087ed0, #08c5e8); box-shadow: 0 7px 18px rgba(8,197,232,.25); }
.demo-content { min-width: 0; padding: 24px; color: var(--ink); }
.demo-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 19px; }
.demo-title-row small { display: block; color: var(--blue-600); font-weight: 800; }
.demo-title-row strong { display: block; margin-top: 3px; font-size: 1.06rem; }
.status-dot { padding: 7px 9px; border-radius: 999px; color: var(--success); background: rgba(25,166,108,.1); font-size: .68rem; font-weight: 800; white-space: nowrap; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric-grid article { padding: 15px; border: 1px solid #e0ebf3; border-radius: 14px; background: white; box-shadow: 0 9px 20px rgba(8,54,102,.05); }
.metric-grid span, .metric-grid small { display: block; color: #687d94; font-size: .65rem; }
.metric-grid strong { display: block; margin: 8px 0 2px; color: #0a2b55; font-size: 1.15rem; }
.metric-grid small { color: var(--success); }
.demo-panels { display: grid; grid-template-columns: 1fr 1.06fr; gap: 12px; margin-top: 13px; }
.demo-panels article { min-width: 0; border: 1px solid #e0ebf3; border-radius: 14px; background: white; }
.panel-heading { display: flex; justify-content: space-between; gap: 10px; padding: 15px 15px 0; font-size: .73rem; }
.panel-heading small { color: #7d8da1; }
.bar-chart { height: 125px; display: flex; align-items: flex-end; justify-content: space-around; gap: 9px; padding: 20px 17px 8px; border-bottom: 1px solid #eef3f7; background: repeating-linear-gradient(to top, transparent 0 30px, rgba(220,231,239,.65) 31px); }
.bar-chart i { width: 18px; height: var(--h); border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, var(--cyan-400), var(--blue-600)); }
.chart-labels { display: flex; justify-content: space-around; padding: 7px 12px 12px; color: #8494a7; font-size: .58rem; }
.demo-agenda-card ul { list-style: none; margin: 12px 0 0; padding: 0 14px 13px; }
.demo-agenda-card li { display: grid; grid-template-columns: 43px 1fr auto; align-items: center; gap: 8px; padding: 11px 0; border-bottom: 1px solid #edf2f6; font-size: .62rem; }
.demo-agenda-card li:last-child { border-bottom: 0; }
.demo-agenda-card time { color: var(--blue-600); font-weight: 850; }
.demo-agenda-card span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-agenda-card b { padding: 4px 6px; border-radius: 999px; color: var(--success); background: rgba(25,166,108,.1); font-size: .51rem; }
.floating-proof { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.26); border-radius: 15px; color: white; background: rgba(4,39,82,.86); box-shadow: 0 16px 35px rgba(0,15,43,.3); backdrop-filter: blur(12px); }
.floating-proof svg { width: 26px; height: 26px; color: var(--cyan-400); }
.floating-proof strong, .floating-proof span { display: block; }
.floating-proof strong { font-size: .78rem; }
.floating-proof span { color: rgba(255,255,255,.65); font-size: .65rem; }
.proof-one { left: -24px; bottom: 65px; }
.proof-two { right: -20px; top: 65px; }
.trust-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 70px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.06); }
.trust-strip > div { display: flex; align-items: center; gap: 13px; min-height: 82px; padding: 18px 22px; border-right: 1px solid rgba(255,255,255,.08); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip svg { flex: 0 0 auto; width: 28px; height: 28px; color: var(--cyan-400); }
.trust-strip span { color: rgba(255,255,255,.66); font-size: .86rem; }
.trust-strip strong { display: block; color: white; }

.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 0 14px 38px rgba(4,31,69,.07); transition: transform .25s, box-shadow .25s, border-color .25s; }
.pain-card:hover { transform: translateY(-5px); border-color: rgba(8,126,208,.3); box-shadow: var(--shadow); }
.icon-box { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 22px; border-radius: 15px; color: var(--blue-600); background: linear-gradient(135deg, #ecf8ff, #dff9fd); }
.icon-box svg { width: 25px; height: 25px; }
.pain-card p { margin-bottom: 0; }

.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.feature-grid-reverse { grid-template-columns: 1.1fr .9fr; }
.feature-copy h2 { max-width: 610px; }
.feature-copy > p { max-width: 570px; font-size: 1.08rem; }
.feature-copy-dark h2 { color: white; }
.benefit-list { display: grid; gap: 17px; margin: 30px 0; padding: 0; list-style: none; }
.benefit-list li { display: flex; align-items: flex-start; gap: 13px; color: #536981; }
.benefit-list svg { flex: 0 0 auto; width: 22px; height: 22px; padding: 4px; border-radius: 50%; color: white; background: linear-gradient(135deg, var(--blue-600), var(--cyan-500)); }
.benefit-list strong { color: var(--ink); }
.benefit-list-dark li { color: rgba(255,255,255,.72); }
.benefit-list-dark strong { color: white; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-weight: 850; }
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.text-link-light { color: var(--cyan-400); }
.feature-media { position: relative; margin: 0; }
.feature-media::before { content: ""; position: absolute; inset: 7% -4% -4% 7%; z-index: -1; border-radius: 30px; background: linear-gradient(135deg, rgba(8,126,208,.15), rgba(8,197,232,.08)); }
.feature-media img { width: min(100%, 575px); margin-inline: auto; border: 1px solid rgba(8,126,208,.14); border-radius: 28px; box-shadow: var(--shadow); }
.feature-media figcaption { margin-top: 12px; color: #8494a7; text-align: center; font-size: .78rem; }
.feature-media-dark img { border-color: rgba(56,217,242,.22); box-shadow: var(--shadow-dark); }
.feature-media-dark figcaption { color: rgba(255,255,255,.45); }

.journey-track { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.journey-track::before { content: ""; position: absolute; top: 54px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, rgba(8,126,208,.2), var(--cyan-500), rgba(8,126,208,.2)); }
.journey-track article { position: relative; z-index: 1; padding: 27px 15px 20px; text-align: center; }
.journey-track article > span { position: absolute; top: 0; right: 16px; color: rgba(8,126,208,.2); font-size: 1.7rem; font-weight: 900; }
.journey-track svg { width: 56px; height: 56px; padding: 15px; border: 1px solid rgba(8,126,208,.18); border-radius: 18px; color: var(--blue-600); background: white; box-shadow: 0 14px 35px rgba(4,31,69,.09); }
.journey-track h3 { margin: 18px 0 8px; }
.journey-track p { margin: 0; font-size: .87rem; }

.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.module-card { padding: 27px; border: 1px solid rgba(8,126,208,.13); border-radius: 20px; background: white; box-shadow: 0 12px 32px rgba(4,31,69,.055); transition: transform .2s, box-shadow .2s; }
.module-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(4,31,69,.1); }
.module-card > svg { width: 36px; height: 36px; margin-bottom: 21px; padding: 8px; border-radius: 11px; color: var(--blue-600); background: var(--cyan-100); }
.module-card p { margin-bottom: 0; font-size: .9rem; }

.onboarding-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 82px; align-items: start; }
.onboarding-copy { position: sticky; top: calc(var(--header-height) + 35px); }
.onboarding-copy > p { max-width: 500px; font-size: 1.08rem; }
.support-card { display: flex; align-items: flex-start; gap: 15px; margin-top: 30px; padding: 20px; border: 1px solid rgba(8,126,208,.14); border-radius: 18px; background: var(--surface-cyan); }
.support-card svg { width: 33px; height: 33px; color: var(--blue-600); }
.support-card strong, .support-card span { display: block; }
.support-card span { margin-top: 4px; color: var(--muted); font-size: .88rem; }
.steps-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 11px 30px rgba(4,31,69,.055); }
.steps-list > li > span { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 17px; color: white; background: linear-gradient(135deg, var(--blue-600), var(--cyan-500)); font-weight: 900; }
.steps-list h3 { margin-bottom: 6px; }
.steps-list p { margin-bottom: 0; }

.security-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.security-visual { display: grid; place-items: center; min-height: 390px; }
.security-orbit { position: relative; display: grid; place-items: center; width: 220px; height: 220px; border: 1px solid rgba(56,217,242,.28); border-radius: 50%; background: radial-gradient(circle, rgba(8,197,232,.18), rgba(8,126,208,.03) 60%, transparent); box-shadow: 0 0 80px rgba(8,197,232,.12); }
.security-orbit::before, .security-orbit::after { content: ""; position: absolute; border: 1px solid rgba(56,217,242,.15); border-radius: 50%; }
.security-orbit::before { inset: -48px; }
.security-orbit::after { inset: -95px; }
.security-orbit svg { width: 90px; height: 90px; color: var(--cyan-400); }
.security-orbit i { position: absolute; z-index: 2; width: 13px; height: 13px; border: 3px solid var(--navy-900); border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 18px var(--cyan-400); }
.security-orbit i:nth-child(2) { top: -54px; left: 45px; }
.security-orbit i:nth-child(3) { right: -72px; top: 95px; }
.security-orbit i:nth-child(4) { left: -52px; bottom: 18px; }
.security-copy h2 { color: white; }
.security-list { display: grid; gap: 13px; margin-top: 30px; }
.security-list article { display: flex; gap: 16px; padding: 19px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(255,255,255,.055); }
.security-list article > svg { flex: 0 0 auto; width: 30px; height: 30px; color: var(--cyan-400); }
.security-list h3 { margin: 0 0 5px; color: white; }
.security-list p { margin: 0; font-size: .88rem; }

.pricing-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 75px; align-items: center; }
.pricing-copy > p { max-width: 570px; font-size: 1.05rem; }
.pricing-copy img { width: 390px; max-height: 370px; margin-top: 30px; border-radius: 22px; object-fit: cover; object-position: top; box-shadow: var(--shadow); }
.price-card { padding: 40px; border: 1px solid rgba(8,126,208,.18); border-radius: 28px; background: linear-gradient(180deg, #fff, #f7fbfe); box-shadow: var(--shadow); }
.price-badge { display: inline-block; padding: 7px 11px; border-radius: 999px; color: var(--blue-600); background: var(--cyan-100); font-size: .77rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.price { display: flex; align-items: baseline; gap: 5px; margin: 25px 0 15px; color: var(--navy-900); }
.price small { font-size: 1.2rem; font-weight: 800; }
.price strong { font-size: 4.3rem; line-height: 1; letter-spacing: -.07em; }
.price span { color: var(--muted); }
.price-card > p { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.price-card ul { display: grid; gap: 12px; margin: 24px 0 30px; padding: 0; list-style: none; }
.price-card li { display: flex; align-items: center; gap: 10px; }
.price-card li svg { width: 20px; height: 20px; padding: 3px; border-radius: 50%; color: white; background: var(--success); }
.price-note { display: block; margin-top: 15px; color: #7b8b9e; text-align: center; }

.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 85px; align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-height) + 35px); }
.faq-intro .btn { margin-top: 20px; }
.faq-list { display: grid; gap: 11px; }
.faq-item { overflow: hidden; border: 1px solid rgba(8,126,208,.14); border-radius: 16px; background: white; box-shadow: 0 8px 24px rgba(4,31,69,.04); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 23px; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 800; cursor: pointer; }
.faq-item button svg { flex: 0 0 auto; transition: transform .25s; }
.faq-item.open button svg { transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; padding: 0 23px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 22px; }

.final-cta { padding: 86px 0; }
.final-cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 50px; padding: 48px; border: 1px solid rgba(56,217,242,.18); border-radius: 30px; background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(8,197,232,.07)); }
.final-cta h2 { max-width: 770px; color: white; font-size: clamp(2.2rem, 4vw, 3.7rem); }
.final-cta p { margin-bottom: 0; }
.final-cta-actions { display: grid; justify-items: stretch; gap: 18px; }
.contact-link { display: flex; align-items: center; justify-content: center; gap: 9px; color: rgba(255,255,255,.76); font-weight: 750; }
.contact-link:hover { color: white; }

.site-footer { padding: 70px 0 25px; color: rgba(255,255,255,.68); background: #021329; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }
.footer-brand img { width: 185px; margin-bottom: 20px; }
.footer-brand p { max-width: 380px; color: rgba(255,255,255,.55); }
.site-footer h3 { color: white; font-size: 1rem; letter-spacing: 0; }
.site-footer a, .site-footer span { display: block; margin: 9px 0; font-size: .9rem; }
.site-footer a:hover { color: var(--cyan-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); font-size: .82rem; }
.footer-bottom span { margin: 0; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 70; display: flex; align-items: center; gap: 9px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; color: white; background: #19ae64; box-shadow: 0 16px 38px rgba(0,0,0,.23); font-size: .88rem; font-weight: 850; transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(0,0,0,.3); }
.whatsapp-float svg { width: 24px; height: 24px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@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: 1080px) {
  .main-nav { gap: 16px; font-size: .86rem; }
  .main-nav a:nth-child(5) { display: none; }
  .hero-grid, .feature-grid, .feature-grid-reverse, .pricing-grid { gap: 45px; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; }
  .metric-grid article { padding: 12px; }
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .journey-track { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .journey-track::before { display: none; }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .main-nav { position: fixed; top: var(--header-height); left: 20px; right: 20px; display: grid; gap: 0; padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(3,24,54,.98); box-shadow: 0 24px 60px rgba(0,0,0,.32); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav > a, .main-nav a:nth-child(5) { display: block; padding: 13px 12px; }
  .main-nav > a::after { display: none; }
  .nav-cta { margin-top: 8px; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 60px); }
  .hero-grid, .feature-grid, .feature-grid-reverse, .onboarding-grid, .security-grid, .pricing-grid, .faq-grid, .final-cta-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 720px); margin-inline: auto; }
  .browser-frame { transform: none; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip > div:nth-child(2) { border-right: 0; }
  .trust-strip > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .section { padding: 88px 0; }
  .feature-grid-reverse .feature-media { order: 2; }
  .feature-grid-reverse .feature-copy { order: 1; }
  .feature-media img { width: min(100%, 580px); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .onboarding-copy, .faq-intro { position: static; }
  .security-visual { min-height: 310px; }
  .pricing-copy img { display: none; }
  .final-cta-actions { justify-items: start; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand img { width: 116px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.3rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3.15rem); }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { display: grid; }
  .browser-top { grid-template-columns: 58px 1fr; }
  .browser-top small { display: none; }
  .dashboard-layout { grid-template-columns: 48px 1fr; min-height: 420px; }
  .demo-sidebar { gap: 10px; padding-inline: 5px; }
  .demo-sidebar img { width: 35px; }
  .demo-nav { width: 32px; height: 32px; }
  .demo-content { padding: 15px; }
  .demo-title-row { display: block; }
  .status-dot { display: inline-block; margin-top: 8px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid article:nth-child(n+2) { display: none; }
  .demo-panels { grid-template-columns: 1fr; }
  .demo-chart-card { display: none; }
  .floating-proof { display: none; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .trust-strip > div:last-child { border-bottom: 0; }
  .pain-grid, .modules-grid, .journey-track { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 38px; }
  .feature-grid { gap: 42px; }
  .feature-media img { border-radius: 20px; }
  .journey-track article { display: grid; grid-template-columns: 62px 1fr; grid-template-rows: auto auto; gap: 0 17px; text-align: left; }
  .journey-track article > span { right: 8px; }
  .journey-track svg { grid-row: 1 / 3; }
  .journey-track h3 { margin: 6px 0 4px; }
  .module-card { padding: 23px; }
  .steps-list li { grid-template-columns: 52px 1fr; gap: 15px; padding: 20px; }
  .steps-list > li > span { width: 48px; height: 48px; }
  .security-orbit { width: 160px; height: 160px; }
  .security-orbit::before { inset: -35px; }
  .security-orbit::after { inset: -68px; }
  .security-orbit svg { width: 66px; height: 66px; }
  .price-card { padding: 28px 22px; }
  .price strong { font-size: 3.6rem; }
  .final-cta-inner { padding: 31px 24px; }
  .final-cta-actions .btn { width: 100%; }
  .contact-link { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
}


/* Conversion, trust, consent and legal pages — v2 */
picture { display: block; }
.feature-media picture img, .pricing-copy picture img { width: 100%; height: auto; }
.modules-toggle { display: flex; margin: 28px auto 0; cursor: pointer; }
.module-extra[hidden] { display: none !important; }
.pioneer-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 78px; align-items: center; }
.pioneer-copy > p { max-width: 590px; font-size: 1.06rem; }
.pioneer-copy .btn { margin-top: 14px; }
.pioneer-cards { display: grid; gap: 14px; }
.pioneer-cards article { display: flex; gap: 17px; padding: 22px; border: 1px solid rgba(8,126,208,.14); border-radius: 18px; background: white; box-shadow: 0 12px 32px rgba(4,31,69,.055); }
.pioneer-cards article > svg { flex: 0 0 auto; width: 38px; height: 38px; padding: 8px; border-radius: 12px; color: var(--blue-600); background: var(--cyan-100); }
.pioneer-cards strong, .pioneer-cards span { display: block; }
.pioneer-cards span { margin-top: 5px; color: var(--muted); font-size: .9rem; }
.pioneer-note { margin: 4px 0 0; color: #73869b; font-size: .8rem; text-align: right; }
.footer-cookie-button { display: block; margin: 9px 0; padding: 0; border: 0; color: rgba(255,255,255,.68); background: none; font: inherit; font-size: .9rem; text-align: left; cursor: pointer; }
.footer-cookie-button:hover { color: var(--cyan-400); }
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 200; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 25px; max-width: 1120px; margin-inline: auto; padding: 20px 22px; border: 1px solid rgba(56,217,242,.25); border-radius: 20px; color: white; background: rgba(3,24,54,.98); box-shadow: 0 24px 70px rgba(0,0,0,.35); backdrop-filter: blur(16px); }
.cookie-banner[hidden] { display: none; }
.cookie-copy strong { display: block; margin-bottom: 4px; }
.cookie-copy p { margin: 0; color: rgba(255,255,255,.68); font-size: .86rem; }
.cookie-actions { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.cookie-actions > a { padding: 8px; color: var(--cyan-400); font-size: .82rem; font-weight: 750; }
.btn-cookie-neutral { color: white; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); cursor: pointer; }

.legal-page { background: var(--surface-soft); }
.legal-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(255,255,255,.08); background: #031a3a; }
.legal-header .header-inner { height: 76px; }
.legal-header .brand img { width: 145px; }
.legal-header a.back-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); font-weight: 750; }
.legal-main { padding: 72px 0 100px; }
.legal-hero { max-width: 820px; margin-bottom: 35px; }
.legal-hero h1 { color: var(--ink); font-size: clamp(2.6rem,6vw,4.6rem); }
.legal-hero p { font-size: 1.05rem; }
.legal-card { max-width: 900px; padding: 42px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow); }
.legal-card h2 { margin-top: 38px; font-size: 1.7rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { margin-top: 25px; font-size: 1.15rem; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card a { color: var(--blue-600); text-decoration: underline; }
.legal-card table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.legal-card th, .legal-card td { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-card th { background: var(--surface-cyan); }
.legal-note { padding: 16px 18px; border-left: 4px solid var(--cyan-500); border-radius: 10px; background: var(--surface-cyan); }

@media (max-width: 900px) {
  .pioneer-grid { grid-template-columns: 1fr; gap: 45px; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 17px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-actions .btn { width: 100%; }
  .pioneer-note { text-align: left; }
  .legal-main { padding-top: 48px; }
  .legal-card { padding: 27px 21px; }
  .legal-card table { display: block; overflow-x: auto; }
}


/* SEO V3 — content hub, commercial pages and blog */
.site-header.seo-header { position: sticky; top: 0; }
.seo-page { background: #fff; }
.seo-page .site-header { position: sticky; }
.breadcrumb { display:flex; flex-wrap:wrap; gap:7px; align-items:center; padding-top:30px; color:#6c8096; font-size:.83rem; }
.breadcrumb a { color:var(--blue-600); font-weight:750; }
.breadcrumb span[aria-current="page"] { color:#6c8096; }
.seo-hero { position:relative; overflow:hidden; padding:70px 0 82px; color:#fff; background: radial-gradient(circle at 82% 15%,rgba(8,197,232,.18),transparent 29%),linear-gradient(135deg,var(--navy-950),var(--navy-900) 58%,#06356d); }
.seo-hero-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(430px,520px); gap:42px; align-items:center; }
.seo-hero h1 { max-width:780px; margin-bottom:22px; font-size:clamp(2.65rem,5vw,4.7rem); }
.seo-hero p { max-width:700px; color:rgba(255,255,255,.78); font-size:1.16rem; }
.seo-hero .breadcrumb { padding-top:0; margin-bottom:30px; color:rgba(255,255,255,.6); }
.seo-hero .breadcrumb a { color:var(--cyan-400); }
.seo-hero .breadcrumb span[aria-current="page"] { color:rgba(255,255,255,.7); }
.seo-visual { position:relative; width:min(100%,520px); justify-self:end; }
.seo-visual picture { display:block; width:100%; }
.seo-visual img { display:block; width:100%; max-width:520px; height:auto; max-height:none; margin-left:auto; border:1px solid rgba(56,217,242,.28); border-radius:26px; box-shadow:0 28px 78px rgba(0,10,32,.38); object-fit:contain; background:#041f45; cursor:zoom-in; transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.seo-visual:hover img { transform:translateY(-3px); border-color:rgba(56,217,242,.52); box-shadow:0 34px 90px rgba(0,10,32,.46); }
.seo-visual::after { content:"Clique para ampliar"; position:absolute; right:14px; bottom:14px; z-index:2; padding:8px 11px; border:1px solid rgba(255,255,255,.18); border-radius:999px; color:#fff; background:rgba(2,21,47,.78); backdrop-filter:blur(10px); font-size:.72rem; font-weight:800; pointer-events:none; }
.image-lightbox { position:fixed; inset:0; z-index:10000; display:grid; place-items:center; padding:28px; background:rgba(0,9,25,.92); backdrop-filter:blur(8px); opacity:0; visibility:hidden; transition:opacity .2s ease,visibility .2s ease; }
.image-lightbox.open { opacity:1; visibility:visible; }
.image-lightbox img { max-width:min(94vw,960px); max-height:90vh; width:auto; height:auto; border-radius:20px; box-shadow:0 35px 110px rgba(0,0,0,.62); }
.image-lightbox-close { position:fixed; top:18px; right:22px; width:46px; height:46px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.24); border-radius:50%; color:#fff; background:rgba(4,31,69,.9); font-size:1.55rem; cursor:pointer; }
body.lightbox-open { overflow:hidden; }
.seo-proof { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; margin-top:32px; }
.seo-proof > div { padding:15px 16px; border:1px solid rgba(255,255,255,.12); border-radius:15px; background:rgba(255,255,255,.06); }
.seo-proof strong,.seo-proof span { display:block; }
.seo-proof span { margin-top:3px; color:rgba(255,255,255,.62); font-size:.8rem; }
.content-section { padding:88px 0; }
.content-section.tinted { background:var(--surface-soft); }
.content-narrow { max-width:860px; margin-inline:auto; }
.content-narrow > p, .article-body > p { font-size:1.04rem; line-height:1.8; }
.content-narrow h2,.article-body h2 { margin-top:48px; font-size:clamp(2rem,4vw,3rem); }
.content-narrow h3,.article-body h3 { margin-top:32px; font-size:1.45rem; }
.content-narrow ul,.article-body ul,.article-body ol { color:var(--muted); line-height:1.75; }
.content-narrow li + li,.article-body li + li { margin-top:8px; }
.seo-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:36px; }
.seo-card { padding:28px; border:1px solid var(--line); border-radius:20px; background:#fff; box-shadow:0 12px 32px rgba(4,31,69,.055); }
.seo-card h3 { font-size:1.25rem; }
.seo-card p { margin-bottom:0; }
.check-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin:30px 0; }
.check-item { padding:18px 19px; border:1px solid var(--line); border-radius:16px; background:#fff; color:#536981; }
.check-item strong { color:var(--ink); }
.inline-cta { display:flex; align-items:center; justify-content:space-between; gap:26px; margin:55px 0; padding:30px; border-radius:24px; color:white; background:linear-gradient(135deg,#052a5b,#087ed0); box-shadow:var(--shadow); }
.inline-cta p { margin:6px 0 0; color:rgba(255,255,255,.74); }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.related-card { display:block; padding:24px; border:1px solid var(--line); border-radius:18px; background:#fff; transition:.2s; }
.related-card:hover { transform:translateY(-3px); border-color:rgba(8,126,208,.35); box-shadow:var(--shadow); }
.related-card span { display:block; margin-bottom:8px; color:var(--blue-600); font-size:.75rem; font-weight:850; text-transform:uppercase; letter-spacing:.06em; }
.related-card strong { font-size:1.06rem; }
.faq-simple { display:grid; gap:12px; margin-top:30px; }
.faq-simple details { padding:20px 22px; border:1px solid var(--line); border-radius:16px; background:#fff; }
.faq-simple summary { cursor:pointer; color:var(--ink); font-weight:850; }
.faq-simple p { margin:12px 0 0; }
.resources-hub { padding:90px 0; background:linear-gradient(180deg,#fff,#f4f9fc); }
.resources-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.resource-link { display:block; min-height:175px; padding:26px; border:1px solid var(--line); border-radius:21px; background:#fff; box-shadow:0 10px 28px rgba(4,31,69,.05); }
.resource-link b { display:block; margin-bottom:8px; color:var(--blue-600); font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; }
.resource-link strong { display:block; margin-bottom:10px; color:var(--ink); font-size:1.2rem; }
.resource-link p { margin:0; }
.blog-hero { padding:70px 0 80px; background:linear-gradient(180deg,#effbfe,#fff); }
.blog-hero h1 { color:var(--ink); font-size:clamp(2.7rem,5vw,4.8rem); }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; padding:70px 0 100px; }
.blog-card { overflow:hidden; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:0 12px 35px rgba(4,31,69,.06); }
.blog-card-top { min-height:120px; padding:24px; color:#fff; background:linear-gradient(135deg,#04244e,#087ed0); }
.blog-card-top span { font-size:.76rem; font-weight:850; letter-spacing:.06em; text-transform:uppercase; color:var(--cyan-400); }
.blog-card-body { padding:24px; }
.blog-card h2 { font-size:1.45rem; }
.blog-card p { font-size:.92rem; }
.article-header { padding:52px 0 58px; background:linear-gradient(180deg,#effbfe,#fff); }
.article-header h1 { max-width:900px; color:var(--ink); font-size:clamp(2.6rem,5vw,4.5rem); }
.article-meta { display:flex; flex-wrap:wrap; gap:10px 20px; color:#6d8197; font-size:.87rem; }
.article-layout { display:grid; grid-template-columns:minmax(0,1fr) 310px; gap:70px; padding:65px 0 100px; }
.article-body { max-width:800px; }
.article-body .lead { color:#405b76; font-size:1.18rem; }
.article-aside { position:sticky; top:110px; align-self:start; }
.aside-card { padding:24px; border:1px solid var(--line); border-radius:20px; background:var(--surface-soft); }
.aside-card + .aside-card { margin-top:16px; }
.aside-card h3 { font-size:1.12rem; }
.aside-card a { display:block; padding:7px 0; color:var(--blue-600); font-weight:750; }
.table-wrap { overflow-x:auto; margin:28px 0; }
.article-body table { width:100%; border-collapse:collapse; }
.article-body th,.article-body td { padding:13px 14px; border:1px solid var(--line); text-align:left; vertical-align:top; }
.article-body th { background:var(--surface-cyan); }
.note-box { margin:28px 0; padding:20px 22px; border-left:4px solid var(--cyan-500); border-radius:12px; background:var(--surface-cyan); }
.keyword-pill { display:inline-flex; margin:0 6px 8px 0; padding:7px 10px; border-radius:999px; color:#0a356e; background:#e9f7fd; font-size:.78rem; font-weight:750; }
@media(max-width:1120px){.seo-hero-grid,.article-layout{grid-template-columns:1fr}.seo-visual{width:min(100%,520px);max-width:520px;margin:18px auto 0;justify-self:center}.seo-visual img{margin:0 auto}.article-aside{position:static}.seo-cards,.related-grid,.resources-grid,.blog-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.seo-hero{padding:48px 0 60px}.seo-visual{width:min(92vw,440px);max-width:440px}.seo-visual img{max-width:440px}.seo-visual::after{right:10px;bottom:10px;font-size:.68rem}.seo-proof,.seo-cards,.related-grid,.resources-grid,.blog-grid,.check-grid{grid-template-columns:1fr}.inline-cta{align-items:flex-start;flex-direction:column}.content-section{padding:65px 0}.article-layout{padding-top:40px;gap:45px}.blog-grid{padding-top:45px}.seo-page .site-header{height:72px}.seo-page .header-inner{height:72px}}


/* ==========================================================
   NexoOdonto /sistema-odontologico/ — Landing Page 2.0
   Isolado pelo prefixo lp2 para não alterar as páginas SEO.
   ========================================================== */
.lp2-page { background:#fff; }
.lp2-container-wide { width:min(1320px,calc(100% - 40px)); }
.lp2-hero { position:relative; overflow:hidden; padding:52px 0 86px; color:#fff; background:radial-gradient(circle at 78% 12%,rgba(8,197,232,.22),transparent 28%),radial-gradient(circle at 11% 82%,rgba(8,126,208,.17),transparent 30%),linear-gradient(135deg,#011329,#041f45 55%,#073b76); }
.lp2-hero::before { content:""; position:absolute; width:760px; height:760px; right:-280px; bottom:-460px; border:1px solid rgba(56,217,242,.11); border-radius:50%; box-shadow:0 0 0 90px rgba(56,217,242,.025),0 0 0 180px rgba(56,217,242,.018); pointer-events:none; }
.lp2-breadcrumb { padding-top:0; margin-bottom:38px; color:rgba(255,255,255,.54); }
.lp2-breadcrumb a { color:var(--cyan-400); }
.lp2-breadcrumb span[aria-current="page"] { color:rgba(255,255,255,.68); }
.lp2-hero-grid { position:relative; z-index:1; display:grid; grid-template-columns:minmax(430px,.82fr) minmax(610px,1.18fr); gap:54px; align-items:center; }
.lp2-hero-copy h1 { max-width:720px; margin-bottom:22px; font-size:clamp(3rem,5.1vw,5.2rem); }
.lp2-hero-copy h1 span { display:block; }
.lp2-hero-lead { max-width:660px; margin-bottom:0; color:rgba(255,255,255,.78)!important; font-size:1.16rem; }
.lp2-proof-line { display:flex; flex-wrap:wrap; gap:13px; margin-top:30px; }
.lp2-proof-line > span { min-width:150px; padding:12px 14px; border:1px solid rgba(255,255,255,.12); border-radius:14px; background:rgba(255,255,255,.055); backdrop-filter:blur(12px); }
.lp2-proof-line strong,.lp2-proof-line small { display:block; }
.lp2-proof-line strong { color:#fff; font-size:.9rem; }
.lp2-proof-line small { margin-top:3px; color:rgba(255,255,255,.55); font-size:.73rem; }
.lp2-hero-media { position:relative; margin:0; }
.lp2-hero-media::before { content:""; position:absolute; inset:10% 4% -7%; z-index:-1; border-radius:38px; background:rgba(8,197,232,.18); filter:blur(38px); }
.lp2-hero-media img { width:100%; border:1px solid rgba(84,218,244,.27); border-radius:26px; box-shadow:0 36px 100px rgba(0,8,26,.5); cursor:zoom-in; transition:transform .25s ease,box-shadow .25s ease; }
.lp2-hero-media img:hover { transform:translateY(-4px); box-shadow:0 44px 118px rgba(0,8,26,.58); }
.lp2-hero-media figcaption { margin-top:10px; color:rgba(255,255,255,.44); text-align:center; font-size:.72rem; }
.lp2-section { padding:100px 0; }
.lp2-heading { max-width:900px; margin-bottom:56px; }
.lp2-heading h2 { font-size:clamp(2.35rem,4vw,4.15rem); }
.lp2-pain-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:17px; }
.lp2-pain-grid article { min-height:245px; padding:27px; border:1px solid #dfeaf3; border-radius:22px; background:linear-gradient(180deg,#fff,#f8fbfd); box-shadow:0 14px 38px rgba(4,31,69,.06); transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.lp2-pain-grid article:hover { transform:translateY(-4px); border-color:rgba(8,126,208,.28); box-shadow:0 22px 48px rgba(4,31,69,.10); }
.lp2-pain-grid article > span { display:grid; place-items:center; width:42px; height:42px; margin-bottom:35px; border-radius:13px; color:var(--blue-600); background:var(--cyan-100); font-size:.75rem; font-weight:900; }
.lp2-pain-grid h3 { font-size:1.22rem; }
.lp2-pain-grid p { margin-bottom:0; font-size:.93rem; }
.lp2-before-after { background:linear-gradient(180deg,#f4f9fc,#fff); }
.lp2-ba-grid { display:grid; grid-template-columns:.72fr 1.28fr; gap:72px; align-items:center; }
.lp2-ba-copy h2 { max-width:530px; font-size:clamp(2.35rem,4vw,3.8rem); }
.lp2-ba-copy p { max-width:530px; font-size:1.05rem; }
.lp2-comparison { display:grid; grid-template-columns:1fr 48px 1fr; gap:14px; align-items:stretch; }
.lp2-compare-card { padding:30px; border-radius:24px; }
.lp2-compare-card > span { display:inline-flex; margin-bottom:22px; padding:7px 10px; border-radius:999px; font-size:.72rem; font-weight:900; letter-spacing:.08em; }
.lp2-compare-card ul { display:grid; gap:14px; margin:0; padding:0; list-style:none; }
.lp2-compare-card li { position:relative; padding-left:26px; color:#506984; font-weight:650; }
.lp2-compare-card li::before { position:absolute; left:0; top:0; font-weight:900; }
.lp2-compare-card.is-before { border:1px solid #e5eaf0; background:#fff; }
.lp2-compare-card.is-before > span { color:#8b5b5b; background:#fff0f0; }
.lp2-compare-card.is-before li::before { content:"–"; color:#bd6b6b; }
.lp2-compare-card.is-after { border:1px solid rgba(8,197,232,.22); background:linear-gradient(160deg,#f4fcfe,#eef9ff); box-shadow:0 20px 48px rgba(8,126,208,.09); }
.lp2-compare-card.is-after > span { color:#0576a5; background:#dff9fd; }
.lp2-compare-card.is-after li::before { content:"✓"; color:#13a777; }
.lp2-compare-arrow { display:grid; place-items:center; color:var(--blue-600); font-size:2rem; font-weight:900; }
.lp2-tour { overflow:hidden; }
.lp2-feature-row { display:grid; grid-template-columns:.74fr 1.26fr; gap:68px; align-items:center; padding:74px 0; border-top:1px solid #e4edf4; }
.lp2-feature-row:first-of-type { border-top:0; }
.lp2-feature-reverse { grid-template-columns:1.26fr .74fr; }
.lp2-feature-reverse .lp2-feature-copy { order:2; }
.lp2-feature-reverse .lp2-product-media { order:1; }
.lp2-feature-copy { position:relative; }
.lp2-number { display:block; margin-bottom:20px; color:#b8cce0; font-size:.8rem; font-weight:900; letter-spacing:.08em; }
.lp2-kicker { display:block; margin-bottom:11px; color:var(--blue-600); font-size:.78rem; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.lp2-feature-copy h3 { max-width:510px; font-size:clamp(2rem,3.4vw,3.25rem); }
.lp2-feature-copy > p { max-width:510px; font-size:1.03rem; }
.lp2-feature-copy ul { display:grid; gap:10px; margin:25px 0 27px; padding:0; list-style:none; }
.lp2-feature-copy li { position:relative; padding-left:26px; color:#526a84; }
.lp2-feature-copy li::before { content:"✓"; position:absolute; left:0; color:#12a674; font-weight:900; }
.lp2-product-media { position:relative; margin:0; }
.lp2-product-media::before { content:""; position:absolute; inset:11% 3% -5%; z-index:-1; border-radius:32px; background:linear-gradient(135deg,rgba(8,126,208,.18),rgba(8,197,232,.10)); filter:blur(22px); }
.lp2-product-media img { width:100%; border:1px solid rgba(8,126,208,.14); border-radius:24px; box-shadow:0 28px 70px rgba(4,31,69,.16); cursor:zoom-in; transition:transform .22s ease,box-shadow .22s ease; }
.lp2-product-media img:hover { transform:translateY(-3px); box-shadow:0 36px 86px rgba(4,31,69,.20); }
.lp2-manager-section { position:relative; overflow:hidden; color:#fff; background:radial-gradient(circle at 82% 18%,rgba(8,197,232,.18),transparent 30%),linear-gradient(135deg,#02152f,#062f63); }
.lp2-manager-section::after { content:""; position:absolute; width:460px; height:460px; right:-180px; bottom:-260px; border:1px solid rgba(56,217,242,.17); border-radius:50%; box-shadow:0 0 0 70px rgba(56,217,242,.03),0 0 0 140px rgba(56,217,242,.02); }
.lp2-manager-grid { position:relative; z-index:1; display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.lp2-manager-grid h2 { max-width:600px; color:#fff; }
.lp2-manager-grid p { max-width:600px; color:rgba(255,255,255,.7); font-size:1.06rem; }
.lp2-manager-cards { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.lp2-manager-cards article { min-height:150px; padding:25px; border:1px solid rgba(255,255,255,.11); border-radius:20px; background:rgba(255,255,255,.06); backdrop-filter:blur(12px); }
.lp2-manager-cards strong,.lp2-manager-cards span { display:block; }
.lp2-manager-cards strong { margin-bottom:8px; color:#fff; font-size:1.18rem; }
.lp2-manager-cards span { color:rgba(255,255,255,.62); }
.lp2-switch-section { background:#f6fafc; }
.lp2-switch-grid { display:grid; grid-template-columns:1fr .9fr; gap:75px; align-items:center; }
.lp2-switch-grid h2 { max-width:680px; font-size:clamp(2.35rem,4vw,3.8rem); }
.lp2-switch-grid p { max-width:640px; font-size:1.05rem; }
.lp2-switch-panel { padding:32px; border:1px solid #dce9f2; border-radius:25px; background:#fff; box-shadow:0 20px 55px rgba(4,31,69,.08); }
.lp2-switch-panel > strong { display:block; margin-bottom:20px; font-size:1.18rem; }
.lp2-switch-tags { display:flex; flex-wrap:wrap; gap:9px; }
.lp2-switch-tags span { padding:9px 12px; border:1px solid rgba(8,126,208,.13); border-radius:999px; color:#325a80; background:#f3f9fd; font-size:.82rem; font-weight:750; }
.lp2-switch-panel small { display:block; margin-top:22px; color:#8192a5; }
.lp2-why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.lp2-why-grid article { padding:29px; border:1px solid #e0eaf2; border-radius:21px; background:#fff; }
.lp2-why-grid b { display:block; margin-bottom:25px; color:#aac3d9; font-size:.75rem; letter-spacing:.08em; }
.lp2-why-grid h3 { font-size:1.2rem; }
.lp2-why-grid p { margin-bottom:0; font-size:.92rem; }
.lp2-pricing-section { background:linear-gradient(180deg,#fff,#f4f9fc); }
.lp2-pricing-grid { display:grid; grid-template-columns:1fr .72fr; gap:86px; align-items:center; }
.lp2-pricing-copy h2 { max-width:650px; }
.lp2-pricing-copy > p { max-width:600px; font-size:1.05rem; }
.lp2-pricing-copy ul { display:grid; grid-template-columns:1fr 1fr; gap:12px 25px; margin:30px 0 0; padding:0; list-style:none; }
.lp2-pricing-copy li { position:relative; padding-left:24px; color:#526a84; }
.lp2-pricing-copy li::before { content:"✓"; position:absolute; left:0; color:#16a673; font-weight:900; }
.lp2-price-card { padding:40px; border:1px solid rgba(8,126,208,.18); border-radius:29px; background:#fff; box-shadow:0 28px 75px rgba(4,31,69,.14); }
.lp2-price-label { display:inline-flex; padding:7px 11px; border-radius:999px; color:#0b75ba; background:#e5f8fd; font-size:.75rem; font-weight:900; text-transform:uppercase; letter-spacing:.06em; }
.lp2-price { display:flex; align-items:baseline; gap:6px; margin:28px 0 12px; color:var(--navy-900); }
.lp2-price small { font-size:1.15rem; font-weight:850; }
.lp2-price strong { font-size:clamp(3.2rem,5vw,4.6rem); line-height:1; letter-spacing:-.065em; }
.lp2-price span { color:#687b91; }
.lp2-price-card > p { padding-bottom:20px; border-bottom:1px solid #e4edf4; }
.lp2-price-note { display:block; margin-top:14px; color:#8291a3; text-align:center; font-size:.82rem; }
.lp2-demo-section { padding:92px 0; color:#fff; background:linear-gradient(135deg,#02152f,#073b76); }
.lp2-demo-inner { display:grid; grid-template-columns:1.25fr .75fr; gap:60px; align-items:center; padding:48px; border:1px solid rgba(56,217,242,.15); border-radius:31px; background:linear-gradient(135deg,rgba(255,255,255,.06),rgba(8,197,232,.06)); }
.lp2-demo-inner h2 { max-width:790px; color:#fff; font-size:clamp(2.3rem,4vw,3.8rem); }
.lp2-demo-inner p { max-width:720px; margin-bottom:0; color:rgba(255,255,255,.68); }
.lp2-demo-action { display:grid; gap:15px; }
.lp2-demo-action span { color:rgba(255,255,255,.55); text-align:center; font-size:.82rem; }
.lp2-faq-grid { display:grid; grid-template-columns:.68fr 1.32fr; gap:80px; align-items:start; }
.lp2-faq-intro { position:sticky; top:115px; }
.lp2-faq-intro h2 { font-size:clamp(2.25rem,4vw,3.7rem); }
.lp2-final-cta { padding:86px 0; color:#fff; background:#021329; }
.lp2-final-inner { display:grid; grid-template-columns:1.25fr .75fr; gap:55px; align-items:center; padding:48px; border:1px solid rgba(56,217,242,.18); border-radius:30px; background:radial-gradient(circle at 86% 18%,rgba(8,197,232,.15),transparent 33%),linear-gradient(135deg,rgba(255,255,255,.06),rgba(8,126,208,.06)); }
.lp2-final-inner h2 { max-width:800px; color:#fff; font-size:clamp(2.3rem,4vw,3.8rem); }
.lp2-final-inner p { margin-bottom:0; color:rgba(255,255,255,.68); }
.lp2-final-inner > div:last-child { display:grid; gap:17px; }
.lp2-final-inner > div:last-child strong { color:#fff; text-align:center; font-size:1.05rem; }
.lp2-zoomable { outline:0; }
@media(max-width:1180px){
  .lp2-hero-grid { grid-template-columns:1fr; }
  .lp2-hero-copy { max-width:850px; }
  .lp2-hero-media { width:min(100%,980px); margin:10px auto 0; }
  .lp2-pain-grid { grid-template-columns:repeat(2,1fr); }
  .lp2-ba-grid,.lp2-manager-grid,.lp2-switch-grid,.lp2-pricing-grid,.lp2-faq-grid { grid-template-columns:1fr; gap:50px; }
  .lp2-faq-intro { position:static; }
}
@media(max-width:900px){
  .lp2-section { padding:78px 0; }
  .lp2-feature-row,.lp2-feature-reverse { grid-template-columns:1fr; gap:34px; padding:58px 0; }
  .lp2-feature-reverse .lp2-feature-copy,.lp2-feature-reverse .lp2-product-media { order:initial; }
  .lp2-feature-copy { max-width:720px; }
  .lp2-comparison { grid-template-columns:1fr; }
  .lp2-compare-arrow { transform:rotate(90deg); }
  .lp2-why-grid { grid-template-columns:repeat(2,1fr); }
  .lp2-demo-inner,.lp2-final-inner { grid-template-columns:1fr; padding:35px; }
}
@media(max-width:640px){
  .lp2-container-wide { width:min(100% - 28px,1320px); }
  .lp2-hero { padding:38px 0 62px; }
  .lp2-breadcrumb { margin-bottom:27px; }
  .lp2-hero-copy h1 { font-size:clamp(2.5rem,12vw,3.6rem); }
  .lp2-hero-lead { font-size:1.02rem; }
  .lp2-proof-line { display:grid; grid-template-columns:1fr; }
  .lp2-hero-media img,.lp2-product-media img { border-radius:17px; }
  .lp2-pain-grid,.lp2-manager-cards,.lp2-why-grid,.lp2-pricing-copy ul { grid-template-columns:1fr; }
  .lp2-pain-grid article { min-height:auto; }
  .lp2-ba-grid { gap:35px; }
  .lp2-compare-card { padding:24px; }
  .lp2-feature-row { padding:46px 0; }
  .lp2-switch-panel,.lp2-price-card { padding:27px 22px; }
  .lp2-demo-inner,.lp2-final-inner { padding:28px 22px; }
  .lp2-final-cta,.lp2-demo-section { padding:65px 0; }
}


/* NexoOdonto Home 2.1 — navegação one-page e imagens HQ */
html { scroll-behavior:smooth; }
.home-lp2 .lp2-container-wide { width:min(1420px,calc(100% - 40px)); }
.home-lp2 .lp2-hero { padding-top:44px; }
.home-lp2 .lp2-hero-grid { grid-template-columns:minmax(400px,.72fr) minmax(670px,1.28fr); gap:38px; }
.home-lp2 .lp2-hero-media { width:100%; }
.home-lp2 .lp2-hero-media img,
.home-lp2 .lp2-product-media img { display:block; width:100%; height:auto; image-rendering:auto; filter:none; backface-visibility:hidden; }
.home-lp2 .lp2-hero-media img { border-radius:24px; }
.home-lp2 .lp2-product-media { width:100%; }
.home-lp2 .lp2-product-media img { border-radius:22px; }
.home-lp2 #agenda,.home-lp2 #prontuario,.home-lp2 #financeiro,.home-lp2 #automacoes,.home-lp2 #relatorios,
.home-lp2 #por-dentro,.home-lp2 #preco,.home-lp2 #faq,.home-lp2 #solucao { scroll-margin-top:92px; }
@media (max-width:1180px){
  .home-lp2 .lp2-hero-grid { grid-template-columns:1fr; }
  .home-lp2 .lp2-hero-copy { max-width:850px; }
  .home-lp2 .lp2-hero-media { width:min(100%,1050px); margin:16px auto 0; }
}
@media (max-width:640px){
  .home-lp2 .lp2-container-wide { width:min(100% - 24px,1420px); }
  .home-lp2 .lp2-hero { padding-top:30px; }
  .home-lp2 .lp2-hero-media { width:100%; }
  .home-lp2 .lp2-hero-media figcaption { font-size:.68rem; }
}


/* NexoOdonto Home 2.2 — Blog integrado à landing principal */
.home-lp2 #blog { scroll-margin-top:92px; }
.lp2-blog-section { background:linear-gradient(180deg,#f5fbff 0%,#ffffff 100%); }
.lp2-blog-heading { max-width:840px; margin-bottom:38px; }
.lp2-blog-heading h2 { max-width:820px; }
.lp2-blog-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.lp2-blog-card { display:flex; flex-direction:column; min-height:100%; overflow:hidden; border:1px solid rgba(8,126,208,.13); border-radius:22px; background:#fff; box-shadow:0 14px 36px rgba(4,31,69,.065); transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease; }
.lp2-blog-card:hover { transform:translateY(-5px); border-color:rgba(8,126,208,.28); box-shadow:0 22px 48px rgba(4,31,69,.11); }
.lp2-blog-card-top { min-height:96px; display:flex; flex-direction:column; justify-content:space-between; gap:13px; padding:21px 22px; color:#fff; background:radial-gradient(circle at 88% 20%,rgba(56,217,242,.22),transparent 34%),linear-gradient(135deg,#031d41,#075da8); }
.lp2-blog-card-top span { color:#50def4; font-size:.72rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.lp2-blog-card-top strong { color:#fff; font-size:1rem; }
.lp2-blog-card-body { display:flex; flex:1; flex-direction:column; padding:24px; }
.lp2-blog-card-body h3 { margin-bottom:12px; color:var(--ink); font-size:1.22rem; line-height:1.25; }
.lp2-blog-card-body p { flex:1; margin-bottom:20px; color:#667b91; font-size:.92rem; }
.lp2-blog-card-body .text-link { align-self:flex-start; }
@media(max-width:980px){ .lp2-blog-grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media(max-width:640px){ .lp2-blog-grid{grid-template-columns:1fr;} .lp2-blog-heading{margin-bottom:28px;} }
