/* Última adaptação feita em 13/04/2026 às 20:05h */
/* ALTERAÇÃO: CSS completo consolidado, sem duplicações, com animações suaves,
   hero orbit funcional, melhoria de performance e responsividade */

: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, "Segoe UI", Roboto, Arial, 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.08) 0%, rgba(77, 141, 217, 0) 70%);
    filter: blur(8px);
    animation: driftGlow 24s ease-in-out infinite alternate;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

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;
}

.compact-section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.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.28) 48%, transparent 76%);
    transform: translateX(-130%);
    animation: shimmerSweep 12s ease-in-out infinite;
    opacity: 0.72;
}

.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;
}

.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-static,
.btn-static:hover {
    transform: none;
    transition: none;
}

.btn-static::after {
    display: none;
}

.btn-static.btn-primary:hover {
    box-shadow: 0 18px 40px rgba(58, 114, 229, 0.28);
}

.btn-static.btn-secondary:hover {
    box-shadow: var(--shadow-xs);
}

.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);
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.01);
}

.pulse-soft {
    animation: pulseSoftLite 4.8s ease-in-out infinite;
}

.top-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 54px;
    border-radius: 0;
    padding: 0 12px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    background: linear-gradient(110deg, rgba(0, 124, 137, 0.97), rgba(26, 145, 119, 0.97));
    color: #fff;
    z-index: 1050;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 34px rgba(17, 40, 33, 0.16);
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.top-header.is-scrolled {
    background: linear-gradient(110deg, rgba(0, 110, 122, 0.99), rgba(20, 128, 104, 0.99));
    box-shadow: 0 20px 46px rgba(4, 74, 70, 0.26);
}

.header-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    justify-self: start;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    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;
    grid-column: 2;
    justify-self: center;
}

.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: linear-gradient(135deg, #ffd166 0%, #ff9f43 100%);
    color: #173d31;
    box-shadow: 0 10px 22px rgba(116, 63, 7, 0.22);
}

.header-nav .nav-cta:hover,
.header-nav .nav-cta.is-active {
    background: linear-gradient(135deg, #ffe08a 0%, #ffb35c 100%);
    color: #173d31;
    box-shadow: 0 13px 28px rgba(116, 63, 7, 0.28);
}

.header-nav .nav-static,
.header-nav .nav-static:hover,
.header-nav .nav-static.is-active {
    transform: none;
    transition: none;
    background: linear-gradient(135deg, #ffd166 0%, #ff9f43 100%);
    color: #173d31;
    box-shadow: 0 10px 22px rgba(116, 63, 7, 0.22);
}

.header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 10px;
    background: #fff;
    color: #087d83;
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(6, 71, 72, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-login:hover,
.nav-login.is-active {
    transform: translateY(-1px);
    background: #f1fffc;
    color: #056970;
    box-shadow: 0 13px 28px rgba(6, 71, 72, 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: 0;
    padding-top: 82px;
}

.hero {
    padding-top: 52px;
    padding-bottom: 68px;
    overflow: clip;
}

.hero-ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.42;
    pointer-events: none;
    will-change: transform;
}

.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: 0;
    font-size: clamp(3rem, 4.1vw, 4.4rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.hero-content h1 span {
    display: block;
    margin-top: 6px;
    color: var(--primary-3);
    text-shadow: 0 10px 30px rgba(47, 127, 99, 0.14);
}

.hero-description {
    margin-top: 20px;
    font-size: 1.12rem;
    line-height: 1.55;
    color: var(--text-soft);
    max-width: 600px;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-points {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.point-item {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(207, 223, 214, 0.84);
    box-shadow: var(--shadow-xs);
    backdrop-filter: none;
    color: inherit;
}

.point-item-price {
    background: linear-gradient(145deg, rgba(231, 249, 242, 0.94), rgba(255, 255, 255, 0.82));
    border-color: rgba(47, 165, 111, 0.28);
}

.point-item-price strong {
    color: #17775f;
}

.point-item strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0;
}

.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;
    isolation: isolate;
}

.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    transform-origin: center center;
    z-index: 0;
    opacity: 1;
}

.hero-orbit-1 {
    width: 800px;
    height: 800px;
    margin-left: -400px;
    margin-top: -400px;
    border: 1px dashed rgba(43, 141, 107, 0.24);
    animation: rotateOrbit 40s linear infinite;
}

.hero-orbit-2 {
    width: 700px;
    height: 700px;
    margin-left: -350px;
    margin-top: -350px;
    border: 1px dashed rgba(77, 141, 217, 0.20);
    animation: rotateOrbitReverse 30s linear infinite;
}

.hero-orbit-3 {
    width: 620px;
    height: 620px;
    margin-left: -310px;
    margin-top: -310px;
    border: 1px dashed rgba(238, 146, 34, 0.22);
    animation: rotateOrbit 24s linear infinite;
}

.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);
}

.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;
}

