:root {
  --bg: #3c4452;
  --bg-deep: #303744;
  --panel: #39414f;
  --field: #353b49;
  --line: #525c6b;
  --line-soft: rgba(255, 255, 255, 0.09);
  --text: #f5f7fa;
  --muted: #b6bec9;
  --muted-2: #8993a1;
  --blue: #55a7ff;
  --blue-strong: #2f8de9;
  --green: #76b47f;
  --green-dark: #568f61;
  --danger: #df6464;
  --shadow: 0 28px 70px rgba(15, 20, 28, 0.34);
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.shell { width: min(calc(100% - 40px), var(--shell)); 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; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; background: var(--blue); color: #0f1720; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 74px;
  background: rgba(48, 55, 68, 0.94);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { background: rgba(42, 49, 61, 0.98); box-shadow: 0 12px 30px rgba(15, 20, 28, .2); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; }
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 15px; letter-spacing: -.01em; }
.brand-copy small { margin-top: 4px; color: var(--muted-2); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.site-nav a { position: relative; color: var(--muted); font-size: 13px; font-weight: 500; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--blue); transition: right .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); background: var(--field); }
.menu-toggle > span:not(.sr-only) { display: block; height: 1px; margin: 5px 0; background: var(--text); }

.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.button:hover { transform: translateY(-1px); }
.button.is-disabled { cursor: default; opacity: .78; }
.button.is-disabled:hover { transform: none; }
.button-primary { background: var(--blue-strong); color: white; border-color: var(--blue-strong); }
.button-primary:hover { background: var(--blue); border-color: var(--blue); }
.button-secondary, .button-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.button-secondary:hover, .button-ghost:hover { border-color: var(--blue); background: rgba(85, 167, 255, .08); }
.button-compact { min-height: 38px; padding-inline: 16px; font-size: 12px; }
.header-action { margin-left: 2px; }

