/* Última adaptação feita em 13/04/2026 às 17:44h */
/* ALTERAÇÃO: folha de estilo ampliada com animações suaves, efeitos de scroll, parallax leve, brilho, flutuação e transições de alto impacto visual */

:root {
    --bg: #f4f8f5;
    --bg-2: #edf4ef;
    --surface: #ffffff;
    --surface-soft: #f8fbf9;
    --surface-strong: #eff5f1;
    --text: #153129;
    --text-soft: #648074;
    --text-fade: #88a094;
    --border: #d8e6dd;
    --border-strong: #c6d9ce;
    --primary: #1f312b;
    --primary-2: #245643;
    --primary-3: #2f7f63;
    --primary-4: #3f9b79;
    --blue: #4d8dd9;
    --orange: #ee9222;
    --green: #46b96b;
    --shadow-xs: 0 8px 18px rgba(18, 45, 35, 0.06);
    --shadow-sm: 0 14px 28px rgba(18, 45, 35, 0.08);
    --shadow-md: 0 24px 60px rgba(18, 45, 35, 0.10);
    --shadow-lg: 0 30px 80px rgba(18, 45, 35, 0.14);
    --radius-xs: 12px;
    --radius-sm: 16px;
    --radius-md: 22px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --container: 1280px;
    --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(63, 155, 121, 0.10), transparent 24%),
        radial-gradient(circle at top right, rgba(77, 141, 217, 0.08), transparent 20%),
        linear-gradient(180deg, #eff5f1 0%, #f8fbf9 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(31, 49, 43, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 49, 43, 0.018) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 75%);
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    width: 46vw;
    height: 46vw;
    right: -16vw;
    top: -10vw;
    background: radial-gradient(circle, rgba(77, 141, 217, 0.10) 0%, rgba(77, 141, 217, 0) 70%);
    filter: blur(12px);
    animation: driftGlow 14s ease-in-out infinite alternate;
    z-index: -1;
    pointer-events: none;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section-sm {
    padding: 36px 0 20px;
}

.section-anchor {
    scroll-margin-top: 108px;
}

.section-soft {
    position: relative;
}

.section-soft::before {
    content: '';
    position: absolute;
    inset: 24px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 250, 248, 0.84));
    border: 1px solid rgba(201, 220, 209, 0.72);
    border-radius: 34px;
    box-shadow: var(--shadow-sm);
    z-index: 0;
}

.section-soft > .container {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 127, 99, 0.10);
    color: var(--primary-2);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.eyebrow-soft {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(201, 220, 209, 0.7);
}

.pill-motion {
    position: relative;
    overflow: hidden;
}

.pill-motion::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.38) 48%, transparent 76%);
    transform: translateX(-130%);
    animation: shimmerSweep 7s ease-in-out infinite;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 44px;
}

.section-heading.center {
    align-items: center;
    text-align: center;
}

.section-heading.narrow {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.proof-copy h2,
.modules-copy h2,
.faq-copy h2,
.cta-copy h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-heading p,
.proof-copy p,
.modules-copy p,
.faq-copy p,
.cta-copy p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-soft);
}

.btn {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 16px;
    font-weight: 700;
    transition:
        transform 0.34s var(--ease-out-soft),
        box-shadow 0.34s var(--ease-out-soft),
        background 0.34s var(--ease-out-soft),
        border-color 0.34s var(--ease-out-soft);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,0.32) 50%, transparent 75%);
    transform: translateX(-140%);
    transition: transform 0.9s ease;
}

.btn:hover::after {
    transform: translateX(140%);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #2e85ff 0%, #3a72e5 100%);
    box-shadow: 0 18px 40px rgba(58, 114, 229, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 24px 52px rgba(58, 114, 229, 0.34);
}

.btn-secondary {
    color: var(--primary);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
    box-shadow: 0 18px 34px rgba(18, 45, 35, 0.10);
}

.btn-block {
    width: 100%;
}

.glass-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent 44%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: -1;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -120%;
    left: -40%;
    width: 60%;
    height: 280%;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.16), transparent);
    transform: rotate(24deg);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.7s ease;
    pointer-events: none;
}