.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, 0px)) calc(40% + var(--my, 0px)), rgba(255,255,255,0.52), transparent 44%);
    pointer-events: none;
}

.tilt-layer {
    transition: transform 0.3s ease-out;
}

.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: #fff;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(31, 94, 74, 0.22);
}

.brand-mark img,
.screen-logo img,
.footer-logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    transform: none;
}

.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;
}

.screen-chat-card {
    display: flex;
    flex-direction: column;
}

.chat-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.chat-contact-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #2f8b71, #235f4c);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}

.chat-contact-name {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 3px;
}

.chat-contact-name strong {
    font-size: 0.92rem;
}

.chat-contact-name span {
    color: var(--text-soft);
    font-size: 0.76rem;
}

.chat-contact-status {
    position: relative;
    padding-left: 12px;
    color: #25764f;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.chat-contact-status::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #39b768;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(57, 183, 104, 0.12);
}

.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 {
    display: block;
    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: 14px;
    padding: 16px 0;
}

.message-row {
    max-width: 88%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.message-agent {
    align-self: flex-end;
    align-items: flex-end;
}

.message-author {
    padding: 0 5px;
    color: var(--text-soft);
    font-size: 0.7rem;
    font-weight: 700;
}

.message-row time {
    padding: 0 5px;
    color: rgba(88, 116, 106, 0.86);
    font-size: 0.66rem;
}

.bubble {
    max-width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 0.94rem;
    line-height: 1.6;
    box-shadow: var(--shadow-xs);
    animation: bubbleFloat 9s ease-in-out infinite;
}

.bubble:nth-child(2) {
    animation-delay: 1.3s;
}

.bubble:nth-child(3) {
    animation-delay: 2.1s;
}

.bubble-left {
    background: var(--surface-soft);
    border: 1px solid var(--border);
    color: var(--text);
}

.bubble-right {
    background: rgba(63, 155, 121, 0.12);
    border: 1px solid rgba(63, 155, 121, 0.18);
    color: var(--text);
}

.case-routing {
    margin-top: auto;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(47, 127, 99, 0.10), rgba(77, 141, 217, 0.08));
    border: 1px solid rgba(47, 127, 99, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.case-routing div {
    display: grid;
    gap: 3px;
}

.case-routing span {
    color: var(--primary-3);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.case-routing strong {
    font-size: 0.9rem;
    line-height: 1.4;
}

.case-routing small {
    color: var(--text-soft);
    font-size: 0.78rem;
    line-height: 1.5;
    text-align: right;
}

.chat-composer {
    margin-top: 12px;
    min-height: 44px;
    padding: 6px 6px 6px 14px;
    border-radius: 15px;
    border: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #8aa097;
    font-size: 0.78rem;
}

.chat-composer strong {
    padding: 9px 13px;
    border-radius: 11px;
    background: var(--primary-3);
    color: #fff;
    font-size: 0.72rem;
}

.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(8px);
}

.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: none;
    background: linear-gradient(180deg, #f4fffb 0%, #edf8f4 100%);
    border: 2px solid rgba(20, 151, 122, 0.58);
    box-shadow: 0 26px 58px rgba(20, 128, 104, 0.20);
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(58,114,229,0.22), rgba(63,155,121,0.16));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    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: linear-gradient(135deg, #087d83, #20946f);
    color: #fff;
    box-shadow: 0 8px 20px rgba(8, 125, 131, 0.22);
}

.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;
}

.plans-page {
    min-height: calc(100vh - 82px);
}

.access-page {
    min-height: calc(100vh - 82px);
}

.access-section {
    min-height: calc(100vh - 82px);
    display: grid;
    place-items: center;
    padding-top: 72px;
    padding-bottom: 72px;
}

.access-card {
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 52px;
    text-align: center;
}

.access-logo {
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    border-radius: 18px;
    object-fit: cover;
}

.access-card h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.05;
}

.access-card p {
    margin-top: 16px;
    color: var(--text-soft);
    font-size: 1.06rem;
}

.access-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.plans-hero {
    padding-top: 72px;
    padding-bottom: 90px;
}

.plans-intro {
    max-width: 820px;
    margin: 0 auto 58px;
    text-align: center;
}