.hero { position: relative; min-height: 820px; padding: 158px 0 92px; overflow: hidden; background: linear-gradient(135deg, var(--bg) 0%, #363e4b 52%, #303744 100%); }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; right: -240px; top: 30px; border: 1px solid rgba(85, 167, 255, .08); transform: rotate(45deg); }
.hero::after { content: ""; position: absolute; width: 360px; height: 360px; left: -250px; bottom: 10px; background: rgba(118, 180, 127, .06); transform: rotate(45deg); }
.hero-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to right, transparent, #000 45%, #000); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.35fr; gap: 68px; align-items: center; }
.hero-copy h1 { max-width: 600px; margin: 16px 0 24px; font-size: clamp(42px, 5.1vw, 72px); line-height: 1.03; letter-spacing: -.055em; }
.eyebrow { margin: 0; color: #d2d8df; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 22px; height: 1px; margin: 0 8px 4px 0; background: var(--green); }
.hero-lead { max-width: 580px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 22px; margin: 30px 0 0; padding: 0; list-style: none; color: var(--muted-2); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.status-dot { display: inline-block; width: 6px; height: 6px; margin-right: 7px; background: var(--green); box-shadow: 0 0 0 3px rgba(118,180,127,.11); }

.product-window { min-width: 680px; background: #323a47; border: 1px solid #596473; box-shadow: var(--shadow); }
.window-titlebar { height: 43px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; background: #2a313c; border-bottom: 1px solid #1f2630; font-size: 11px; }
.window-brand { display: flex; align-items: center; gap: 8px; color: #d7dce3; }
.mini-mark { display: grid; place-items: center; width: 23px; height: 23px; }
.mini-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.window-close { color: #bdc5ce; font-size: 17px; }
.window-body { display: grid; grid-template-columns: 162px 1fr; min-height: 448px; }
.plugin-nav { display: flex; flex-direction: column; padding: 14px 0 0; background: #303744; border-right: 1px solid #252c36; }
.plugin-user { display: flex; gap: 9px; align-items: center; margin: 0 11px 16px; padding: 10px 8px 13px; border-bottom: 1px solid rgba(255,255,255,.08); }
.avatar { display: grid; place-items: center; width: 29px; height: 29px; background: #414b59; color: #cdd3da; font-size: 9px; }
.plugin-user > span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.plugin-user strong { font-size: 9px; font-weight: 600; }
.plugin-user small { margin-top: 3px; color: #7f8996; font-size: 8px; }
.plugin-nav button { display: flex; align-items: center; gap: 9px; width: 100%; height: 40px; padding: 0 13px; border: 0; border-left: 2px solid transparent; background: transparent; color: #9fa8b4; text-align: left; font-size: 9px; }
.plugin-nav button.is-active { border-left-color: var(--blue); background: #384250; color: white; }
.nav-icon { width: 15px; color: #8e9aa8; font-size: 13px; text-align: center; }
.plugin-nav-footer { margin-top: auto; padding: 13px; border-top: 1px solid rgba(255,255,255,.07); color: #8993a0; font-size: 8px; }
.plugin-nav-footer .status-dot { width: 5px; height: 5px; }
.plugin-content { display: grid; grid-template-rows: 57px 1fr 27px; min-width: 0; background: var(--bg); }
.plugin-heading { display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.plugin-heading > span { display: flex; flex-direction: column; line-height: 1.2; }
.plugin-heading small { color: #7f8996; font-size: 7px; letter-spacing: .12em; }
.plugin-heading strong { margin-top: 4px; font-size: 12px; }
.plugin-heading button, .action-row button, .module-visual > button { border: 1px solid #586373; background: #414a58; color: #edf0f4; font-size: 8px; }
.plugin-heading button { height: 27px; padding: 0 12px; border-color: var(--blue-strong); background: #3d77ae; }
.plugin-panels { display: grid; grid-template-columns: 1.05fr 1.4fr .95fr; gap: 8px; padding: 8px; min-height: 0; }
.plugin-panel { position: relative; min-width: 0; padding: 12px 9px 9px; background: var(--panel); border: 1px solid #4c5664; }
.panel-label { color: #aeb6c0; font-size: 7px; font-weight: 700; letter-spacing: .08em; }
.file-field { display: flex; align-items: center; justify-content: space-between; height: 31px; margin: 11px 0 8px; padding-left: 8px; background: var(--field); border: 1px solid #596473; color: #b9c0c9; font-size: 8px; }
.file-field b { align-self: stretch; display: grid; place-items: center; padding: 0 7px; background: #475260; color: #e5e9ee; font-weight: 500; }
.compact-row { margin-top: 7px; }
.compact-row > span { display: block; margin-bottom: 3px; color: #828c99; font-size: 7px; }
.compact-row > strong { display: flex; align-items: center; height: 27px; padding: 0 7px; background: var(--field); border: 1px solid #4d5765; color: #cdd3da; font-size: 8px; font-weight: 500; }
.action-row { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-top: 13px; }
.action-row button { height: 28px; }
.action-row button:last-child { border-color: #3f89cf; background: #386e9f; }
.preview-panel { display: flex; flex-direction: column; padding: 0; overflow: hidden; background: #2f3744; }
.panel-top { display: flex; align-items: center; justify-content: space-between; height: 31px; padding: 0 9px; color: #8993a0; font-size: 10px; }
.preview-object { position: relative; flex: 1; min-height: 245px; overflow: hidden; background: radial-gradient(circle at 50% 55%, #46505e 0, #363e4b 42%, #2d343f 74%); }
.preview-object::before { content: ""; position: absolute; left: -10%; right: -10%; bottom: 22%; height: 1px; background: rgba(255,255,255,.07); transform: rotate(-7deg); box-shadow: 0 20px rgba(255,255,255,.035), 0 -20px rgba(255,255,255,.035); }
.pot { position: absolute; left: 42%; bottom: 18%; width: 17%; height: 25%; background: linear-gradient(90deg, #9e765d, #c79d7e 48%, #8e6750); clip-path: polygon(5% 0, 95% 0, 79% 100%, 21% 100%); filter: drop-shadow(10px 12px 8px rgba(0,0,0,.24)); }
.stem { position: absolute; left: 49.5%; bottom: 39%; width: 2px; height: 34%; background: #517155; transform: rotate(-3deg); transform-origin: bottom; }
.leaf { position: absolute; width: 24%; height: 16%; background: linear-gradient(140deg, #668b67, #385c42); border-radius: 100% 0 100% 0; transform-origin: 100% 100%; box-shadow: inset -8px -5px 10px rgba(0,0,0,.13); }
.leaf-a { left: 29%; top: 31%; transform: rotate(22deg); }
.leaf-b { left: 50%; top: 30%; transform: scaleX(-1) rotate(15deg); }
.leaf-c { left: 25%; top: 45%; transform: rotate(-2deg) scale(.92); }
.leaf-d { left: 53%; top: 43%; transform: scaleX(-1) rotate(-7deg) scale(.93); }
.preview-status { display: flex; align-items: center; justify-content: space-between; height: 30px; padding: 0 8px; border-top: 1px solid rgba(255,255,255,.06); color: #8b95a1; font-size: 7px; }
.parts-panel { padding-top: 12px; }
.part { display: grid; grid-template-columns: 13px 1fr auto; align-items: center; gap: 6px; height: 31px; margin-top: 7px; padding: 0 6px; background: var(--field); border: 1px solid #4d5764; color: #bbc2cb; font-size: 8px; }
.part.is-selected { border-color: var(--blue); box-shadow: inset 0 0 0 1px rgba(85,167,255,.2); }
.part .color { width: 11px; height: 11px; }
.part .green { background: #537657; }.part .clay { background: #a77a5d; }.part .earth { background: #665243; }
.part b { color: #77818e; font-size: 7px; font-weight: 500; }
.method { margin-top: 13px; }
.method > span { display: block; margin-bottom: 4px; color: #818b98; font-size: 7px; }
.method strong { display: flex; align-items: center; justify-content: space-between; height: 28px; padding: 0 7px; background: var(--field); border: 1px solid #505a68; color: #bac1ca; font-size: 8px; font-weight: 500; }
.plugin-statusbar { display: flex; align-items: center; justify-content: space-between; padding: 0 10px; background: #303744; border-top: 1px solid #242b35; color: #77818e; font-size: 7px; }

.signal-bar { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-deep); }
.signal-items { min-height: 70px; display: flex; align-items: center; justify-content: space-between; color: #a8b0bb; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.signal-items i { width: 3px; height: 3px; background: var(--green); }
.section { padding: 118px 0; }
.section-heading { max-width: 790px; margin-bottom: 54px; }
.section-heading.compact { max-width: 660px; }
.section-heading h2 { margin: 16px 0 19px; font-size: clamp(34px, 4.5vw, 58px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p:last-child { max-width: 630px; margin: 0; color: var(--muted); font-size: 16px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { position: relative; min-height: 320px; padding: 38px 32px 32px; background: var(--panel); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s ease, transform .2s ease; }
.feature-card:hover { z-index: 1; background: #3d4654; transform: translateY(-3px); }
.feature-number { position: absolute; right: 24px; top: 22px; color: #76808d; font-size: 10px; }
.feature-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 64px; background: var(--field); border: 1px solid #596473; color: var(--blue); font-size: 21px; }
.feature-card h3 { margin: 0 0 12px; font-size: 19px; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.modules-section { background: var(--bg-deep); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.module-stack { display: grid; gap: 18px; }
.module-card { position: relative; display: grid; grid-template-columns: 75px 1fr 420px; min-height: 530px; overflow: hidden; background: var(--panel); border: 1px solid var(--line); }
.module-index { padding-top: 42px; border-right: 1px solid var(--line); color: #75808d; text-align: center; font-size: 11px; }
.module-copy { padding: 52px 46px; }
.module-tag { color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.module-copy h3 { max-width: 520px; margin: 17px 0 17px; font-size: clamp(29px, 3vw, 42px); line-height: 1.12; letter-spacing: -.04em; }
.module-copy > p { max-width: 530px; margin: 0; color: var(--muted); font-size: 14px; }
.module-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 24px; margin: 31px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line-soft); list-style: none; color: #c5cbd3; font-size: 12px; }
.module-copy li::before { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 9px 2px 0; background: var(--green); }
.format-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 29px; }
.format-list span { padding: 5px 8px; background: var(--field); border: 1px solid #4c5664; color: #8f99a6; font-size: 8px; font-weight: 700; }
.module-visual { align-self: stretch; margin: 34px 34px 34px 0; background: #303744; border: 1px solid #5b6573; box-shadow: 0 20px 45px rgba(19,24,32,.25); }
.mini-toolbar { height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; background: #292f3a; border-bottom: 1px solid #20262f; color: #bfc6cf; font-size: 10px; }
.mini-toolbar b { font-size: 15px; font-weight: 400; }
.drop-zone { height: 260px; margin: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px dashed #637080; background: #353d4a; }
.drop-zone div { color: var(--blue); font-size: 42px; line-height: 1; }
.drop-zone strong { margin-top: 18px; font-size: 12px; }
.drop-zone small { margin-top: 7px; color: #7f8996; font-size: 9px; }
.format-strip { display: flex; gap: 5px; margin: 0 18px 14px; }
.format-strip span { flex: 1; padding: 8px; background: var(--field); border: 1px solid #4d5866; color: #8e98a5; text-align: center; font-size: 8px; }
.module-visual > button { width: calc(100% - 36px); height: 34px; margin: 0 18px; border-color: #3e8bd2; background: #3974aa; }
.support-tools { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 18px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.support-tools article { display: grid; grid-template-columns: 36px 1fr; gap: 18px; min-height: 190px; padding: 29px 26px; background: #353d49; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.support-tools article > span { color: var(--blue); font-size: 9px; }
.support-tools small { color: var(--green); font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.support-tools h3 { margin: 9px 0 8px; font-size: 18px; }
.support-tools p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.workflow-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.workflow-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.workflow-list li { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.workflow-list li > span { color: var(--blue); font-size: 10px; font-weight: 700; }
.workflow-list h3 { margin: 0 0 7px; font-size: 18px; }
.workflow-list p { margin: 0; color: var(--muted); font-size: 13px; }

.plans-section { background: #343c49; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.plans-heading { display: block; }
.plans-heading .section-heading { max-width: 780px; margin-bottom: 54px; }
.plans-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(100%, 940px); margin: 0 auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.plan-card { position: relative; min-height: 550px; padding: 28px 30px; background: var(--panel); border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: pointer; outline: 0; transition: background .18s ease, box-shadow .18s ease, transform .18s ease; }
.plan-card:hover, .plan-card:focus-visible { z-index: 1; background: #3e4755; transform: translateY(-3px); }
.plan-card.selected { z-index: 2; background: #3e4856; box-shadow: inset 0 0 0 2px var(--blue); }
.plan-card.is-featured::after { content: "RECOMENDADO"; position: absolute; top: 0; right: 0; padding: 7px 10px; background: var(--blue-strong); color: #fff; font-size: 8px; font-weight: 700; letter-spacing: .1em; }
.plan-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: 23px; border-bottom: 1px solid var(--line-soft); color: #7f8996; font-size: 9px; letter-spacing: .1em; }
.plan-topline b { color: var(--green); font-size: 9px; }
.plan-card h3 { margin: 26px 0 8px; font-size: 24px; letter-spacing: -.035em; }
.plan-description { min-height: 48px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.plan-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 7px; margin: 24px 0 8px; }
.plan-price strong { font-size: 30px; line-height: 1; letter-spacing: -.04em; }
.plan-price span { color: var(--muted-2); font-size: 11px; }
.plan-billing-note { min-height: 18px; margin: 0; color: var(--muted-2); font-size: 10px; line-height: 1.5; }
.plan-highlight { display: inline-flex; align-items: center; min-height: 25px; margin: 12px 0 0; padding: 5px 9px; background: rgba(118,180,127,.08); border: 1px solid rgba(118,180,127,.35); color: #cbe7d0; font-size: 9px; font-weight: 600; }
.plan-card ul { display: grid; gap: 9px; margin: 20px 0 29px; padding: 19px 0 0; border-top: 1px solid var(--line-soft); list-style: none; color: #c7cdd5; font-size: 11px; }
.plan-card li::before { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 9px 2px 0; background: var(--green); }
.plan-select { position: absolute; left: 25px; right: 25px; bottom: 26px; display: grid; place-items: center; height: 40px; border: 1px solid #5b6674; color: #d7dce3; font-size: 11px; font-weight: 600; }
.plan-card:hover .plan-select, .plan-card:focus-visible .plan-select, .plan-card.selected .plan-select { border-color: var(--blue); background: rgba(85,167,255,.08); color: #fff; }
.plan-card.selected .plan-select::after { content: " ✓"; color: var(--green); }
.guarantee-strip { display: grid; grid-template-columns: 210px 1fr; gap: 25px; align-items: center; min-height: 82px; margin-top: 18px; padding: 18px 25px; background: rgba(118,180,127,.08); border: 1px solid rgba(118,180,127,.45); }
.guarantee-strip strong { color: #d7f0db; font-size: 14px; }
.guarantee-strip span { color: var(--muted); font-size: 11px; }

.subscribe-panel { display: grid; grid-template-columns: .9fr 1.1fr; margin-top: 30px; background: #303844; border: 1px solid #5a6573; }
.subscribe-context { padding: 48px; border-right: 1px solid var(--line); }
.subscribe-context h3 { margin: 16px 0 14px; font-size: clamp(29px, 3vw, 40px); line-height: 1.12; letter-spacing: -.04em; }
.subscribe-context > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 14px; }
.subscribe-context ul { display: grid; gap: 10px; margin: 30px 0 0; padding: 25px 0 0; border-top: 1px solid var(--line-soft); list-style: none; color: #bdc5ce; font-size: 11px; }
.subscribe-context li::before { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 9px 2px 0; background: var(--green); }
.subscribe-form { display: flex; flex-direction: column; justify-content: center; padding: 48px; background: #39414f; }
.subscribe-form label { margin-bottom: 8px; color: #e1e5ea; font-size: 11px; font-weight: 600; }
.subscribe-form input { width: 100%; height: 49px; padding: 0 14px; border: 1px solid #596473; border-radius: 0; outline: 0; background: var(--field); color: var(--text); font: inherit; font-size: 13px; }
.subscribe-form input::placeholder { color: #7d8794; }
.subscribe-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(85,167,255,.12); }
.subscribe-form .legal-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 16px 0 0;
  color: #cbd2da;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.55;
  cursor: pointer;
}
.subscribe-form .legal-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--blue);
}
.subscribe-form .legal-consent a {
  color: #8fc4ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.selected-plan-info { min-height: 66px; margin: 12px 0; padding: 13px 14px; background: #333b48; border: 1px solid #4e5967; color: #aeb7c2; font-size: 11px; line-height: 1.65; white-space: pre-line; }
.subscribe-button { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; min-height: 48px; padding: 0 18px; border: 1px solid var(--blue-strong); border-radius: 0; background: var(--blue-strong); color: #fff; font-size: 12px; font-weight: 700; cursor: pointer; }
.subscribe-button:hover:not(:disabled) { background: var(--blue); border-color: var(--blue); }
.subscribe-button:disabled { border-color: #56606e; background: #4b5563; color: #8e98a5; cursor: not-allowed; }
.spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
.error-msg, .status-msg { min-height: 0; margin-top: 11px; white-space: pre-line; font-size: 11px; }
.error-msg:not(:empty), .status-msg:not(:empty) { padding: 11px 12px; border: 1px solid; }
.error-msg { color: #ffb1b1; }.error-msg:not(:empty) { border-color: rgba(223,100,100,.5); background: rgba(223,100,100,.08); }
.status-msg { color: #b9e4c0; }.status-msg:not(:empty) { border-color: rgba(118,180,127,.5); background: rgba(118,180,127,.08); }
.subscribe-form > small { margin-top: 12px; color: #7f8996; font-size: 9px; }
@keyframes spin { to { transform: rotate(360deg); } }

.account-section { background: var(--bg); }
.account-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.account-actions { border-top: 1px solid var(--line); }
.account-actions a { display: grid; grid-template-columns: 45px 1fr auto; gap: 18px; align-items: center; min-height: 108px; padding: 20px 18px; border-bottom: 1px solid var(--line); transition: background .18s ease; }
.account-actions a:hover { background: rgba(255,255,255,.025); }
.account-actions a > span { color: var(--blue); font-size: 9px; }
.account-actions a > div { display: flex; flex-direction: column; }
.account-actions strong { font-size: 16px; }
.account-actions small { margin-top: 5px; color: var(--muted); font-size: 11px; }
.account-actions b { color: var(--blue); font-size: 22px; font-weight: 400; }

.faq-section { background: var(--bg-deep); border-top: 1px solid var(--line-soft); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; padding: 18px 0; cursor: pointer; font-size: 14px; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 20px; font-weight: 300; transition: transform .18s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -3px 45px 24px 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

.launch-section { padding: 0 0 118px; }
.launch-panel { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; min-height: 300px; padding: 58px 62px; overflow: hidden; background: #313a47; border: 1px solid #5b6674; }
.launch-panel::after { content: "G"; position: absolute; right: 18%; top: -97px; color: rgba(255,255,255,.025); font-size: 340px; line-height: 1; font-weight: 800; pointer-events: none; }
.launch-panel > div { position: relative; z-index: 1; max-width: 700px; }
.launch-panel h2 { margin: 15px 0 13px; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -.045em; }
.launch-panel p:last-child { margin: 0; color: var(--muted); }
.launch-panel .button { position: relative; z-index: 1; flex: 0 0 auto; }

.site-footer { background: #29303b; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { min-height: 150px; display: grid; grid-template-columns: 1fr auto auto auto; gap: 34px; align-items: center; color: #7f8995; font-size: 11px; }
.footer-brand { color: var(--text); }
.site-footer a:hover { color: var(--text); }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .product-window { min-width: 0; width: 100%; }
  .hero { padding-top: 138px; }
  .module-card { grid-template-columns: 62px 1fr 350px; }
  .module-copy { padding: 44px 34px; }
  .module-visual { margin-right: 24px; }
  .subscribe-context, .subscribe-form { padding: 38px; }
}

@media (max-width: 880px) {
  .header-action { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .site-nav { position: absolute; top: 73px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 18px; background: #2d3541; border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .site-nav a::after { display: none; }
  .signal-items { flex-wrap: wrap; justify-content: center; gap: 14px 20px; padding: 22px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .support-tools { grid-template-columns: 1fr; }
  .feature-card { min-height: 250px; }
  .feature-icon { margin-bottom: 36px; }
  .module-card { grid-template-columns: 54px 1fr; }
  .module-visual { grid-column: 2; min-height: 440px; margin: 0 30px 30px 0; }
  .workflow-layout { grid-template-columns: 1fr; gap: 35px; }
  .plans-heading .section-heading { margin-bottom: 28px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 540px; }
  .subscribe-panel, .account-layout, .faq-layout { grid-template-columns: 1fr; }
  .subscribe-context { border-right: 0; border-bottom: 1px solid var(--line); }
  .account-layout, .faq-layout { gap: 35px; }
  .launch-panel { align-items: flex-start; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 14px; padding: 38px 0; }
}

@media (max-width: 700px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .hero { min-height: 0; padding: 124px 0 70px; }
  .hero-copy h1 { font-size: clamp(38px, 12vw, 58px); }
  .hero-lead { font-size: 15px; }
  .hero-actions .button { width: 100%; }
  .product-window { display: none; }
  .signal-items i { display: none; }
  .signal-items { align-items: flex-start; flex-direction: column; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 36px; }
  .module-card { display: block; min-height: 0; }
  .module-index { padding: 18px 22px; border-right: 0; border-bottom: 1px solid var(--line); text-align: left; }
  .module-copy { padding: 34px 24px; }
  .module-copy h3 { font-size: 31px; }
  .module-copy ul { grid-template-columns: 1fr; }
  .module-visual { display: none; }
  .plan-card { min-height: 475px; padding: 26px 23px; }
  .plan-select { left: 23px; right: 23px; }
  .guarantee-strip { grid-template-columns: 1fr; gap: 6px; }
  .subscribe-context, .subscribe-form { padding: 32px 24px; }
  .launch-section { padding-bottom: 82px; }
  .launch-panel { min-height: 0; padding: 40px 25px; }
  .launch-panel .button { width: 100%; }
  .footer-inner { align-items: flex-start; }
}

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


/* ==========================================================
   STUDIOBOARD — IDENTIDADE VISUAL INICIAL (v1)
   Base Revit preservada + acentos da marca em azul e violeta.
   ========================================================== */
:root {
  --bg: #353d49;
  --bg-deep: #29313d;
  --panel: #37404d;
  --field: #303844;
  --line: #505b6a;
  --line-soft: rgba(255, 255, 255, 0.085);
  --text: #f7f8fb;
  --muted: #bcc4cf;
  --muted-2: #8f9aa8;
  --blue: #4db9ff;
  --blue-strong: #167fff;
  --brand-cyan: #00c7ff;
  --brand-blue: #1687ff;
  --brand-indigo: #4057ff;
  --brand-violet: #8a2cff;
  --brand-magenta: #bd2dff;
  --brand-gradient: linear-gradient(110deg, var(--brand-cyan) 0%, var(--brand-blue) 34%, var(--brand-indigo) 63%, var(--brand-violet) 100%);
  --brand-glow: 0 14px 38px rgba(41, 104, 255, .22);
}

::selection { background: rgba(67, 83, 255, .38); color: #fff; }

body {
  background:
    radial-gradient(circle at 84% 10%, rgba(116, 43, 255, .05), transparent 28%),
    var(--bg);
}

.site-header {
  background: rgba(38, 45, 57, .94);
  border-bottom-color: rgba(111, 128, 151, .24);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--brand-gradient);
  opacity: .9;
}
.site-header.is-scrolled {
  background: rgba(32, 39, 50, .98);
  box-shadow: 0 14px 34px rgba(8, 12, 20, .3);
}
.brand-copy strong { color: #fff; }
.brand-copy small { color: #8fa7c6; }
.brand-mark, .mini-mark { position: relative; }
.brand-mark img, .mini-mark img { filter: drop-shadow(0 0 8px rgba(22, 135, 255, .18)); }
@supports ((-webkit-mask: url("studioboard-logo.png")) or (mask: url("studioboard-logo.png"))) {
  .brand-mark::before, .mini-mark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--brand-gradient);
    -webkit-mask: url("studioboard-logo.png") center / contain no-repeat;
    mask: url("studioboard-logo.png") center / contain no-repeat;
    filter: drop-shadow(0 0 8px rgba(49, 104, 255, .32));
  }
  .brand-mark img, .mini-mark img { opacity: 0; }
}
.site-nav a::after { height: 2px; background: var(--brand-gradient); }
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; }

.button-primary,
.subscribe-button:not(:disabled),
.plugin-heading button,
.module-visual > button {
  background: var(--brand-gradient);
  border-color: #337dff;
  box-shadow: 0 10px 24px rgba(35, 92, 238, .18);
}
.button-primary:hover,
.subscribe-button:hover:not(:disabled),
.plugin-heading button:hover,
.module-visual > button:hover {
  background: linear-gradient(110deg, #21d3ff 0%, #258dff 34%, #5165ff 65%, #9a3aff 100%);
  border-color: #66b8ff;
  box-shadow: 0 13px 30px rgba(57, 83, 255, .28);
}
.button-secondary:hover, .button-ghost:hover {
  border-color: #5ea9ff;
  background: linear-gradient(110deg, rgba(0, 199, 255, .08), rgba(138, 44, 255, .08));
}

.hero {
  background:
    radial-gradient(circle at 79% 27%, rgba(79, 67, 255, .18), transparent 30%),
    radial-gradient(circle at 16% 20%, rgba(0, 199, 255, .11), transparent 28%),
    linear-gradient(135deg, #39424f 0%, #333b48 48%, #29313d 100%);
}
.hero::before {
  width: 650px;
  height: 650px;
  right: -250px;
  top: 18px;
  border-color: rgba(106, 69, 255, .22);
  border-radius: 50%;
  transform: none;
  box-shadow: 0 0 90px rgba(74, 66, 255, .08), inset 0 0 70px rgba(0, 199, 255, .025);
}
.hero::after {
  left: -170px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  transform: none;
  background: radial-gradient(circle, rgba(0, 199, 255, .10), transparent 66%);
}
.hero-grid {
  opacity: .16;
  background-image:
    linear-gradient(rgba(77, 185, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 94, 255, .08) 1px, transparent 1px);
  mask-image: linear-gradient(to right, transparent 2%, #000 42%, #000 82%, transparent);
}
.hero-copy h1 { text-shadow: 0 12px 38px rgba(6, 10, 18, .22); }
.hero-copy h1::after {
  content: "";
  display: block;
  width: 78px;
  height: 3px;
  margin-top: 25px;
  background: var(--brand-gradient);
  box-shadow: 0 0 18px rgba(42, 118, 255, .35);
}
.eyebrow span { width: 27px; height: 2px; background: var(--brand-gradient); }

.product-window {
  position: relative;
  border-color: #5b6878;
  box-shadow: 0 30px 80px rgba(11, 16, 27, .46), 0 0 48px rgba(58, 72, 255, .08);
}
.product-window::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -1px -1px auto;
  height: 2px;
  background: var(--brand-gradient);
}
.plugin-nav button.is-active {
  border-left-color: var(--brand-cyan);
  background: linear-gradient(90deg, rgba(21, 128, 255, .18), rgba(75, 70, 255, .05));
}
.part.is-selected {
  border-color: #4caeff;
  box-shadow: inset 0 0 0 1px rgba(83, 91, 255, .25), 0 0 16px rgba(22, 135, 255, .08);
}

.signal-bar {
  position: relative;
  background: #29313d;
}
.signal-bar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--brand-gradient);
  opacity: .38;
}
.signal-items i { background: var(--brand-blue); box-shadow: 0 0 8px rgba(22, 135, 255, .45); }

.feature-card,
.module-card,
.support-tools article,
.plan-card,
.subscribe-panel {
  overflow: hidden;
}
.feature-card::before,
.module-card::before,
.support-tools article::before,
.plan-card::before,
.subscribe-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--brand-gradient);
  opacity: .14;
  transition: opacity .2s ease;
}
.feature-card:hover::before,
.support-tools article:hover::before { opacity: .75; }
.feature-card:hover {
  background: #3b4654;
  box-shadow: 0 18px 36px rgba(12, 17, 27, .16);
}
.feature-icon {
  color: #5bbdff;
  border-color: rgba(82, 146, 222, .62);
  background: linear-gradient(145deg, rgba(19, 123, 255, .10), rgba(121, 45, 255, .08)), var(--field);
}
.modules-section {
  background:
    radial-gradient(circle at 90% 16%, rgba(112, 44, 255, .06), transparent 25%),
    var(--bg-deep);
}
.module-card::before { opacity: .6; }
.module-tag, .support-tools article > span, .workflow-list li > span { color: #55bdff; }
.module-copy li::before, .support-tools small { background: none; color: #7f8cff; }
.module-copy li::before {
  background: var(--brand-gradient);
  box-shadow: 0 0 7px rgba(22, 135, 255, .28);
}
.support-tools article { position: relative; transition: background .2s ease; }
.support-tools article:hover { background: #394351; }
.drop-zone div { color: #54bdff; text-shadow: 0 0 18px rgba(22, 135, 255, .22); }

.plans-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(123, 45, 255, .10), transparent 28%),
    radial-gradient(circle at 16% 64%, rgba(0, 190, 255, .055), transparent 32%),
    #303946;
}
.plans-grid { border-color: #536171; box-shadow: 0 26px 60px rgba(13, 18, 28, .16); }
.plan-card { background: #37414e; }
.plan-card::before { opacity: .72; background: linear-gradient(90deg, #00c7ff, #1687ff); }
.plan-card.is-featured::before { background: var(--brand-gradient); opacity: 1; }
.plan-card:hover, .plan-card:focus-visible {
  background: #3b4654;
  box-shadow: 0 22px 42px rgba(9, 14, 24, .18);
}
.plan-card.selected {
  background: #3c4755;
  box-shadow: inset 0 0 0 2px #3f9cff, 0 18px 46px rgba(34, 91, 238, .18);
}
.plan-card.is-featured.selected {
  box-shadow: inset 0 0 0 2px #7f58ff, 0 18px 48px rgba(100, 50, 255, .20);
}
.plan-card.is-featured::after { background: var(--brand-gradient); box-shadow: 0 8px 20px rgba(72, 62, 255, .24); }
.plan-topline b { color: #57bcff; }
.plan-card.is-featured .plan-topline b { color: #a98bff; }
.plan-price strong { text-shadow: 0 8px 24px rgba(0, 0, 0, .18); }
.plan-highlight {
  background: rgba(22, 135, 255, .09);
  border-color: rgba(58, 149, 255, .42);
  color: #cdeaff;
}
.plan-card.is-featured .plan-highlight {
  background: rgba(129, 57, 255, .10);
  border-color: rgba(154, 91, 255, .45);
  color: #e1d4ff;
}
.plan-card li::before { background: #4db9ff; box-shadow: 0 0 7px rgba(22, 135, 255, .25); }
.plan-card.is-featured li::before { background: #9872ff; box-shadow: 0 0 7px rgba(138, 44, 255, .26); }
.plan-select { border-color: #617083; }
.plan-card:hover .plan-select,
.plan-card:focus-visible .plan-select,
.plan-card.selected .plan-select {
  border-color: #4eaaff;
  background: linear-gradient(110deg, rgba(0, 199, 255, .09), rgba(83, 87, 255, .10));
}
.plan-card.is-featured:hover .plan-select,
.plan-card.is-featured:focus-visible .plan-select,
.plan-card.is-featured.selected .plan-select { border-color: #8d68ff; }
.plan-card.selected .plan-select::after { color: #69cbff; }
.guarantee-strip {
  background: linear-gradient(110deg, rgba(0, 199, 255, .075), rgba(85, 86, 255, .075));
  border-color: rgba(69, 147, 255, .45);
  box-shadow: inset 3px 0 0 #25adff;
}
.guarantee-strip strong { color: #d8efff; }

.subscribe-panel { position: relative; border-color: #59697c; box-shadow: 0 22px 52px rgba(11, 16, 27, .14); }
.subscribe-panel::before { opacity: .65; }
.subscribe-form { background: #37414e; }
.subscribe-form input:focus {
  border-color: #4daeff;
  box-shadow: 0 0 0 2px rgba(43, 116, 255, .15), 0 0 22px rgba(76, 65, 255, .06);
}
.subscribe-form .legal-consent input { accent-color: #3f78ff; }
.subscribe-form .legal-consent a { color: #78c7ff; }
.selected-plan-info { border-left: 2px solid #3aa8ff; }

.account-actions a:hover { background: linear-gradient(90deg, rgba(0, 199, 255, .035), rgba(112, 44, 255, .025)); }
.account-actions a > span, .account-actions b, .faq-list summary span { color: #55baff; }
.faq-section {
  background:
    radial-gradient(circle at 86% 30%, rgba(111, 44, 255, .055), transparent 27%),
    var(--bg-deep);
}

.site-footer {
  position: relative;
  background: #242b35;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--brand-gradient);
  opacity: .48;
}
.site-footer a:hover { color: #75c8ff; }

@media (max-width: 880px) {
  .site-nav { background: #252d38; }
}

/* ==========================================================
   STUDIOBOARD — REFINO DA HOME E APLICAÇÃO DA LOGO (v2)
   Conteúdo mais direto, catálogo animado e marca oficial.
   ========================================================== */
.brand-mark,
.mini-mark {
  overflow: hidden;
  background: #02050e;
  border: 1px solid rgba(78, 137, 255, .38);
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(40, 83, 255, .14);
}
.brand-mark { width: 44px; height: 44px; flex-basis: 44px; }
.brand-mark::before,
.mini-mark::before { display: none !important; }
.brand-mark img,
.mini-mark img {
  opacity: 1 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}
.brand-copy strong {
  display: inline-flex;
  align-items: baseline;
  font-size: 16px;
  letter-spacing: -.025em;
}
.brand-studio { color: #fff; }
.brand-board {
  color: transparent;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.brand-copy small { color: #9ba9bd; letter-spacing: .16em; }
.mini-mark { width: 25px; height: 25px; border-radius: 6px; }

.hero { min-height: 790px; padding-top: 146px; }
.hero-layout { grid-template-columns: .95fr 1.35fr; gap: 62px; }
.hero-copy h1 { max-width: 650px; }
.hero-lead { max-width: 620px; }
.hero-facts {
  flex-wrap: nowrap;
  gap: 18px;
  font-size: 10px;
  white-space: nowrap;
}
.hero-facts li { display: inline-flex; align-items: center; }
.hero-facts .status-dot {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-violet));
  box-shadow: 0 0 0 3px rgba(72, 91, 255, .10), 0 0 10px rgba(67, 101, 255, .34);
}
.hero-facts li:nth-child(2) .status-dot { background: linear-gradient(135deg, #1687ff, #5260ff); }
.hero-facts li:nth-child(3) .status-dot { background: linear-gradient(135deg, #5260ff, #9c32ff); }

#recursos { padding-top: 116px; }
.feature-card { min-height: 300px; }
.feature-card h3 { max-width: 270px; }

.catalog-showcase {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: center;
  margin-top: 22px;
  padding: 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(112, 44, 255, .10), transparent 31%),
    linear-gradient(145deg, #35404d 0%, #303947 100%);
  border: 1px solid #536172;
  box-shadow: 0 26px 64px rgba(10, 15, 25, .22);
}
.catalog-showcase::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--brand-gradient);
  opacity: .8;
}
.catalog-copy { position: relative; z-index: 1; }
.catalog-copy h3 {
  max-width: 500px;
  margin: 17px 0 17px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.catalog-copy > p:last-of-type {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.catalog-copy ul {
  display: grid;
  gap: 10px;
  margin: 27px 0 0;
  padding: 23px 0 0;
  border-top: 1px solid var(--line-soft);
  list-style: none;
  color: #c9d0d9;
  font-size: 12px;
}
.catalog-copy li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 10px 1px 0;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-violet));
  box-shadow: 0 0 8px rgba(54, 99, 255, .36);
}
.catalog-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #2b3340;
  border: 1px solid #5d6979;
  box-shadow: 0 24px 48px rgba(8, 12, 20, .32), 0 0 34px rgba(63, 73, 255, .08);
}
.catalog-titlebar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 15px;
  background: #252c37;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #aab5c4;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.catalog-titlebar > div { display: flex; align-items: center; gap: 9px; }
.catalog-titlebar strong { color: #eef3fa; font-size: 11px; text-transform: none; letter-spacing: 0; }
.catalog-viewport {
  height: 348px;
  overflow: hidden;
  padding: 14px;
  background:
    linear-gradient(rgba(77, 185, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 94, 255, .035) 1px, transparent 1px),
    #303946;
  background-size: 32px 32px;
}
.catalog-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: catalog-scroll 16s linear infinite;
  will-change: transform;
}
.catalog-window:hover .catalog-track { animation-play-state: paused; }
.catalog-set {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  flex: 0 0 auto;
}
.catalog-card {
  min-width: 0;
  padding: 8px 8px 10px;
  overflow: hidden;
  background: #37414e;
  border: 1px solid #4e5a69;
  box-shadow: 0 8px 20px rgba(8, 12, 20, .12);
}
.catalog-card:hover { border-color: #4c9eff; }
.family-thumb {
  position: relative;
  height: 104px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 45% 42%, rgba(65, 146, 255, .19), transparent 37%),
    linear-gradient(145deg, #2d3541, #252c37);
  border: 1px solid rgba(255,255,255,.06);
}
.family-thumb::before,
.family-thumb::after,
.family-thumb span {
  content: "";
  position: absolute;
  display: block;
  border: 1px solid rgba(117, 194, 255, .82);
  box-shadow: 0 0 12px rgba(52, 112, 255, .20);
}
.family-thumb span { width: 48px; height: 48px; transform: rotate(30deg) skew(-8deg); }
.family-thumb::before { width: 60px; height: 8px; bottom: 21px; transform: skew(-28deg); }
.family-thumb::after { width: 25px; height: 52px; bottom: 27px; border-color: rgba(150, 103, 255, .82); }
.family-b .family-thumb span { width: 42px; height: 58px; border-radius: 55% 45% 58% 42%; transform: rotate(-22deg); }
.family-c .family-thumb span { width: 62px; height: 30px; transform: perspective(80px) rotateX(28deg); }
.family-d .family-thumb span { width: 50px; height: 50px; border-radius: 50%; transform: none; }
.family-e .family-thumb span { width: 70px; height: 34px; border-radius: 9px; transform: none; }
.family-f .family-thumb span { width: 38px; height: 55px; border-radius: 38% 38% 22% 22%; transform: none; }
.catalog-card strong {
  display: block;
  overflow: hidden;
  color: #eef2f7;
  font-size: 10px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.catalog-card small { display: block; margin-top: 3px; color: #8995a4; font-size: 8px; }
.catalog-status {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  background: #252c37;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #8290a0;
  font-size: 8px;
}
.catalog-status span:last-child { color: #61bfff; }
@keyframes catalog-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-50% - 6px)); }
}

.support-tools { margin-top: 18px; }
.support-tools h3 { font-size: 19px; }
.workflow-list li { grid-template-columns: 56px 1fr; }
.workflow-list p { max-width: 620px; line-height: 1.65; }

@media (max-width: 1120px) {
  .hero-facts { gap: 15px; font-size: 9px; }
  .catalog-showcase { grid-template-columns: 1fr; }
  .catalog-copy { max-width: 720px; }
}

@media (max-width: 880px) {
  .brand-copy small { display: none; }
  .catalog-showcase { gap: 32px; padding: 34px; }
}

@media (max-width: 700px) {
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .brand-copy strong { font-size: 15px; }
  .hero-facts { display: grid; grid-template-columns: 1fr; gap: 9px; white-space: normal; }
  #recursos { padding-top: 82px; }
  .catalog-showcase { margin-inline: -2px; padding: 28px 20px; }
  .catalog-copy h3 { font-size: 30px; }
  .catalog-titlebar > span { display: none; }
  .catalog-viewport { height: 330px; padding: 10px; }
  .catalog-set { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .family-thumb { height: 94px; }
  .catalog-track { animation-duration: 20s; }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-track { animation: none; }
}

/* ==========================================================
   STUDIOBOARD — LOGO OFICIAL + GIF + RESPONSIVIDADE MOBILE (v4)
   Corrige a primeira dobra em telas pequenas sem alterar regras.
   ========================================================== */
.hero-demo {
  position: relative;
  width: min(100%, 520px);
  margin: 0;
  justify-self: end;
  overflow: hidden;
  background: #171d28;
  border: 1px solid #56657a;
  box-shadow: 0 30px 72px rgba(5, 9, 17, .42), 0 0 42px rgba(73, 70, 255, .10);
}
.hero-demo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 2px;
  background: var(--brand-gradient);
}
.hero-demo-topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 15px;
  background: #232b37;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #b8c2cf;
  font-size: 10px;
}
.hero-demo-label {
  color: #8fbfff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
}
.hero-demo-media {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 12px;
  background:
    radial-gradient(circle at 50% 32%, rgba(50, 73, 255, .11), transparent 42%),
    #050711;
}
.hero-demo-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 615px;
  object-fit: contain;
  background: #050711;
}
.hero-demo figcaption {
  min-height: 37px;
  display: flex;
  align-items: center;
  padding: 8px 14px;
  background: #232b37;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #8f9aa9;
  font-size: 9px;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .hero-demo {
    width: min(100%, 560px);
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .site-header { min-height: 64px; }
  .header-inner { min-height: 64px; }
  .site-nav { top: 64px; }
  .brand { gap: 8px; }
  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 50%;
  }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { display: none; }
  .menu-toggle { width: 40px; height: 40px; }

  .hero {
    min-height: 0;
    padding: 92px 0 52px;
  }
  .hero::before {
    width: 340px;
    height: 340px;
    right: -230px;
    top: 58px;
  }
  .hero::after {
    width: 300px;
    height: 300px;
    left: -205px;
    bottom: -120px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-copy { min-width: 0; }
  .eyebrow {
    max-width: 100%;
    gap: 8px;
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: .09em;
  }
  .hero-copy h1 {
    max-width: 390px;
    margin: 12px 0 16px;
    font-size: clamp(34px, 9.6vw, 42px);
    line-height: 1.04;
    letter-spacing: -.047em;
  }
  .hero-copy h1::after {
    width: 58px;
    height: 2px;
    margin-top: 18px;
  }
  .hero-lead {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.65;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 23px;
  }
  .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding-inline: 10px;
    font-size: 10px;
    text-align: center;
  }
  .hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    font-size: 8px;
    white-space: normal;
  }
  .hero-facts li {
    min-height: 28px;
    padding: 6px 9px;
    background: rgba(22, 29, 42, .32);
    border: 1px solid rgba(104, 131, 180, .22);
  }

  .hero-demo {
    width: min(100%, 375px);
    justify-self: center;
    border-color: #4e5e75;
    box-shadow: 0 22px 52px rgba(5, 9, 17, .38), 0 0 30px rgba(73, 70, 255, .09);
  }
  .hero-demo-topbar {
    min-height: 40px;
    padding: 0 11px;
  }
  .hero-demo-label { display: none; }
  .hero-demo-media { padding: 7px; }
  .hero-demo-media img {
    width: 100%;
    max-height: none;
  }
  .hero-demo figcaption {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 8px;
  }

  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: clamp(29px, 8.6vw, 35px); }
  .feature-card {
    min-height: 0;
    padding: 25px 22px;
  }
  .feature-icon { margin-bottom: 24px; }
  .module-copy { padding: 30px 21px; }
  .module-copy h3 { font-size: 28px; }
  .catalog-showcase {
    margin-inline: 0;
    padding: 25px 16px;
  }
  .catalog-copy h3 { font-size: 28px; }
  .catalog-viewport { height: 285px; }
  .family-thumb { height: 82px; }
}

@media (max-width: 420px) {
  .shell { width: min(calc(100% - 22px), var(--shell)); }
  .brand-copy { display: none; }
  .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
  .hero { padding-top: 86px; }
  .hero-copy h1 { font-size: 35px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .button { min-height: 43px; }
  .hero-facts li { padding-inline: 8px; }
  .hero-demo { width: 100%; }
  .catalog-set { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================
   STUDIOBOARD — RESTAURAÇÃO DA DISPOSIÇÃO DA PRIMEIRA DOBRA (v5)
   Mantém textos, logo e GIF atuais; altera somente proporções e posição.
   ========================================================== */
@media (min-width: 881px) {
  .hero {
    min-height: 790px;
    padding: 146px 0 92px;
  }

  .hero-layout {
    grid-template-columns: minmax(340px, .95fr) minmax(0, 1.35fr);
    gap: clamp(38px, 4vw, 62px);
    align-items: center;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy h1 {
    max-width: 650px;
  }

  .hero-lead {
    max-width: 620px;
  }

  .hero-demo {
    width: 100%;
    max-width: none;
    min-width: 0;
    justify-self: stretch;
  }

  .hero-demo-media {
    height: clamp(390px, 33vw, 465px);
  }

  .hero-demo-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }
}


/* ==========================================================
   STUDIOBOARD — LOGO CIRCULAR + VÍDEO REAL (v7)
   Altera somente a apresentação da marca e da demonstração.
   ========================================================== */
.brand-mark,
.mini-mark {
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(40, 83, 255, .16);
}
.brand-mark img,
.mini-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.hero-demo-media video,
.hero-demo-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 615px;
  object-fit: contain;
  background: #050711;
}
@media (min-width: 881px) {
  .hero-demo-media video,
  .hero-demo-video {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }
}
@media (max-width: 880px) {
  .hero-demo-media video,
  .hero-demo-video {
    width: 100%;
    height: auto;
    max-height: none;
  }
}


/* ==========================================================
   STUDIOBOARD — JANELA DO REVIT SEM MOLDURA + SOMBRA LEVE (v8)
   Mantém o vídeo, remove barras, fundo e contornos externos.
   ========================================================== */
.hero-demo {
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.hero-demo::before,
.hero-demo-topbar,
.hero-demo figcaption {
  display: none;
}
.hero-demo-media {
  display: block;
  padding: 0;
  min-height: 0;
  background: transparent;
}
.hero-demo-media video,
.hero-demo-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 2px;
  box-shadow:
    0 24px 58px rgba(3, 7, 16, .34),
    0 8px 22px rgba(3, 7, 16, .24),
    0 0 28px rgba(61, 78, 255, .08);
}
@media (max-width: 880px) {
  .hero-demo-media video,
  .hero-demo-video {
    box-shadow:
      0 16px 38px rgba(3, 7, 16, .30),
      0 5px 16px rgba(3, 7, 16, .20);
  }
}

/* ==========================================================
   STUDIOBOARD — SOMENTE A JANELA DO REVIT (v9)
   Remove o espaço excedente do contêiner sem alterar o vídeo.
   ========================================================== */
.hero-demo-media {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent !important;
}
.hero-demo-media video,
.hero-demo-video {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  aspect-ratio: 16 / 9;
  object-fit: cover !important;
  object-position: center center;
  background: transparent !important;
}


/* ==========================================================
   STUDIOBOARD — SOMENTE A JANELA REAL DO REVIT (v10)
   O vídeo é o único elemento visual da demonstração.
   ========================================================== */
.hero-demo {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  justify-self: stretch;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.hero-demo::before,
.hero-demo-topbar,
.hero-demo-label,
.hero-demo-media,
.hero-demo figcaption {
  display: none !important;
}
.hero-demo > .hero-demo-video {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: 0;
  border-radius: 2px;
  box-shadow:
    0 24px 58px rgba(3, 7, 16, .32),
    0 7px 20px rgba(3, 7, 16, .20),
    0 0 24px rgba(61, 78, 255, .07);
}
@media (max-width: 880px) {
  .hero-demo > .hero-demo-video {
    box-shadow:
      0 16px 36px rgba(3, 7, 16, .28),
      0 5px 14px rgba(3, 7, 16, .18);
  }
}


/* ==========================================================
   STUDIOBOARD — SUPORTE POR E-MAIL E WHATSAPP
   Bloco comercial discreto, sem alterar fluxos do sistema.
   ========================================================== */
.customer-support-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(73, 130, 255, .08), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(105, 70, 255, .07), transparent 32%),
    #303844;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.customer-support-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 72px;
  align-items: center;
}
.customer-support-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.customer-support-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  overflow: hidden;
  background: rgba(53, 61, 73, .92);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.customer-support-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  opacity: .78;
  background: var(--brand-gradient);
}
.customer-support-label {
  color: #7f8cff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}
.customer-support-card h3 {
  margin: 17px 0 11px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.customer-support-card p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.customer-support-card .button {
  width: 100%;
  margin-top: auto;
}
.customer-support-card small {
  width: 100%;
  margin-top: 12px;
  color: #8f9aa8;
  text-align: center;
  font-size: 9px;
}
.footer-support a { white-space: nowrap; }

@media (max-width: 980px) {
  .customer-support-layout { grid-template-columns: 1fr; gap: 38px; }
}
@media (max-width: 700px) {
  .customer-support-channels { grid-template-columns: 1fr; }
  .customer-support-card { min-height: 285px; padding: 26px 22px; }
  .customer-support-card h3 { font-size: 20px; }
  .footer-support a { white-space: normal; }
}

/* ==========================================================
   STUDIOBOARD — AJUSTE DOS CARDS DE PLANOS + LOGO DO TOPO (v9)
   Evita sobreposição do último benefício com o botão e aplica
   a nova marca em recorte circular apenas no cabeçalho.
   ========================================================== */
@media (min-width: 881px) {
  .plans-grid .plan-card {
    min-height: 590px;
    padding-bottom: 86px;
  }
}

.site-header .brand-mark {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  border-radius: 50%;
  background: #02040b;
  box-shadow: 0 0 20px rgba(45, 100, 255, .22);
}
.site-header .brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