.glass-card:hover::before,
.glass-card:hover::after {
    opacity: 1;
}

.glass-card:hover::after {
    transform: rotate(24deg) translateX(180%);
}

.hover-lift {
    transition:
        transform 0.42s var(--ease-out-soft),
        box-shadow 0.42s var(--ease-out-soft),
        border-color 0.42s var(--ease-out-soft);
    will-change: transform;
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.01);
}

.pulse-soft {
    animation: pulseSoft 3.8s ease-in-out infinite;
}

.brand-rail {
    position: fixed;
    top: 10px;
    left: 10px;
    bottom: 10px;
    width: 64px;
    padding: 14px 10px;
    background: linear-gradient(180deg, #286f56 0%, #1f5e4a 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 40px rgba(18, 45, 35, 0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 1100;
}

.rail-logo,
.rail-user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.28s ease, background 0.28s ease;
}

.rail-logo:hover,
.rail-user:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.rail-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rail-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    transition:
        transform 0.32s var(--ease-out-soft),
        background 0.32s var(--ease-out-soft),
        box-shadow 0.32s var(--ease-out-soft),
        color 0.32s var(--ease-out-soft);
    position: relative;
}

.rail-link::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.0);
    transition: border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.rail-link:hover,
.rail-link.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 8px 18px rgba(0, 0, 0, 0.10);
}

.rail-link:hover::before,
.rail-link.is-active::before {
    border-color: rgba(255, 255, 255, 0.16);
    opacity: 1;
}

.rail-link:hover {
    transform: translateY(-2px) scale(1.03);
}

.rail-link svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rail-link:nth-child(4) svg {
    width: 18px;
    height: 18px;
}

.rail-link:nth-child(5) svg {
    width: 20px;
    height: 20px;
}

.top-header {
    position: fixed;
    left: 84px;
    right: 10px;
    top: 10px;
    height: 54px;
    border-radius: 12px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(31, 49, 43, 0.92);
    color: #fff;
    z-index: 1050;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 34px rgba(17, 40, 33, 0.16);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.top-header.is-scrolled {
    background: rgba(31, 49, 43, 0.96);
    box-shadow: 0 20px 46px rgba(17, 40, 33, 0.24);
}

.header-brand {
    display: flex;
    align-items: center;
    min-width: 220px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2f8b71 0%, #205d49 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 12px 24px rgba(31, 94, 74, 0.30);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-size: 1.02rem;
    font-weight: 800;
}

.brand-text small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.86);
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 600;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.header-nav a:hover,
.header-nav a.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.header-nav a:hover {
    transform: translateY(-1px);
}

.header-nav .nav-cta {
    background: rgba(77, 141, 217, 0.18);
    color: #fff;
}

.header-nav .nav-cta:hover,
.header-nav .nav-cta.is-active {
    background: rgba(77, 141, 217, 0.28);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-main {
    margin-left: 84px;
    padding-top: 82px;
}

.hero {
    padding-top: 64px;
    padding-bottom: 82px;
    overflow: clip;
}

.hero-ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    opacity: 0.6;
    pointer-events: none;
}

.hero-ambient-1 {
    width: 420px;
    height: 420px;
    left: -140px;
    top: 40px;
    background: radial-gradient(circle, rgba(63,155,121,0.16) 0%, rgba(63,155,121,0) 70%);
    animation: floatBlob 11s ease-in-out infinite;
}

.hero-ambient-2 {
    width: 360px;
    height: 360px;
    right: -100px;
    top: 80px;
    background: radial-gradient(circle, rgba(77,141,217,0.18) 0%, rgba(77,141,217,0) 70%);
    animation: floatBlob 13s ease-in-out infinite reverse;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    gap: 56px;
}

.hero-content {
    max-width: 640px;
}