.plans-intro h1 {
    font-size: clamp(2.25rem, 4vw, 3.8rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.plans-intro p {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--text-soft);
    font-size: 1.08rem;
    line-height: 1.8;
}

.plans-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plans-grid .pricing-card {
    padding: 26px;
}

.plans-grid .price-box strong {
    font-size: clamp(2.15rem, 3vw, 2.8rem);
}

.plans-grid .price-box.custom strong {
    font-size: 2rem;
}

.home-plans-grid .pricing-card {
    padding: 24px;
}

.home-plans-grid .price-box {
    margin-top: 22px;
}

.home-plans-grid .pricing-features {
    margin-top: 24px;
}

.home-plans-footer {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.custom-plan-card {
    background: linear-gradient(160deg, rgba(31, 73, 59, 0.98), rgba(24, 58, 47, 0.98));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.custom-plan-card .plan-tag {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
}

.custom-plan-card .price-description,
.custom-plan-card .price-box span {
    color: rgba(255, 255, 255, 0.74);
}

.custom-plan-card .pricing-features li::before {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.20);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.05);
}

.custom-plan-card .btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.10);
}

.plans-note {
    max-width: 850px;
    margin: 34px auto 0;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.7;
    text-align: center;
}

.plans-signup-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.plans-signup-button {
    width: min(100%, 520px);
    min-height: 62px;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
    box-shadow: 0 18px 40px rgba(30, 104, 168, 0.24);
}

.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: 24px;
}

.comparison-head h2 {
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    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: 980px;
}

.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;
}

.comparison-contact {
    margin-top: 28px;
    padding: 24px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(120deg, rgba(0, 124, 137, 0.10), rgba(26, 145, 119, 0.12));
    border: 1px solid rgba(26, 145, 119, 0.18);
}

.comparison-contact h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.comparison-contact p {
    color: var(--text-soft);
}

.comparison-contact .btn {
    flex: 0 0 auto;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4),
.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
    text-align: center;
    white-space: nowrap;
}

.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: 1fr;
    gap: 28px;
    align-items: start;
}

.faq-copy {
    position: static;
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 12px;
    width: min(100%, 920px);
    margin: 0 auto;
}

.faq-item {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(207, 223, 214, 0.92);
    box-shadow: var(--shadow-xs);
    padding: 0 20px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 40px 18px 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: 14px;
    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 {
    max-width: 780px;
    padding: 0 0 18px;
    color: var(--text-soft);
    line-height: 1.65;
}

.site-footer {
    position: relative;
    left: auto !important;
    right: auto;
    width: 100%;
    margin-left: 0;
    padding: 0;
    background: linear-gradient(120deg, #007c89 0%, #178f79 55%, #2fa56f 100%);
    color: #fff;
    border-radius: 0;
}

.footer-shell {
    width: 100% !important;
    max-width: none;
    margin: 0 auto;
    padding: 44px max(24px, calc((100% - var(--container)) / 2)) 24px;
    border-radius: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 24px;
    align-items: start;
}

.footer-grid-compact {
    grid-template-columns: 1.25fr 0.7fr 0.75fr 1fr;
}

.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: #fff;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    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: rgba(255, 255, 255, 0.72);
    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;
    color: #fff;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(4px);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.social-copy {
    display: grid;
    gap: 2px;
}

.social-copy strong {
    color: #fff;
    font-size: 0.92rem;
}

.social-copy small {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.8rem;
}

.social-icon {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
    color: #fff;
}

.social-icon-instagram {
    border: 2px solid rgba(255, 255, 255, 0.92);
}

.social-icon-instagram::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    left: 50%;
    top: 50%;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.social-icon-instagram::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    right: 6px;
    top: 6px;
    border-radius: 50%;
    background: #fff;
}

.social-icon-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.footer-button {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    background: #fff;
    color: #1f5e4a !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(0, 0, 0, 0.16);
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    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);
}

.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);
}

.reveal,
.btn,
.hover-lift,
.tilt-layer {
    will-change: auto;
}

.hero-screen,
.hero-orbit,
.floating-badge {
    will-change: transform;
}

.section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.hero .hero-orbit,
.hero .hero-ambient,
.hero .floating-badge,
.hero .bubble,
.hero .pulse-soft {
    animation-play-state: paused;
}

.hero.is-inview .hero-orbit,
.hero.is-inview .hero-ambient,
.hero.is-inview .floating-badge,
.hero.is-inview .bubble,
.hero.is-inview .pulse-soft {
    animation-play-state: running;
}

@keyframes shimmerSweep {
    0%, 20% {
        transform: translateX(-130%);
    }
    38%, 100% {
        transform: translateX(140%);
    }
}

@keyframes pulseSoftLite {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.96;
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateOrbitReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@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(-18px, 12px, 0) scale(1.04);
    }
}

