/*
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  2. Remove default margins and padding
  3. Reset all borders.
*/

*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 2 */
  border: 0 solid; /* 3 */
}

/*
  1. Use a consistent sensible line-height in all browsers.
  2. Prevent adjustments of font size after orientation changes in iOS.
  3. Use a more readable tab size.
  4. Use the user's configured `sans` font-family by default.
  5. Use the user's configured `sans` font-feature-settings by default.
  6. Use the user's configured `sans` font-variation-settings by default.
  7. Disable tap highlights on iOS.
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  tab-size: 4; /* 3 */
  font-family: --theme(
    --default-font-family,
    ui-sans-serif,
    system-ui,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol',
    'Noto Color Emoji'
  ); /* 4 */
  font-feature-settings: --theme(--default-font-feature-settings, normal); /* 5 */
  font-variation-settings: --theme(--default-font-variation-settings, normal); /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
  1. Add the correct height in Firefox.
  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  3. Reset the default border style to a 1px solid border.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
  Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
  Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
  Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

/*
  Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
  1. Use the user's configured `mono` font-family by default.
  2. Use the user's configured `mono` font-feature-settings by default.
  3. Use the user's configured `mono` font-variation-settings by default.
  4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: --theme(
    --default-mono-font-family,
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    'Liberation Mono',
    'Courier New',
    monospace
  ); /* 1 */
  font-feature-settings: --theme(--default-mono-font-feature-settings, normal); /* 2 */
  font-variation-settings: --theme(--default-mono-font-variation-settings, normal); /* 3 */
  font-size: 1em; /* 4 */
}

/*
  Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
  Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
  3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
  Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
  Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
  Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
  Make lists unstyled by default.
*/

ol,
ul,
menu {
  list-style: none;
}

/*
  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
      This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
  1. Inherit font styles in all browsers.
  2. Remove border radius in all browsers.
  3. Remove background color in all browsers.
  4. Ensure consistent opacity for disabled states in all browsers.
*/

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  border-radius: 0; /* 2 */
  background-color: transparent; /* 3 */
  opacity: 1; /* 4 */
}

/*
  Restore default font weight.
*/

:where(select:is([multiple], [size])) optgroup {
  font-weight: bolder;
}

/*
  Restore indentation.
*/

:where(select:is([multiple], [size])) optgroup option {
  padding-inline-start: 20px;
}

/*
  Restore space after button.
*/

::file-selector-button {
  margin-inline-end: 4px;
}

/*
  Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
*/

::placeholder {
  opacity: 1;
}

/*
  Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
  crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
*/

@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
  (contain-intrinsic-size: 1px) /* Safari 17+ */ {
  ::placeholder {
    color: color-mix(in oklab, currentcolor 50%, transparent);
  }
}

/*
  Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
  Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
  1. Ensure date/time inputs have the same height when empty in iOS Safari.
  2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
*/

::-webkit-date-and-time-value {
  min-height: 1lh; /* 1 */
  text-align: inherit; /* 2 */
}

/*
  Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
*/

::-webkit-datetime-edit {
  display: inline-flex;
}

/*
  Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
*/

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

/*
  Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
*/

::-webkit-calendar-picker-indicator {
  line-height: 1;
}

/*
  Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
  Correct the inability to style the border radius in iOS Safari.
*/

button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
  appearance: button;
}

/*
  Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
  Make elements with the HTML hidden attribute stay hidden by default.
*/

[hidden]:where(:not([hidden='until-found'])) {
  display: none !important;
}