.hero-content h1 {
    margin-top: 20px;
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.hero-content h1 span {
    color: var(--primary-3);
    text-shadow: 0 10px 30px rgba(47, 127, 99, 0.14);
}

.hero-description {
    margin-top: 26px;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-soft);
    max-width: 600px;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-points {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.point-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(207, 223, 214, 0.84);
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(8px);
}

.point-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.point-item span {
    display: block;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hero-visual {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    --mx: 0px;
    --my: 0px;
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgb(43, 141, 107) ; 
    pointer-events: none;
}

.hero-orbit-1 {
    width: 540px;
    height: 540px;
    animation: rotateOrbit 28s linear infinite;
}

.hero-orbit-2 {
    width: 420px;
    height: 420px;
    border-color: rgba(77, 141, 217, 0.18);
    animation: rotateOrbit 20s linear infinite reverse;
}

.hero-orbit-3 {
    width: 260px;
    height: 260px;
    border-color: rgba(238, 146, 34, 0.18);
    animation: rotateOrbit 16s linear infinite;
}

.hero-orbit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(63, 155, 121, 0.66);
    box-shadow: 0 0 0 8px rgba(63, 155, 121, 0.08);
}

.hero-screen {
    position: relative;
    width: 100%;
    max-width: 620px;
    padding: 20px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(246,250,248,0.92) 100%);
    border: 1px solid rgba(206, 223, 214, 0.84);
    box-shadow: var(--shadow-lg);
    transform-style: preserve-3d;
    transition: transform 0.28s ease-out, box-shadow 0.35s ease;
    will-change: transform;
}

.hero-screen::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 24px;
    border: 1px solid rgba(223, 233, 227, 0.92);
    pointer-events: none;
}

.hero-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at calc(50% + var(--mx)) calc(40% + var(--my)), rgba(255,255,255,0.52), transparent 44%);
    pointer-events: none;
}

.tilt-layer {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.screen-topbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 4px 20px;
}

.screen-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.screen-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2f8b71 0%, #1f5e4a 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(31, 94, 74, 0.22);
}

.screen-brand strong {
    display: block;
    font-size: 1rem;
}

.screen-brand small {
    display: block;
    margin-top: 4px;
    font-size: 0.76rem;
    color: var(--text-soft);
}

.screen-tag {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(70, 185, 107, 0.12);
    color: #1f7c43;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(70, 185, 107, 0.16);
}

.screen-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.metric-card {
    padding: 16px 18px;
    border-radius: 22px;
    color: #fff;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.14), transparent 42%);
    pointer-events: none;
}

.metric-card small,
.metric-card span {
    color: rgba(255, 255, 255, 0.88);
}