@keyframes mobileMenuIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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 {
        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) {
    .top-header {
        display: flex;
        justify-content: space-between;
        left: 0;
        right: 0;
    }

    .site-main,
    .site-footer {
        margin-left: 0;
        left: 10px;
    }

    .site-main {
        padding-top: 82px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-actions {
        margin-left: auto;
    }

    .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-1 {
        width: 620px;
        height: 620px;
        margin-left: -310px;
        margin-top: -310px;
    }

    .hero-orbit-2 {
        width: 520px;
        height: 520px;
        margin-left: -260px;
        margin-top: -260px;
    }

    .hero-orbit-3 {
        width: 420px;
        height: 420px;
        margin-left: -210px;
        margin-top: -210px;
    }
}

@media (max-width: 760px) {
    .container,
    .footer-shell {
        width: min(100% - 24px, var(--container));
    }

    .section {
        padding: 82px 0;
    }

    .compact-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .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;
    }

    .chat-contact-status {
        display: none;
        transform: none;
    }

    .case-routing {
        align-items: flex-start;
        flex-direction: column;
    }

    .case-routing small {
        text-align: left;
    }

    .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;
    }

    .comparison-contact {
        align-items: stretch;
        flex-direction: column;
        padding: 20px;
    }

    .comparison-contact .btn {
        width: 100%;
    }

    .footer-bottom {
        justify-content: flex-start;
    }

    .hover-lift:hover {
        transform: translateY(-4px) scale(1.005);
    }

    .hero-orbit {
        display: none;
    }
}

@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;
    }
}

@media (max-width: 520px) {
    .nav-login {
        min-height: 36px;
        padding: 0 11px;
        font-size: 0.78rem;
    }

    .brand-link {
        gap: 8px;
    }

    .brand-text strong {
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .plans-grid,
    .footer-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .plans-grid,
    .footer-grid-compact {
        grid-template-columns: 1fr;
    }

    .plans-hero {
        padding-top: 52px;
        padding-bottom: 64px;
    }

    .plans-intro {
        margin-bottom: 40px;
    }

    .plans-grid .pricing-card h3 {
        min-height: 0;
    }
}

/* Painel demonstrativo compacto */
.hero-visual {
    min-height: 500px;
}

.hero-screen {
    max-width: 540px;
    padding: 16px;
    border-radius: 28px;
}

.hero-screen::before {
    inset: 11px;
    border-radius: 20px;
}

.screen-topbar {
    gap: 12px;
    padding: 5px 2px 14px;
}

.screen-brand {
    gap: 10px;
}

.screen-logo {
    width: 36px;
    height: 36px;
    border-radius: 11px;
}

.screen-tag {
    padding: 8px 11px;
}

.screen-metrics {
    gap: 10px;
}

.metric-card {
    min-height: 96px;
    padding: 13px 14px;
    border-radius: 18px;
}

.metric-card strong {
    font-size: 1.65rem;
}

.screen-body {
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 10px;
    margin-top: 2px;
}

.screen-sidebar-card,
.screen-chat-card {
    padding: 14px;
    border-radius: 20px;
}

.chat-contact {
    gap: 8px;
    padding-bottom: 10px;
}

.chat-contact-avatar {
    width: 32px;
    height: 32px;
}

.mini-window-title {
    margin-bottom: 10px;
}

.conversation-list {
    gap: 8px;
}

.conversation-item {
    padding: 11px;
    border-radius: 14px;
}

.conversation-item strong {
    margin-bottom: 4px;
    font-size: 0.84rem;
}

.conversation-item span {
    font-size: 0.75rem;
}

.chat-bubbles {
    gap: 9px;
    padding: 12px 0;
}

.bubble {
    padding: 10px 12px;
    border-radius: 15px;
    font-size: 0.82rem;
    line-height: 1.45;
}

.case-routing {
    padding: 9px 10px;
    border-radius: 14px;
}

.case-routing span {
    font-size: 0.64rem;
}

.case-routing strong {
    font-size: 0.8rem;
}

.case-routing small {
    font-size: 0.7rem;
    line-height: 1.4;
}

.chat-composer {
    min-height: 38px;
    margin-top: 9px;
    border-radius: 13px;
}

@media (max-width: 760px) {
    .hero-screen {
        max-width: 500px;
    }

    .screen-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .metric-card {
        min-height: 88px;
        padding: 10px 8px;
        border-radius: 14px;
    }

    .metric-card span,
    .metric-card small {
        font-size: 0.68rem;
    }

    .metric-card strong {
        font-size: 1.4rem;
    }

    .screen-sidebar-card {
        display: none;
    }
}