:root{--ink:#071d16;--green:#20e57a;--lime:#b8ff53;--cream:#f5f2ea;--muted:#617069}*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:#fff;color:var(--ink);font-family:Arial,Helvetica,sans-serif}a{color:inherit;text-decoration:none}.shell{width:min(1180px,calc(100% - 48px));margin-inline:auto}.nav{height:92px;display:flex;align-items:center;justify-content:space-between;gap:30px}.brand{display:flex;align-items:center;gap:12px;font-weight:800;font-size:20px;letter-spacing:-.5px}.brand-mark{width:39px;height:39px;display:grid;place-items:center;position:relative;border:2px solid var(--green);border-radius:50%;box-shadow:0 0 18px #20e57a55 inset;background:#09271d}.brand-mark:before{content:"";width:19px;height:19px;border:1px solid var(--green);border-radius:50%}.brand-mark:after{content:"";width:4px;height:4px;border-radius:50%;background:var(--lime);position:absolute;right:8px;top:8px}.brand-mark i{position:absolute;width:0;height:0;border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:14px solid var(--green);transform:rotate(-12deg)}.brand-mark.large{width:70px;height:70px;border-width:3px}.brand-mark.large:before{width:37px;height:37px}.brand-mark.large:after{width:7px;height:7px;right:13px;top:12px}.brand-mark.large i{border-top-width:10px;border-bottom-width:10px;border-left-width:23px}.nav-links{display:flex;gap:34px;color:#33463f;font-size:14px}.nav-links a:hover{color:#00a855}.button{display:inline-flex;align-items:center;justify-content:center;gap:18px;min-height:56px;padding:0 26px;border-radius:999px;font-weight:750;transition:transform .2s,box-shadow .2s}.button:hover{transform:translateY(-2px)}.button-dark{background:var(--ink);color:white}.button-green{background:var(--green);color:#04150f;box-shadow:0 12px 30px #20e57a33}.button-small{min-height:45px;padding-inline:21px;font-size:14px}.hero{min-height:720px;display:grid;grid-template-columns:1.02fr .98fr;align-items:center;gap:38px;padding-block:55px 90px}.eyebrow{display:inline-flex;align-items:center;gap:9px;font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.eyebrow i,.status-dot{width:9px;height:9px;background:var(--green);border-radius:50%;box-shadow:0 0 0 6px #20e57a22}.hero h1{font-size:clamp(58px,6.1vw,88px);line-height:.96;letter-spacing:-.065em;margin:30px 0 25px}h1 em,.final-cta em{color:#00ad56;font-style:normal}.hero-copy>p{max-width:560px;font-size:20px;line-height:1.55;color:var(--muted)}.hero-actions{display:flex;align-items:center;gap:28px;margin-top:34px}.text-link{font-weight:750;border-bottom:1px solid #9aa59f;padding-bottom:4px}.platforms{display:flex;align-items:center;gap:18px;margin-top:45px;font-size:13px;color:#6f7c76}.platforms b{color:#21362e}.hero-visual{height:580px;position:relative;border-radius:38px;overflow:hidden;background:radial-gradient(circle at 52% 50%,#164a35 0 4%,#092d21 34%,#061b15 69%)}.hero-visual:before{content:"";position:absolute;inset:0;background-image:linear-gradient(#ffffff09 1px,transparent 1px),linear-gradient(90deg,#ffffff09 1px,transparent 1px);background-size:48px 48px;mask-image:radial-gradient(circle,black,transparent 77%)}.orbit{position:absolute;left:50%;top:50%;border:1px solid #3affa149;border-radius:50%;transform:translate(-50%,-50%)}.orbit-one{width:300px;height:300px}.orbit-two{width:450px;height:450px}.pulse-core{position:absolute;inset:0;display:grid;place-items:center;filter:drop-shadow(0 0 26px #20e57a88)}.message-card{position:absolute;display:flex;align-items:center;gap:13px;background:#fff;border-radius:18px;padding:15px 17px;box-shadow:0 18px 50px #00120d55}.message-card b,.message-card small{display:block}.message-card b{font-size:14px}.message-card small{margin-top:5px;color:#6f7c76;font-size:11px}.message-card time{color:#89958f;font-size:9px;margin-left:12px}.mini-icon{display:grid;place-items:center;width:36px;height:36px;background:#eafff2;border-radius:11px}.message-one{top:70px;right:27px}.message-two{left:30px;bottom:82px}.keyword-chip{position:absolute;background:#1f4c3b;border:1px solid #39ff9a44;color:#b9ffd8;border-radius:999px;padding:10px 16px;font-size:11px}.chip-one{top:155px;left:30px}.chip-two{right:34px;bottom:120px}.promise{background:var(--cream);padding:120px 0;border-radius:44px}.section-kicker{color:#00a955;font-weight:850;font-size:12px;letter-spacing:.12em}.promise h2,.section-heading h2,.final-cta h2{font-size:clamp(40px,5vw,68px);line-height:1.03;letter-spacing:-.055em;margin:22px 0 65px}.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:60px}.steps strong{display:block;padding-bottom:20px;border-bottom:1px solid #bfc7c2;color:#00a955}.steps h3{font-size:26px;margin:24px 0 12px}.steps p,.feature-grid p,.section-heading>p,.plan-grid p{color:var(--muted);line-height:1.6}.features,.plans .shell{padding-block:130px}.section-heading{display:grid;grid-template-columns:1.3fr .7fr;align-items:end;gap:70px}.section-heading h2{margin-bottom:0}.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:70px}.feature-grid article{padding:38px;min-height:300px;border:1px solid #dce3df;border-radius:28px}.feature-grid article>span{width:52px;height:52px;display:grid;place-items:center;border-radius:15px;background:#eafff2;font-size:23px}.feature-grid h3{font-size:25px;margin:52px 0 12px}.plans{background:#08241b;color:#fff}.plans .section-kicker{color:var(--lime)}.plans-heading>p{color:#a7b9b1}.plan-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px;margin-top:70px;align-items:stretch}.plan-grid article{position:relative;display:flex;flex-direction:column;min-height:330px;border:1px solid #315145;border-radius:24px;padding:32px;background:#0d2c22}.plan-grid article.featured{background:var(--green);color:var(--ink);transform:translateY(-12px);border-color:var(--green)}.popular{position:absolute;top:18px;right:18px;background:#071d16;color:#fff;border-radius:99px;padding:7px 10px;font-size:9px;font-weight:800;letter-spacing:.08em}.plan-grid h3{font-size:18px;margin:0 0 35px}.plan-grid strong{font-size:35px;letter-spacing:-.04em}.plan-grid p{font-size:13px;color:#a9bbb4}.plan-grid .featured p{color:#275740}.plan-grid a{margin-top:auto;display:flex;justify-content:space-between;border-top:1px solid currentColor;padding-top:20px;font-weight:800}.final-cta{text-align:center;padding-block:145px;display:flex;flex-direction:column;align-items:center}.final-cta h2{margin:32px 0 20px}.final-cta p{color:var(--muted);font-size:19px;margin:0 0 33px}.footer{border-top:1px solid #dce3df;min-height:120px;display:flex;align-items:center;justify-content:space-between;color:#77837d;font-size:12px}.footer .brand{color:var(--ink)}
@media(max-width:900px){.nav-links{display:none}.hero{grid-template-columns:1fr}.hero-visual{height:500px}.steps,.feature-grid{grid-template-columns:1fr}.section-heading{grid-template-columns:1fr}.plan-grid{grid-template-columns:1fr 1fr}.plan-grid article.featured{transform:none}.footer{flex-wrap:wrap;gap:20px;padding-block:30px}}
@media(max-width:560px){.shell{width:min(100% - 30px,1180px)}.nav{height:74px}.nav .button{display:none}.hero{padding-top:35px}.hero h1{font-size:52px}.hero-copy>p{font-size:17px}.hero-actions{align-items:flex-start;flex-direction:column}.platforms{flex-wrap:wrap}.hero-visual{height:430px}.message-one{top:35px;right:13px;left:13px}.message-two{left:14px;bottom:52px}.chip-one{top:145px;left:15px}.chip-two{right:16px;bottom:140px}.promise{border-radius:28px;padding:85px 0}.features,.plans .shell{padding-block:90px}.plan-grid{grid-template-columns:1fr}.final-cta{padding-block:95px}.footer{flex-direction:column;align-items:flex-start}}

/* Conceito recomendado: identidade própria Radar Pulse */
.rp-dark{background:#031b31;color:#eef8ff;min-height:100vh}.dark-nav{height:94px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #ffffff16}.brand-light{color:#fff}.dark-nav>div{display:flex;gap:32px;color:#aac0d0;font-size:14px}.neon-outline{border:1px solid #6cff4d;border-radius:99px;padding:13px 20px;color:#8cff72;font-weight:800;font-size:13px}.dark-hero{display:grid;grid-template-columns:.9fr 1.1fr;gap:46px;align-items:center;min-height:720px;padding-block:70px}.live-pill{display:inline-flex;align-items:center;gap:9px;color:#8cff72;font-weight:900;font-size:11px;letter-spacing:.14em}.live-pill i{width:8px;height:8px;background:#6cff4d;border-radius:50%;box-shadow:0 0 16px #6cff4d}.dark-copy h1{font-size:clamp(62px,6.4vw,94px);line-height:.92;letter-spacing:-.07em;margin:30px 0}.dark-copy h1 em,.dark-final em{font-style:normal;color:#72ff50;text-shadow:0 0 35px #4dff3538}.dark-copy>p{color:#a8bfce;font-size:20px;line-height:1.55;max-width:540px}.dark-actions{display:flex;align-items:center;gap:24px;margin-top:35px}.dark-actions>span{color:#7691a3;font-size:12px}.neon-button{display:inline-flex;align-items:center;justify-content:center;gap:24px;background:#6cff4d;color:#042015;border-radius:12px;min-height:58px;padding:0 26px;font-weight:900;box-shadow:0 0 35px #60ff4540}.product-stage{height:560px;position:relative;border:1px solid #1c5477;border-radius:32px;background:radial-gradient(circle at 50% 44%,#0d6b65 0,#063b4e 29%,#052640 68%);overflow:hidden}.product-stage:before{content:"";position:absolute;inset:0;background-image:linear-gradient(#70cfff0a 1px,transparent 1px),linear-gradient(90deg,#70cfff0a 1px,transparent 1px);background-size:34px 34px}.radar-halo{position:absolute;left:50%;top:42%;width:310px;height:310px;transform:translate(-50%,-50%);border:1px solid #6cff4d55;border-radius:50%;display:grid;place-items:center;box-shadow:0 0 0 65px #6cff4d0a,0 0 0 130px #6cff4d08}.brand-mark.huge{width:94px;height:94px;border-width:4px;filter:drop-shadow(0 0 22px #6cff4d)}.brand-mark.huge:before{width:49px;height:49px}.brand-mark.huge:after{width:10px;height:10px;right:16px;top:15px}.brand-mark.huge i{border-top-width:13px;border-bottom-width:13px;border-left-width:30px}.dash-card{position:absolute;left:44px;right:44px;bottom:34px;background:#071f36e8;border:1px solid #ffffff1f;border-radius:19px;padding:19px;box-shadow:0 25px 70px #0008;backdrop-filter:blur(12px)}.dash-top{display:flex;justify-content:space-between;font-size:12px}.dash-top span{color:#76ff5a}.dash-top i{display:inline-block;width:6px;height:6px;background:#6cff4d;border-radius:50%;margin-right:5px}.dash-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:16px 0}.dash-stats div{background:#ffffff0b;border-radius:10px;padding:10px}.dash-stats small,.dash-stats strong{display:block}.dash-stats small{color:#7894a7;font-size:9px}.dash-stats strong{font-size:20px;margin-top:4px}.alert-row{position:relative;background:#0f3b46;border-left:3px solid #6cff4d;padding:10px 12px;border-radius:8px;margin-top:7px}.alert-row b,.alert-row small{display:block;font-size:10px}.alert-row small{color:#85a8b5;margin-top:4px}.alert-row span{position:absolute;right:10px;top:10px;color:#6cff4d;font-size:8px}.alert-row.dim{opacity:.55}.native-toast{position:absolute;right:15px;top:22px;display:flex;gap:10px;background:#f7fbff;color:#102438;border-radius:15px;padding:12px 15px;box-shadow:0 16px 35px #00131f88}.native-toast b,.native-toast small{display:block}.native-toast b{font-size:11px}.native-toast small{font-size:8px;color:#71818d;margin-top:3px}.trust-strip{border-block:1px solid #14445f;background:#05233c}.trust-strip .shell{height:72px;display:flex;justify-content:space-between;align-items:center;color:#8eabba;font-size:10px;font-weight:850;letter-spacing:.12em}.trust-strip .shell span:nth-child(even){color:#6cff4d}.dark-story{padding-block:140px}.acid-label{color:#73ff52;font-size:11px;font-weight:900;letter-spacing:.16em}.dark-story h2,.dark-pricing h2,.dark-final h2{font-size:clamp(46px,6vw,78px);line-height:1.02;letter-spacing:-.055em;max-width:950px;margin:25px 0 70px}.story-layout{display:grid;grid-template-columns:.75fr 1.25fr;gap:100px;align-items:center}.story-layout>p{font-size:20px;line-height:1.7;color:#9cb6c7}.signal{display:grid;grid-template-columns:1fr auto;align-items:center;gap:12px;background:#062a46;border:1px solid #165071;border-radius:24px;padding:30px}.signal span{color:#789aae;font-size:11px;text-transform:uppercase;letter-spacing:.12em}.signal b{font-size:25px;text-align:right}.signal i{grid-column:1/-1;text-align:center;color:#62ff44}.signal .glow{color:#70ff51;text-shadow:0 0 22px #6cff4d88}.benefit-zone{background:#eff5f2;color:#072136;padding:130px 0}.benefit-list{margin-top:55px;border-top:1px solid #b7c9c4}.benefit-list article{display:grid;grid-template-columns:90px 1fr 1fr;gap:50px;padding:38px 0;border-bottom:1px solid #b7c9c4;align-items:start}.benefit-list strong{color:#13a756}.benefit-list h3{font-size:27px;margin:0}.benefit-list p{margin:0;color:#5d746f;line-height:1.6}.dark-pricing{display:grid;grid-template-columns:1fr .75fr;gap:90px;align-items:center;padding-block:140px}.price-focus{background:#0a2e4b;border:1px solid #206086;border-radius:28px;padding:38px}.price-focus>span{display:inline-block;background:#6cff4d;color:#062019;border-radius:99px;padding:7px 10px;font-size:9px;font-weight:900}.price-focus small,.price-focus strong{display:block}.price-focus small{margin-top:30px;color:#9bb5c6}.price-focus strong{font-size:52px;margin:8px 0 25px}.price-focus ul{list-style:none;padding:0;margin:0 0 28px;color:#bbcfda;line-height:2}.price-focus .neon-button{width:100%}.price-focus>p{text-align:center;color:#6f91a5;font-size:10px}.dark-final{text-align:center;padding:140px 0;background:radial-gradient(circle at 50% 50%,#0c5b4e,#041e35 57%)}.dark-final .shell{display:flex;flex-direction:column;align-items:center}.dark-final h2{margin:34px auto}.dark-footer{height:120px;display:flex;align-items:center;justify-content:space-between;color:#7894a7;font-size:11px}
@media(max-width:900px){.dark-nav>div{display:none}.dark-hero,.dark-pricing{grid-template-columns:1fr}.story-layout{grid-template-columns:1fr;gap:35px}.benefit-list article{grid-template-columns:60px 1fr}.benefit-list p{grid-column:2}.trust-strip .shell span:nth-child(n+5){display:none}}
@media(max-width:560px){.dark-nav{height:74px}.dark-nav>.neon-outline{display:none}.dark-hero{padding-block:50px}.dark-copy h1{font-size:54px}.dark-copy>p{font-size:17px}.dark-actions{align-items:flex-start;flex-direction:column}.product-stage{height:500px}.dash-card{left:12px;right:12px;bottom:16px}.native-toast{left:12px;right:12px}.trust-strip .shell{gap:14px}.trust-strip .shell span:nth-child(n+4){display:none}.dark-story,.dark-pricing{padding-block:90px}.benefit-zone{padding:90px 0}.benefit-list article{grid-template-columns:35px 1fr;gap:18px}.dark-footer{height:auto;padding-block:34px;align-items:flex-start;gap:22px;flex-direction:column}}

/* Ajustes da versão escolhida */
.pulse-logo{width:39px;height:39px;display:block;animation:radar-spin 5s linear infinite;filter:drop-shadow(0 0 7px #20e57a55)}.pulse-logo-large{width:78px;height:78px}.pulse-core .pulse-logo-large{width:96px;height:96px;filter:drop-shadow(0 0 24px #20e57aaa)}@keyframes radar-spin{to{transform:rotate(360deg)}}
.eyebrow{font-size:16px;letter-spacing:.075em}.eyebrow i{width:13px;height:13px;animation:pulse-blink 1.25s ease-in-out infinite}@keyframes pulse-blink{0%,100%{opacity:1;box-shadow:0 0 0 6px #20e57a22,0 0 18px #20e57a88}50%{opacity:.35;box-shadow:0 0 0 13px #20e57a08,0 0 3px #20e57a22}}
.platforms{font-size:17px;gap:24px}.platforms b{display:inline-flex;align-items:center;gap:8px;font-size:18px}.platforms img{width:22px;height:22px}
.section-kicker-large{font-size:16px;letter-spacing:.13em;display:flex;align-items:center;gap:12px}.section-kicker-large .pulse-logo{width:29px;height:29px}.promise{padding:78px 0;border-radius:34px}.promise h2{font-size:clamp(46px,5.4vw,74px);margin:18px 0 46px}.steps{gap:42px}.steps strong{font-size:18px;font-weight:950;display:flex;align-items:center;gap:10px}.steps strong i{width:11px;height:11px;background:#20e57a;border-radius:50%;box-shadow:0 0 0 5px #20e57a20;animation:pulse-blink 1.25s ease-in-out infinite}.steps h3{font-weight:850}.steps p{font-weight:600;color:#52665d}
.features{padding-block:86px}.features .section-heading h2{font-size:clamp(48px,5.5vw,76px)}.features .section-heading>p{font-size:17px;font-weight:650}.product-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:52px}.product-gallery>article{border:1px solid #d4dfda;border-radius:25px;padding:18px 18px 28px;background:#fff}.product-gallery h3{font-size:23px;font-weight:900;margin:25px 14px 10px}.product-gallery>article>p{font-size:15px;font-weight:600;color:#586b62;line-height:1.55;margin:0 14px}.mini-dashboard,.phone-scene,.notification-scene{height:230px;border-radius:18px;overflow:hidden;position:relative}.mini-dashboard{padding:16px;background:linear-gradient(145deg,#062845,#074563);color:#fff}.mini-dashboard header{display:flex;align-items:center;gap:9px;font-size:12px}.mini-dashboard header .pulse-logo{width:27px;height:27px}.mini-dashboard header span{margin-left:auto;color:#77ff61;font-size:8px}.mini-dashboard header span i{display:inline-block;width:6px;height:6px;border-radius:50%;background:#77ff61}.mini-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin-top:18px}.mini-stats b{background:#ffffff12;border:1px solid #ffffff13;border-radius:9px;padding:11px;font-size:22px}.mini-stats small{display:block;color:#9fc0d0;font-size:8px;margin-top:4px}.flow-line{height:65px;position:relative;margin-top:15px;border-block:1px solid #ffffff13}.flow-line:before{content:"";position:absolute;left:5px;right:5px;top:31px;height:2px;background:#79ff63;box-shadow:0 0 13px #79ff63}.flow-line i{position:absolute;top:25px;width:13px;height:13px;border-radius:50%;background:#79ff63;box-shadow:0 0 0 5px #79ff6320}.flow-line i:nth-child(1){left:15%}.flow-line i:nth-child(2){left:48%}.flow-line i:nth-child(3){left:78%}.phone-scene{background:linear-gradient(145deg,#e6f7ff,#d6ffea);display:grid;place-items:center}.phone{width:130px;height:205px;background:#fff;border:5px solid #0a1e2a;border-radius:22px;padding:16px 9px 8px;box-shadow:0 13px 30px #113f5033;position:relative}.phone-top{position:absolute;top:5px;left:45px;width:34px;height:6px;border-radius:8px;background:#0a1e2a}.phone>span{font-size:9px;font-weight:900;color:#2388ca}.bot-message{background:#dff5ff;border-radius:9px 9px 2px 9px;padding:8px;margin-top:12px}.bot-message b,.bot-message small{display:block;font-size:7px;line-height:1.45}.bot-message small{margin-top:5px;color:#42606d}.phone-alert{position:absolute;right:9px;top:18px;background:#fff;border-radius:10px;padding:9px;font-size:8px;box-shadow:0 10px 25px #163a4d30}.notification-scene{background:linear-gradient(145deg,#e9f0f5,#f8fbfd);padding:26px 16px}.native-card{display:flex;align-items:center;gap:10px;background:#fff;border-radius:14px;padding:13px;box-shadow:0 13px 30px #20374320}.native-card .pulse-logo{width:32px;height:32px}.native-card b,.native-card small{display:block;font-size:8px}.native-card small{color:#677983;margin-top:5px}.native-card time{margin-left:auto;font-size:7px;color:#8c989e}.privacy-badge{background:#e5fff0;color:#17643a;border:1px solid #b7efd0;border-radius:10px;padding:12px;margin-top:18px;text-align:center;font-size:10px;font-weight:850}
.plans .shell{padding-block:88px}.plans .section-heading h2{font-size:clamp(48px,5.5vw,76px)}.plans-heading>p{font-size:17px;font-weight:650}.plan-grid{margin-top:50px}.plan-grid article{min-height:285px;padding:27px}.plan-grid .monthly{display:block;color:#8dafa0;font-size:11px;font-weight:800;margin-top:7px}.plan-grid .featured .monthly{color:#165d38}.final-cta{padding-block:88px}.final-cta h2{font-size:clamp(48px,5.5vw,76px);margin:24px 0 16px}.footer{min-height:105px;font-weight:650;gap:20px}.footer>span{text-align:right}
@media(max-width:900px){.product-gallery{grid-template-columns:1fr}.product-gallery>article{max-width:600px;width:100%;margin-inline:auto}}
@media(max-width:560px){.eyebrow{font-size:12px}.platforms{font-size:14px}.platforms b{font-size:15px}.section-kicker-large{font-size:12px}.promise{padding:62px 0}.features,.plans .shell{padding-block:65px}.product-gallery{margin-top:38px}.footer>span{text-align:left}}

/* Marca refinada e seção de desejos */
.radar-brand-icon{position:relative;display:inline-grid;place-items:center;width:42px;height:42px;flex:0 0 auto;border-radius:50%;overflow:hidden;background:#071a31;box-shadow:0 0 0 1px #2fa8e055,0 8px 22px #001b2c2b}.radar-brand-icon-large{width:84px;height:84px;box-shadow:0 0 0 1px #2fa8e077,0 16px 38px #001b2c44}.radar-brand-icon .pulse-logo{width:100%;height:100%;object-fit:cover;display:block;animation:none;filter:none}.radar-brand-icon>i{position:absolute;inset:10%;border-radius:50%;background:conic-gradient(from 0deg,transparent 0 80%,#83ff353b 92%,transparent 100%);animation:radar-sweep 3.2s linear infinite;mix-blend-mode:screen}@keyframes radar-sweep{to{transform:rotate(360deg)}}.pulse-core .radar-brand-icon-large{width:110px;height:110px;filter:drop-shadow(0 0 22px #7aef33aa)}.section-kicker-large .radar-brand-icon{width:31px;height:31px}.mini-dashboard header .radar-brand-icon,.native-card .radar-brand-icon{width:31px;height:31px}
.desire-section{padding-block:105px}.desire-intro{display:grid;grid-template-columns:1.1fr .9fr;gap:28px 75px;align-items:end}.desire-intro .section-kicker{grid-column:1/-1}.desire-intro h2{font-size:clamp(50px,5.7vw,80px);line-height:.98;letter-spacing:-.06em;margin:0}.desire-intro>p:last-child{color:#5d7167;font-size:18px;font-weight:650;line-height:1.6;margin:0 0 8px}.desire-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:58px}.desire-grid article{display:grid;grid-template-columns:66px 1fr;gap:18px;min-height:245px;padding:30px;border:1px solid #d5e1db;border-radius:24px;background:linear-gradient(145deg,#fff,#f6fbf8);transition:transform .2s,box-shadow .2s}.desire-grid article:hover{transform:translateY(-4px);box-shadow:0 18px 40px #123d2a13}.desire-icon{width:58px;height:58px;border-radius:17px;display:grid;place-items:center;background:#e3fff0;font-size:27px}.desire-grid small{color:#00a955;font-size:10px;font-weight:900;letter-spacing:.11em}.desire-grid h3{font-size:24px;line-height:1.18;margin:14px 0 10px}.desire-grid p{color:#65766e;font-weight:600;line-height:1.55;margin:0 0 18px}.desire-grid b{color:#009f4f;font-size:15px}.always-on{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:20px;margin-top:18px;padding:24px 28px;border-radius:20px;background:#082a20;color:#fff}.always-on p{margin:0;color:#b8cfc4;line-height:1.5}.always-on strong{color:#fff}.always-on a{display:flex;align-items:center;gap:25px;background:#20e57a;color:#052217;padding:15px 20px;border-radius:99px;font-weight:900}.always-on .radar-brand-icon{width:52px;height:52px}
@media(max-width:900px){.desire-intro{grid-template-columns:1fr}.desire-intro .section-kicker{grid-column:auto}.desire-grid{grid-template-columns:1fr}.always-on{grid-template-columns:auto 1fr}.always-on a{grid-column:1/-1;justify-content:center}}
@media(max-width:560px){.desire-section{padding-block:70px}.desire-grid{margin-top:38px}.desire-grid article{grid-template-columns:1fr;min-height:0;padding:24px}.desire-grid h3{font-size:22px}.always-on{grid-template-columns:1fr;text-align:center}.always-on .radar-brand-icon{margin:auto}}

a:focus-visible{outline:3px solid #00a955;outline-offset:5px}@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation:none!important;transition:none!important}}

.windows-icon{color:#0b7cd3;font-size:28px;line-height:22px;width:22px;height:22px;display:inline-block}

/* Segundo bloco: menos espaço vertical, mesmos textos e imagens. */
.desire-section{padding-block:56px}
.desire-intro{row-gap:18px}
.desire-grid{margin-top:32px;gap:14px}
.desire-grid article{min-height:0;padding-block:22px}
.desire-grid h3{margin-block:10px 8px}
.desire-grid p{margin-bottom:12px}
.always-on{margin-top:14px;padding-block:18px}
@media(max-width:560px){
 .desire-section{padding-block:40px}
 .desire-grid{margin-top:26px}
 .desire-grid article{padding-block:20px}
}

/* Teste gratuito e opções de download. */
html{scroll-padding-top:24px}
.nav-links .trial-nav{color:#008b46;font-weight:800}
.platforms>a{display:inline-flex;align-items:center;gap:8px;font-size:18px;font-weight:700;color:#21362e;border-bottom:1px solid transparent}
.platforms>a:hover{border-bottom-color:#00a955;color:#008b46}
.trial-section{background:#f5f2ea;padding-block:72px;border-radius:34px}
.trial-intro{display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:end}
.trial-intro h2{font-size:clamp(42px,5vw,68px);line-height:1.03;letter-spacing:-.055em;margin:18px 0 0;font-weight:600}
.trial-intro h2 em{color:#00a955;font-style:normal}
.trial-intro>div>p:not(.section-kicker){font-size:17px;line-height:1.65;color:#52665d;margin:16px 0 0}
.trial-duration{display:inline-block;background:#dcf9e5;color:#086a36;padding:9px 14px;border-radius:99px;font-size:12px;font-weight:850;letter-spacing:.06em}
.trial-downloads{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:36px}
.download-card{padding:28px;border:1px solid #d5e1db;background:#fff;border-radius:24px;scroll-margin-top:30px}
.download-card:target{outline:3px solid #00a955;outline-offset:4px}
.download-heading{display:flex;align-items:center;gap:18px}
.download-heading img{width:42px;height:42px;object-fit:contain;flex-shrink:0}
.download-heading h3{font-size:24px;font-weight:750;letter-spacing:-.5px;margin:0}
.download-heading p{color:#008944;font-size:13px;margin-top:5px;font-weight:700}
.download-card>p{color:#617069;line-height:1.6;font-size:15px;margin:22px 0}
.download-button{display:flex;align-items:center;justify-content:space-between;gap:15px;width:100%;border:1px solid #c8d8ce;border-radius:99px;background:#e5eee8;color:#5b7062;padding:16px 22px;font:inherit;font-weight:750;cursor:not-allowed}
.download-card>small{display:block;font-size:12px;color:#617069;line-height:1.5;margin-top:12px}
.trial-note{font-size:14px;color:#617069;margin-top:24px;text-align:center;line-height:1.7}
.trial-note a{color:#007a3c;font-weight:700;text-decoration:underline;text-underline-offset:4px}
@media(max-width:900px){.nav-links{display:flex;gap:20px}.nav-links>a:not(.trial-nav){display:none}.trial-intro{grid-template-columns:1fr;gap:26px}}
@media(max-width:560px){.nav{gap:12px}.nav-links{gap:0;flex-shrink:0;font-size:13px}.platforms>a{font-size:15px}.trial-section{padding-block:48px;border-radius:28px}.trial-downloads{grid-template-columns:1fr}.download-card{padding:22px}.download-heading h3{font-size:22px}}

/* Recursos: fotografia natural + captura real do produto. */
.features-story{padding-block:78px}
.story-banner{position:relative;isolation:isolate;min-height:640px;border-radius:32px;background:#dcebdd;overflow:hidden}
.story-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;z-index:-2}
.story-banner:before{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,#dcebdd 0%,#dcebddeb 27%,#dcebdd70 46%,transparent 64%)}
.story-copy{position:relative;width:49%;padding:55px 0 60px 44px;z-index:2}
.story-copy .section-kicker{font-size:11px;letter-spacing:.13em;color:#08773d;margin:0 0 24px}
.story-copy h2{font-size:clamp(46px,5.2vw,70px);font-weight:600;line-height:1.02;letter-spacing:-.055em;margin:0 0 24px}
.story-copy h2 em{color:#008b46;font-style:normal}
.story-copy>p:not(.section-kicker){font-size:17px;line-height:1.65;color:#354e40;max-width:345px;margin:0 0 26px}
.story-copy .button{font-size:13px;min-height:51px;padding-inline:21px;gap:20px}
.story-small{display:block;max-width:300px;font-size:11px;line-height:1.6;color:#486250;margin-top:16px}
.real-phone{position:absolute;z-index:3;left:48%;bottom:42px;width:190px;margin:0;transform:rotate(-5deg);filter:drop-shadow(0 20px 22px #09271940)}
.real-phone>a{display:block;padding:5px;border:2px solid #17291f;border-radius:29px;background:#17291f;overflow:hidden;transition:transform .2s}
.real-phone>a:hover{transform:translateY(-5px)}
.real-phone img{display:block;width:100%;height:auto;border-radius:22px}
.real-phone figcaption{display:flex;justify-content:space-between;align-items:center;gap:5px;font-size:9px;font-weight:750;background:white;color:#173e28;border-radius:99px;padding:10px 12px;margin-top:12px;white-space:nowrap}
.real-phone figcaption>span:first-child{color:#00a955}
.story-photo-credit{position:absolute;right:18px;bottom:14px;font-size:9px;color:#173824;background:#ffffffc9;border-radius:6px;padding:4px 7px}
.story-benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;padding:35px 10px 0}
.story-benefits article+article{border-left:1px solid #d6e0d9;padding-left:32px}
.benefit-index{font-size:10px;letter-spacing:.09em;font-weight:800;color:#008b46}
.story-benefits h3{font-size:23px;line-height:1.2;font-weight:750;letter-spacing:-.5px;margin:14px 0 12px}
.story-benefits p{font-size:15px;line-height:1.65;color:#586b62;margin:0}
@media(min-width:1300px){.story-copy{padding-top:64px}.real-phone{width:205px;left:48%}}
@media(max-width:900px){.story-banner{min-height:660px}.story-copy{width:54%;padding:36px 0 40px 30px}.story-copy h2{font-size:52px}.story-photo{object-position:60% center}.real-phone{width:155px;left:auto;right:22px;bottom:44px}.story-banner:before{background:linear-gradient(90deg,#dcebdd 0%,#dcebddee 25%,#dcebdd60 55%,transparent 80%)}.story-benefits{gap:20px}.story-benefits article+article{padding-left:20px}.story-benefits h3{font-size:20px}}
@media(max-width:600px){.features-story{padding-block:50px}.story-banner{min-height:0;padding-bottom:470px;border-radius:24px}.story-copy{width:100%;padding:30px 24px}.story-copy h2{font-size:49px}.story-copy>p:not(.section-kicker){font-size:16px;max-width:100%}.story-copy .section-kicker{font-size:10px}.story-photo{top:auto;bottom:0;height:490px;object-position:72% center;object-fit:cover}.story-banner:before{background:linear-gradient(180deg,#dcebdd 0%,#dcebdd 47%,#dcebdd00 63%)}.real-phone{width:168px;left:23px;right:auto;bottom:35px}.story-photo-credit{font-size:8px;bottom:9px;right:10px}.story-benefits{grid-template-columns:1fr;padding-top:28px;gap:24px}.story-benefits article+article{padding-left:0;border-left:0;border-top:1px solid #d6e0d9;padding-top:24px}.story-benefits h3{font-size:23px}}

/* Frase em destaque e benefícios sobre creme. */
.story-motto{text-align:center;padding:34px 20px 30px}
.story-motto p{margin:0;color:#071d16;font-size:clamp(24px,3vw,38px);font-weight:600;line-height:1.3;letter-spacing:-.035em}
.story-motto strong{color:#008b46;font-weight:750}
.story-benefits{background:var(--cream);border-radius:26px;padding:36px 30px;gap:30px}
.story-benefits article+article{border-color:#d3dacf;padding-left:30px}
/* Cinco planos: totais transparentes e destaque interativo. */
.plan-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}
.plan-grid article{padding:26px 20px;min-height:350px;transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,background .22s ease}
.plan-grid article.featured{background:#123b2b;color:#fff;border-color:var(--green);transform:none}
.plan-grid .popular{top:12px;right:12px;font-size:8px;color:#071d16;background:var(--lime)}
.plan-grid h3{margin:12px 0 22px;font-size:20px}
.plan-grid strong{font-size:32px;white-space:nowrap}
.plan-grid .plan-total{font-size:10px;color:#a9bbb4;display:block;margin-top:6px}
.plan-grid .monthly,.plan-grid .featured .monthly{color:#c3d6cb;font-size:11px;line-height:1.5;margin-top:12px;min-height:34px}
.plan-grid .plan-motivation,.plan-grid .featured .plan-motivation{color:var(--lime);font-weight:800;font-size:14px;line-height:1.5;margin:18px 0 26px}
.plan-grid a{font-size:13px;gap:10px;border-color:#537261;transition:color .2s}
.plan-grid article:hover,.plan-grid article:focus-within{transform:translateY(-9px);border-color:var(--lime);background:#164431;box-shadow:0 15px 36px #0003,0 0 0 1px var(--lime),0 0 24px #b8ff5320}
.plan-grid article:hover a,.plan-grid article:focus-within a{color:var(--lime)}
.pricing-note{max-width:950px;margin:26px auto 0;color:#a7b9b1;font-size:11px;line-height:1.7;text-align:center}
@media(max-width:1100px){.plan-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:760px){.plan-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.story-benefits{gap:20px;padding:28px 22px}.story-benefits article+article{padding-left:20px}}
@media(max-width:600px){.story-motto{padding:28px 8px}.story-benefits article+article{padding-left:0;padding-top:22px}}
@media(max-width:460px){.plan-grid{grid-template-columns:1fr}.plan-grid article{min-height:0;padding:30px 25px}.plan-grid .monthly{min-height:0}.plan-grid strong{font-size:38px}}
@media(prefers-reduced-motion:reduce){.plan-grid article:hover,.plan-grid article:focus-within{transform:none}}

/* Benefícios reposicionados abaixo da apresentação e plataformas. */
.hero-benefits{grid-column:1/-1;width:100%;min-width:0}
.hero-benefits .story-motto{padding-top:10px}
.features-story .story-banner{margin-bottom:0}
.plan-grid .popular{white-space:nowrap}
@media(max-width:560px){.hero-benefits .story-motto{padding-top:0}}

/* Alertas em movimento e atendimento humanizado. */
.support-trigger{border:0;background:transparent;padding:0;color:#33463f;font:inherit;cursor:pointer}
.support-trigger:hover{color:#008b46}button:focus-visible{outline:3px solid #00a955;outline-offset:5px}
.alert-stage{padding:30px 26px;display:flex;flex-direction:column;justify-content:space-between;gap:18px}
.alert-stage-heading{position:relative;display:flex;align-items:center;gap:12px;color:#fff}
.alert-stage-heading strong{display:block;font-size:18px;letter-spacing:-.4px}
.alert-stage-heading div>span{display:block;font-size:11px;color:#b0cabd;margin-top:4px}
.demo-indicator{margin-left:auto;color:#b8ff53;background:#b8ff5317;border:1px solid #b8ff5340;padding:6px 8px;border-radius:99px;font-size:8px;letter-spacing:1px}
.alert-window{position:relative;height:364px;overflow:hidden;mask-image:linear-gradient(transparent,#000 3%,#000 95%,transparent)}
.alert-feed{margin:0;padding:8px 0;list-style:none;display:flex;flex-direction:column;gap:12px}
.feed-card{display:flex;align-items:center;gap:12px;min-height:108px;flex-shrink:0;background:#fff;border:1px solid #d9f0df;border-radius:17px;padding:16px;box-shadow:0 8px 22px #001c1740}
.feed-icon{width:38px;height:38px;flex-shrink:0;background:#eafff2;border-radius:12px;display:grid;place-items:center;font-size:21px}
.feed-card small{font-size:7px;letter-spacing:.08em;color:#008943;font-weight:800}
.feed-card h3{font-size:17px;line-height:1.18;letter-spacing:-.4px;font-weight:750;margin:6px 0}
.feed-card p{font-size:11px;line-height:1.45;color:#617069;margin:0}
.alert-stage-footer{position:relative;display:flex;align-items:center;justify-content:space-between;gap:10px;color:#d5eade;font-size:10px}
.alert-stage-footer>span{display:flex;align-items:center;gap:10px}
.alert-stage-footer .status-dot{width:6px;height:6px;flex-shrink:0}
.feed-toggle{border:1px solid #59846c;border-radius:99px;padding:7px 10px;color:#d9f7e5;background:#0e3528;font:inherit;font-size:9px;cursor:pointer}
.alert-disclaimer{position:relative;color:#a5c1b1;font-size:9px;line-height:1.5;margin:0;text-align:center}
.support-dialog{position:fixed;inset:0;margin:auto;width:min(520px,calc(100% - 32px));max-height:calc(100dvh - 40px);overflow:auto;border:1px solid #d4e1d5;border-radius:28px;padding:40px;background:#f5f2ea;color:#071d16;box-shadow:0 30px 100px #0005}
.support-dialog::backdrop{background:#031c13b8;backdrop-filter:blur(6px)}
body:has(.support-dialog[open]){overflow:hidden}
.support-close{position:absolute;top:16px;right:18px;width:32px;height:32px;border:1px solid #c6d4c7;border-radius:50%;background:white;font-size:23px;line-height:1;cursor:pointer}
.support-symbol{display:grid;place-items:center;width:52px;height:52px;background:#20e57a;border-radius:17px;font-size:30px;margin-bottom:22px}
.support-kicker{color:#008943;font-size:10px;font-weight:800;letter-spacing:1.4px;margin:0 0 14px}
.support-dialog h2{font-size:34px;line-height:1.12;letter-spacing:-1.4px;font-weight:650;margin:0 0 20px}
.support-dialog h2 em{font-style:normal;color:#008b46}
#support-description{font-size:15px;line-height:1.7;color:#52665d;margin:0 0 25px}
.support-whatsapp{width:100%;font-size:14px;gap:12px}
.support-number{font-size:12px;line-height:1.8;color:#617069;text-align:center;margin:22px 0 10px}
.support-number a{font-size:20px;font-weight:750;color:#071d16}
.support-dialog>small{display:block;text-align:center;font-size:10px;color:#617069}
@media(max-width:1100px){.nav-links{gap:20px}.nav{gap:20px}}
@media(max-width:560px){.nav{height:auto;min-height:86px;flex-wrap:wrap;justify-content:space-between;padding-block:16px;gap:12px}.nav-links{gap:18px}.nav .brand{font-size:18px;gap:8px}.nav .radar-brand-icon{width:32px;height:32px}.alert-stage{height:570px;padding:24px 16px;gap:14px}.alert-stage-heading strong{font-size:16px}.feed-card{padding:13px;gap:10px}.feed-card h3{font-size:16px}.support-dialog{padding:32px 24px}.support-dialog h2{font-size:30px}}

/* Notificações inspiradas no iPhone: ícone Telegram e vidro translúcido. */
.alert-stage{background:radial-gradient(ellipse at 90% 15%,#82b6a5 0,transparent 49%),radial-gradient(ellipse at 12% 85%,#799898 0,transparent 55%),linear-gradient(145deg,#0b3932,#255c50 50%,#0a252c)}
.alert-stage .orbit{border-color:#d5f6df20}
.alert-stage .alert-window{height:384px;margin-block:0}
.alert-stage .alert-feed{gap:12px;padding-top:8px}
.alert-stage .feed-card{height:116px;min-height:116px;padding:16px 15px;gap:12px;align-items:center;border:1px solid #ffffff75;border-radius:24px;background:linear-gradient(125deg,#f9fffbdf,#e2eee7ca);backdrop-filter:blur(24px) saturate(140%);-webkit-backdrop-filter:blur(24px) saturate(140%);box-shadow:0 9px 22px #082e2926,inset 0 1px #ffffffa0;font-family:-apple-system,BlinkMacSystemFont,'Helvetica Neue',Arial,sans-serif}
.alert-stage .feed-icon{width:42px;height:42px;border-radius:11px;background:linear-gradient(#37b8ef,#148ed0);box-shadow:inset 0 1px #ffffff50;flex:0 0 42px}
.feed-icon img{width:26px;height:26px;display:block}
.feed-card>div{min-width:0;flex:1}
.notification-meta{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:3px}
.alert-stage .notification-meta small{font-size:12px;letter-spacing:0;color:#394c45;font-weight:600}
.notification-meta>span{font-size:10px;color:#60726b}
.alert-stage .feed-card h3{font-size:15px;font-weight:700;letter-spacing:-.25px;line-height:1.18;margin:3px 0 4px;color:#10251e}
.alert-stage .feed-card p{font-size:11px;line-height:1.35;color:#33493f;margin:0}
.steps-four{grid-template-columns:repeat(4,minmax(0,1fr));gap:30px}
.steps-four h3{font-size:25px}
@media(max-width:900px){.steps-four{grid-template-columns:repeat(2,minmax(0,1fr));gap:36px}}
@media(max-width:560px){.alert-stage{height:595px}.alert-stage .feed-card{padding:12px;gap:10px}.alert-stage .feed-card h3{font-size:14px}.alert-stage .feed-card p{font-size:10px}.alert-stage .feed-icon{width:36px;height:36px;flex-basis:36px;border-radius:9px}.steps-four{grid-template-columns:1fr;gap:30px}}

/* Mais leitura nas notificações e suporte. */
.alert-stage{height:730px}
.alert-stage .alert-window{height:480px}
.alert-stage .feed-card{height:148px;min-height:148px;padding:18px;gap:14px}
.alert-stage .feed-card h3{font-size:20px;line-height:1.2}
.alert-stage .feed-card p{font-size:14px;line-height:1.45}
.alert-stage .notification-meta small{font-size:15px}
.notification-meta>span{font-size:13px}
.alert-stage-heading strong{font-size:21px}
.alert-stage-heading div>span{font-size:14px}
.demo-indicator{font-size:11px}
.alert-stage-footer{font-size:13px}.feed-toggle{font-size:12px}.alert-disclaimer{font-size:12px}
.support-dialog{width:min(610px,calc(100% - 32px))}
.support-dialog h2{font-size:40px}
.support-kicker{font-size:13px}#support-description{font-size:18px}
.support-whatsapp{font-size:18px}.support-number{font-size:16px}.support-number a{font-size:25px}.support-dialog>small{font-size:13px}
.footer{flex-wrap:wrap;gap:24px;padding-block:30px}
.footer-menus{display:flex;gap:28px;margin-left:auto}
.footer-menus button{font:inherit;font-size:14px;color:#233e30;background:none;border:0;padding:8px 0;cursor:pointer}
.footer-menus button:hover{color:#008b46}
.footer>p{width:calc(50% - 12px);font-size:11px;margin:0}.footer>span{margin-left:auto;font-size:11px}
.content-dialog{position:fixed;inset:0;margin:auto;width:min(1080px,calc(100% - 32px));max-height:calc(100dvh - 40px);overflow:auto;background:#f5f2ea;color:#071d16;border:1px solid #d4e1d5;border-radius:28px;padding:36px;box-shadow:0 30px 100px #0005}
.content-dialog::backdrop{background:#031c13b8;backdrop-filter:blur(6px)}
body:has(.content-dialog[open]){overflow:hidden}
.content-close{position:absolute;right:18px;top:16px;z-index:2;width:36px;height:36px;border:1px solid #c6d4c7;border-radius:50%;background:white;font-size:25px;line-height:1;cursor:pointer}
.modal-kicker{font-size:12px;font-weight:800;letter-spacing:1.5px;color:#008943;margin:0 0 12px}
.content-dialog h2{font-size:38px;line-height:1.1;letter-spacing:-1.5px;font-weight:650;margin:0 0 15px}
.modal-lead{font-size:16px;line-height:1.5;color:#52665d;margin:0 0 22px}
.gallery-controls{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:20px}
.gallery-controls button{border:1px solid #b9cec0;border-radius:99px;background:#fff;color:#334c3f;padding:11px 17px;font-size:13px;font-weight:650;cursor:pointer}
.gallery-controls button[aria-pressed="true"]{background:#092c20;color:#b8ff53;border-color:#092c20}
.screen-figure{margin:0}.screen-figure>a{display:block;background:#e1e8e4;border:1px solid #cddbd1;border-radius:16px;overflow:hidden}
.screen-figure img{display:block;width:100%;height:clamp(260px,46vh,540px);object-fit:contain}
.screen-figure figcaption{font-size:15px;color:#344e3f;line-height:1.5;margin-top:14px}
.gallery-note{font-size:12px;color:#617069;margin:8px 0 0}
.about-dialog{width:min(920px,calc(100% - 32px));padding:0}
.about-layout{display:grid;grid-template-columns:.9fr 1fr;align-items:center}
.about-portrait{width:100%;height:560px;object-fit:cover;object-position:center 32%;display:block}
.about-copy{padding:40px 34px}.about-copy h2 em{font-style:normal;color:#008943}
.about-copy>p:not(.modal-kicker){font-size:18px;line-height:1.7;color:#52665d;margin:20px 0}
.about-location{display:inline-block;margin-top:10px;padding:10px 15px;background:#dcebdc;color:#166138;border-radius:99px;font-size:13px;font-weight:750}
@media(max-width:560px){.alert-stage{height:820px}.alert-stage .alert-window{height:546px}.alert-stage .feed-card{height:170px;min-height:170px;padding:13px;gap:10px}.alert-stage .feed-card h3{font-size:18px}.alert-stage .feed-card p{font-size:13px}.alert-stage .notification-meta small{font-size:14px}.notification-meta>span{font-size:12px}.alert-stage-heading strong{font-size:18px}.alert-stage-heading div>span{font-size:12px}.alert-stage-footer{flex-wrap:wrap;justify-content:center;gap:16px}.support-dialog h2{font-size:34px}.support-whatsapp{font-size:16px}.footer-menus{margin-left:0;gap:22px}.footer>p,.footer>span{width:100%;margin-left:0}.content-dialog{padding:30px 20px}.content-dialog h2{font-size:32px}.gallery-controls{gap:7px}.gallery-controls button{font-size:11px;padding:9px 12px}.about-dialog{padding:0}.about-layout{grid-template-columns:1fr}.about-portrait{height:350px;object-position:center 25%}.about-copy{padding:28px}.screen-figure img{height:310px}}

/* Ícone monocromático: círculos e feixe na cor do botão. */
.mono-radar{display:inline-block;position:relative;width:23px;height:23px;min-width:23px;vertical-align:middle;border:1.6px solid currentColor;border-radius:50%;background:repeating-radial-gradient(circle,transparent 0 3px,currentColor 3.5px 4.5px,transparent 5px 7px);color:inherit;flex-shrink:0}
.mono-radar:before{content:"";position:absolute;width:11px;height:1.6px;background:currentColor;left:50%;top:50%;transform-origin:left center;transform:rotate(-40deg)}
.mono-radar:after{content:"";position:absolute;width:4px;height:4px;background:currentColor;border-radius:50%;left:calc(50% - 2px);top:calc(50% - 2px)}
.real-phone figcaption .mono-radar{width:14px;height:14px;min-width:14px}.real-phone figcaption .mono-radar:before{width:6px}
.resources-trigger{font:inherit;border:0;background:none;padding:0;color:#33463f;cursor:pointer}.resources-trigger:hover{color:#008b46}
.resources-dialog h2 em{font-style:normal;color:#008b46}
.resources-grid{display:grid;grid-template-columns:1fr 1fr;gap:15px;margin:24px 0}
.resources-grid article{padding:24px;border-radius:18px;border:1px solid #d1dfd4;background:#fff}
.resource-number{font-size:10px;letter-spacing:1px;font-weight:800;color:#008b46}
.resources-grid h3{font-size:23px;font-weight:750;line-height:1.2;margin:12px 0}
.resources-grid p{font-size:15px;line-height:1.65;color:#52665d;margin:0}
.resources-grid .resource-highlight{background:#092c20;border-color:#092c20;color:#fff}
.resource-highlight .resource-number{color:#b8ff53}.resources-grid .resource-highlight p{color:#c7dacb}
.resources-cta{display:flex;align-items:center;justify-content:space-between;gap:24px;background:#dcebdc;padding:24px;border-radius:20px}
.resources-cta strong{font-size:20px}.resources-cta p{font-size:14px;line-height:1.6;color:#52665d;margin:8px 0 0}.resources-cta .button{font-size:14px;flex-shrink:0;gap:12px}
@media(max-width:900px){.resources-trigger{display:none}}
@media(max-width:560px){.resources-trigger{display:block}.nav-links{flex-wrap:wrap}.resources-grid{grid-template-columns:1fr}.resources-grid article{padding:20px}.resources-cta{flex-direction:column;align-items:stretch}.resources-grid h3{font-size:21px}}
@media(max-width:900px){.resources-trigger{display:block}.nav-links{gap:16px;flex-wrap:wrap}}

.footer-menus>a{font-size:14px;color:#233e30;padding:8px 0}.footer-menus>a:hover{color:#008b46}

.nav-links{gap:20px}.nav-links .demo-nav{white-space:nowrap;color:#008b46;font-weight:750}.nav-links{align-items:center}
@media(max-width:1100px){.nav{gap:16px}.nav-links{gap:14px;font-size:12px}.nav>.button{padding-inline:15px}}
@media(max-width:900px){.nav-links>a.demo-nav{display:inline-flex}.nav{height:auto;min-height:92px;padding-block:16px;flex-wrap:wrap}.nav-links{justify-content:flex-end}}
@media(max-width:560px){.nav-links{justify-content:flex-start;gap:14px}.nav-links .demo-nav{font-size:13px}}

/* Marca maior, preservando a identidade atual até aprovação da nova proposta. */
.nav .brand,.footer .brand{font-size:30px;gap:16px;white-space:nowrap;flex-shrink:0}
.nav .brand .radar-brand-icon,.footer .brand .radar-brand-icon{width:64px;height:64px}
.nav{height:auto;min-height:112px;padding-block:18px;flex-wrap:wrap}
@media(max-width:1100px){.nav{column-gap:20px;row-gap:16px}.nav-links{flex-wrap:wrap}}
@media(max-width:600px){.nav .brand,.footer .brand{font-size:26px;gap:12px}.nav .brand .radar-brand-icon,.footer .brand .radar-brand-icon{width:52px;height:52px}.nav{min-height:100px}.nav-links{width:100%;justify-content:flex-start}}

/* Identidade Radar Pulse aprovada: animação contida no SVG. */
.radar-brand-icon{background:transparent;box-shadow:none;overflow:visible}.radar-brand-icon>i{display:none}.radar-brand-icon .pulse-logo{object-fit:contain}.brand>span:last-child{color:#087aa4}

/* Prévia aprovada de traços reforçados: somente a landing. */
.radar-brand-icon{width:52.5px;border-radius:0;overflow:visible}
.radar-brand-icon-large{width:105px}
.nav .brand .radar-brand-icon,.footer .brand .radar-brand-icon{width:80px;height:64px}
.pulse-core .radar-brand-icon-large{width:137.5px}
.section-kicker-large .radar-brand-icon{width:38.75px}
.mini-dashboard header .radar-brand-icon,.native-card .radar-brand-icon{width:38.75px}
.always-on .radar-brand-icon{width:65px}
@media(max-width:600px){.nav .brand .radar-brand-icon,.footer .brand .radar-brand-icon{width:65px;height:52px}}

/* Teste visual: topo no mesmo verde da faixa Enquanto você trabalha. */
.landing-top{background:#082a20;color:#fff}
.landing-top .nav{min-height:128px;padding-block:22px;column-gap:22px}
.landing-top .nav .brand{font-size:34px;gap:12px}
.landing-top .nav .brand .radar-brand-icon{width:100px;height:80px}
.landing-top .brand-wordmark{white-space:nowrap;letter-spacing:-1px}
.landing-top .brand-wordmark b:first-child{color:#a3ff12}
.landing-top .brand-wordmark b:last-child{color:#00cfff}
.landing-top .nav-links,.landing-top .nav-links a,.landing-top .nav-links button{color:#e0f7ea}
.landing-top .nav-links .trial-nav,.landing-top .nav-links .demo-nav{color:#a3ff12}
.landing-top .nav-links a:hover,.landing-top .nav-links button:hover{color:#00cfff}
.landing-top .nav>.button{background:#14e775;color:#052619}
@media(max-width:1100px){.landing-top .nav{justify-content:center}.landing-top .nav-links{justify-content:center}}
@media(max-width:600px){.landing-top .nav{justify-content:flex-start;padding-block:18px}.landing-top .nav .brand{font-size:29px;gap:8px}.landing-top .nav .brand .radar-brand-icon{width:90px;height:72px}.landing-top .nav-links{justify-content:flex-start;gap:12px}}