.metric-card strong {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.metric-blue {
    background: linear-gradient(135deg, #5295e6 0%, #3d7ad1 100%);
}

.metric-orange {
    background: linear-gradient(135deg, #f3a23d 0%, #eb8e19 100%);
}

.metric-green {
    background: linear-gradient(135deg, #55c778 0%, #33ad59 100%);
}

.screen-body {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 14px;
}

.screen-sidebar-card,
.screen-chat-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    padding: 18px;
}

.mini-window-title {
    font-size: 0.84rem;
    font-weight: 800;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.conversation-list {
    display: grid;
    gap: 10px;
}

.conversation-item {
    padding: 14px;
    border-radius: 18px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.conversation-item:hover {
    transform: translateX(4px);
}

.conversation-item.is-highlight {
    background: rgba(77, 141, 217, 0.10);
    border-color: rgba(77, 141, 217, 0.24);
}

.conversation-item strong,
.chat-bubbles {
    display: block;
}

.conversation-item strong {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.conversation-item span {
    font-size: 0.84rem;
    color: var(--text-soft);
}

.chat-bubbles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

.bubble {
    max-width: 86%;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 0.94rem;
    line-height: 1.6;
    box-shadow: var(--shadow-xs);
    animation: bubbleFloat 5.6s ease-in-out infinite;
}

.bubble:nth-child(2) {
    animation-delay: 0.9s;
}

.bubble:nth-child(3) {
    animation-delay: 1.6s;
}

.bubble-left {
    background: var(--surface-soft);
    border: 1px solid var(--border);
    color: var(--text);
}

.bubble-right {
    align-self: flex-end;
    background: rgba(63, 155, 121, 0.12);
    border: 1px solid rgba(63, 155, 121, 0.18);
    color: var(--text);
}

.bubble.small {
    max-width: 62%;
}

.floating-badge {
    position: absolute;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(208, 223, 215, 0.84);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.floating-badge strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.floating-badge span {
    display: block;
    font-size: 0.82rem;
    color: var(--text-soft);
}

.floating-badge-left {
    left: -18px;
    top: 72px;
    animation: floatSoft 5.8s ease-in-out infinite;
}

.floating-badge-right {
    right: -18px;
    bottom: 78px;
    animation: floatSoft 6.6s ease-in-out infinite reverse;
}

.proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 28px 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(207, 223, 214, 0.84);
    box-shadow: var(--shadow-xs);
}

.proof-copy h2 {
    max-width: 650px;
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
    margin-top: 16px;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    gap: 12px;
}

.proof-stat {
    min-width: 130px;
    padding: 20px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
    border: 1px solid var(--border);
    text-align: center;
}

.proof-stat strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.proof-stat span {
    display: block;
    color: var(--text-soft);
    line-height: 1.5;
    font-size: 0.92rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1.12fr 1fr 1fr;
    gap: 20px;
}

.benefit-card {
    position: relative;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,251,249,0.98) 100%);
    border: 1px solid rgba(207, 223, 214, 0.92);
    box-shadow: var(--shadow-sm);
}

.benefit-card.featured {
    background: linear-gradient(135deg, rgba(31,49,43,0.98) 0%, rgba(34,82,65,0.96) 100%);
    color: #fff;
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: rgba(47, 127, 99, 0.12);
    color: var(--primary-3);
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(47, 127, 99, 0.10);
}

.benefit-card.featured .benefit-number {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.benefit-card h3 {
    font-size: 1.38rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 14px;
}

.benefit-card p {
    color: var(--text-soft);
    line-height: 1.85;
}

.benefit-card.featured p {
    color: rgba(255, 255, 255, 0.82);
}

.modules-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.modules-copy {
    position: sticky;
    top: 102px;
    padding-right: 18px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.module-card {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(207, 223, 214, 0.92);
    box-shadow: var(--shadow-xs);
}

.module-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.module-card p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 18px;
}

.module-card ul {
    display: grid;
    gap: 12px;
}

.module-card li {
    position: relative;
    padding-left: 20px;
    color: var(--text);
    line-height: 1.6;
}

.module-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-3);
    box-shadow: 0 0 0 8px rgba(47, 127, 99, 0.08);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(248,251,249,0.95) 100%);
    border: 1px solid rgba(207, 223, 214, 0.92);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.pricing-card-featured {
    transform: translateY(-12px);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8f6 100%);
    border-color: rgba(77, 141, 217, 0.30);
    box-shadow: 0 26px 58px rgba(61, 122, 209, 0.16);
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px; /* Espessura da borda */
    background: linear-gradient(135deg, rgba(58,114,229,0.22), rgba(63,155,121,0.16));
    
    /* Versão com prefixo (Safari/Chrome antigo) */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    
    /* Versão padrão (Firefox/Chrome atual/Edge) */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    pointer-events: none;
}

.plan-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(31, 49, 43, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.plan-tag.highlight {
    background: rgba(77, 141, 217, 0.14);
    color: #2e67c2;
}

.pricing-card h3 {
    margin-top: 18px;
    font-size: 1.46rem;
    line-height: 1.18;
    font-weight: 800;
}

.price-box {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.price-box strong {
    font-size: 3rem;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.price-box span {
    color: var(--text-soft);
    font-weight: 600;
    padding-bottom: 6px;
}

.price-box.custom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.price-box.custom strong {
    font-size: 2.2rem;
}

.price-box.custom span {
    padding-bottom: 0;
}

.price-description {
    margin-top: 18px;
    color: var(--text-soft);
    line-height: 1.8;
}

.pricing-features {
    margin-top: 22px;
    margin-bottom: 28px;
    display: grid;
    gap: 12px;
    flex: 1;
}

.pricing-features li {
    position: relative;
    padding-left: 26px;
    line-height: 1.65;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(70, 185, 107, 0.28), rgba(70, 185, 107, 0.12));
    border: 1px solid rgba(70, 185, 107, 0.28);
    box-shadow: 0 0 0 6px rgba(70,185,107,0.06);
}

.pricing-note {
    margin-top: 18px;
    text-align: center;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.comparison-card {
    margin-top: 42px;
    padding: 26px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(207, 223, 214, 0.92);
    box-shadow: var(--shadow-xs);
}

.comparison-head {
    margin-bottom: 18px;
}

.comparison-head h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.comparison-head p {
    color: var(--text-soft);
}

.comparison-table-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.comparison-table thead th {
    background: var(--surface-soft);
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 800;
}

.comparison-table tbody tr {
    transition: background 0.22s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(77,141,217,0.045);
}

.comparison-table tbody td {
    color: var(--text-soft);
}

.comparison-table tbody td:first-child {
    color: var(--text);
    font-weight: 700;
}

.cta-box {
    padding: 40px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(31,49,43,0.98) 0%, rgba(36,86,67,0.96) 100%);
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.cta-box::before,
.cta-box::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-box::before {
    width: 280px;
    height: 280px;
    right: -80px;
    top: -120px;
    background: radial-gradient(circle, rgba(77,141,217,0.18), rgba(77,141,217,0));
    animation: floatBlob 9s ease-in-out infinite;
}

.cta-box::after {
    width: 220px;
    height: 220px;
    left: -60px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(63,155,121,0.16), rgba(63,155,121,0));
    animation: floatBlob 8s ease-in-out infinite reverse;
}

.cta-box .eyebrow {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.cta-copy p {
    color: rgba(255, 255, 255, 0.78);
    margin-top: 14px;
    max-width: 760px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-box .btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
}

.faq-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.faq-copy {
    position: sticky;
    top: 102px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(207, 223, 214, 0.92);
    box-shadow: var(--shadow-xs);
    padding: 0 22px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 34px 22px 0;
    position: relative;
    font-weight: 800;
    line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.28s ease, background 0.28s ease;
}

.faq-item[open] summary::after {
    content: '–';
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 0 22px;
    color: var(--text-soft);
    line-height: 1.85;
}

.site-footer {
    margin-left: 84px;
    padding: 0 0 36px;
}

.footer-shell {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
    padding: 34px 34px 20px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(247,250,248,0.94) 100%);
    border: 1px solid rgba(207, 223, 214, 0.92);
    box-shadow: var(--shadow-xs);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 24px;
    align-items: start;
}

.footer-brand-block {
    padding-right: 20px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2f8b71 0%, #1f5e4a 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 12px 24px rgba(31,94,74,0.20);
}

.footer-logo-row strong {
    display: block;
    font-size: 1.16rem;
    margin-bottom: 6px;
}

.footer-logo-row p,
.footer-description,
.footer-column p,
.footer-bottom {
    color: var(--text-soft);
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.footer-column a {
    color: var(--text-soft);
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-button {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff !important;
    font-weight: 700;
    width: fit-content;
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(18,45,35,0.16);
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.985);
    transition:
        opacity 0.8s var(--ease-out-soft),
        transform 0.8s var(--ease-out-soft);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible,
.reveal-immediate {
    opacity: 1;
    transform: none;
}

.reveal-left {
    transform: translate3d(-42px, 0, 0) scale(0.985);
}

.reveal-right {
    transform: translate3d(42px, 0, 0) scale(0.985);
}

.reveal-up {
    transform: translate3d(0, 42px, 0) scale(0.985);
}

@keyframes shimmerSweep {
    0%, 18% {
        transform: translateX(-130%);
    }
    34%, 100% {
        transform: translateX(140%);
    }
}

@keyframes pulseSoft {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(70, 185, 107, 0.14);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 12px rgba(70, 185, 107, 0.0);
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatBlob {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -18px, 0) scale(1.04);
    }
}

@keyframes driftGlow {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(-30px, 18px, 0) scale(1.08);
    }
}

@media (max-width: 1200px) {
    .hero-grid,
    .modules-layout,
    .faq-layout,
    .footer-grid,
    .proof-grid,
    .cta-box,
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-content,
    .modules-copy,
    .faq-copy {
        max-width: none;
        position: static;
        padding-right: 0;
        padding-bottom: 50px;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .proof-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-brand-block {
        padding-right: 0;
    }

    .pricing-card-featured {
        transform: none;
    }
}

@media (max-width: 980px) {
    .brand-rail {
        display: none;
    }

    .top-header,
    .site-main,
    .site-footer {
        margin-left: 0;
        left: 10px;
    }

    .site-main {
        padding-top: 82px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        padding: 10px;
        border-radius: 16px;
        background: #1f312b;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 20px 50px rgba(17, 40, 33, 0.20);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .header-nav.is-open {
        display: flex;
        animation: mobileMenuIn 0.34s var(--ease-out-soft);
    }

    .hero {
        padding-top: 42px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-screen {
        max-width: none;
    }

    .floating-badge {
        position: static;
        margin-top: 14px;
    }

    .hero-orbit {
        /*display: none;*/
    }
}

@keyframes mobileMenuIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 760px) {
    .container,
    .footer-shell {
        width: min(100% - 24px, var(--container));
    }

    .section {
        padding: 82px 0;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
    }

    .hero-description,
    .section-heading p,
    .proof-copy p,
    .modules-copy p,
    .faq-copy p,
    .cta-copy p {
        line-height: 1.75;
    }

    .screen-metrics,
    .screen-body,
    .proof-stats,
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .cta-box,
    .comparison-card,
    .footer-shell,
    .hero-screen,
    .benefit-card,
    .module-card,
    .pricing-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cta-actions,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions .btn,
    .hero-actions .btn {
        width: 100%;
    }

    .proof-grid {
        padding: 22px;
    }

    .price-box strong {
        font-size: 2.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
    }

    .footer-bottom {
        justify-content: flex-start;
    }

    .hover-lift:hover {
        transform: translateY(-4px) scale(1.005);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-up {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ALTERAÇÃO: hero visual com área própria para os orbits aparecerem ao redor do mockup */
.hero-visual {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    --mx: 0px;
    --my: 0px;
    isolation: isolate;
}

/* ALTERAÇÃO: orbits agora centralizados corretamente e maiores que o card */
.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    transform-origin: center center;
    z-index: 0;
    opacity: 1;
}

/* ALTERAÇÃO: orbit externo */
.hero-orbit-1 {
    width: 800px;
    height: 800px;
    margin-left: -400px;
    margin-top: -400px;
    border: 1px dashed rgba(43, 141, 107, 0.30);
    animation: rotateOrbit 28s linear infinite;
}

/* ALTERAÇÃO: orbit intermediário */
.hero-orbit-2 {
    width: 700px;
    height: 700px;
    margin-left: -350px;
    margin-top: -350px;
    border: 1px dashed rgba(77, 141, 217, 0.24);
    animation: rotateOrbitReverse 20s linear infinite;
}

/* ALTERAÇÃO: orbit interno */
.hero-orbit-3 {
    width: 620px;
    height: 620px;
    margin-left: -310px;
    margin-top: -310px;
    border: 1px dashed rgba(238, 146, 34, 0.26);
    animation: rotateOrbit 16s linear infinite;
}

/* ALTERAÇÃO: pontos luminosos dos orbits */
.hero-orbit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(63, 155, 121, 0.82);
    box-shadow:
        0 0 0 8px rgba(63, 155, 121, 0.10),
        0 0 22px rgba(63, 155, 121, 0.30);
}

/* ALTERAÇÃO: card principal acima dos orbits */
.hero-screen {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    padding: 20px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(246,250,248,0.92) 100%);
    border: 1px solid rgba(206, 223, 214, 0.84);
    box-shadow: var(--shadow-lg);
    transform-style: preserve-3d;
    transition: transform 0.28s ease-out, box-shadow 0.35s ease;
    will-change: transform;
}

/* ALTERAÇÃO: badges acima dos orbits também */
.floating-badge {
    position: absolute;
    z-index: 3;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(208, 223, 215, 0.84);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

/* ALTERAÇÃO: animações separadas para ficar mais elegante */
@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateOrbitReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}