/* ═══════════════════════════════════════
   UÔPA CRM — Temperature Escalation
   Dark, editorial, mobile-first, cinematic
   ═══════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --white: #fff;
    --black: #000;
    --g50: #fafafa;
    --g100: #f2f2f2;
    --g200: #e5e5e5;
    --g300: #ccc;
    --g600: #888;
    --g700: #333;
    --g800: #141414;
    --g850: #111;
    --g900: #0a0a0a;
    --green: #0F9D58;
    --green-soft: #3ddc84;
    --purple: #6200EA;
    --red: #E53935;
    --red-soft: #ff6b6b;
    --text: #eee;
    --text-muted: rgba(255, 255, 255, .42);
    --radius: 10px;
    --radius-lg: 18px;
    --radius-xl: 28px;
    --font: 'Syne', system-ui, sans-serif;
    --font-body: 'Inter', 'Syne', sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--g900);
    color: var(--text);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
    transition: background 0.4s ease, color 0.4s ease;
}

.desktop-only {
    display: none
}

/* Oculta elementos supérfluos no mobile, onde o sticky CTA já garante a conversão */
.hide-mobile {
    display: none !important
}

@media(min-width:768px) {
    .desktop-only {
        display: block
    }

    .hide-mobile {
        display: inline-flex !important
    }
}

/* ══════════ LAYOUT ══════════ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem
}

@media(min-width:768px) {
    .container {
        padding: 0 2.5rem
    }
}

@media(min-width:1200px) {
    .container {
        padding: 0 3rem
    }
}

.narrow {
    max-width: 860px
}

.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

/* ══════════ TYPOGRAPHY ══════════ */
.h2 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: .6rem
}

@media(min-width:768px) {
    .h2 {
        font-size: 1.9rem;
        letter-spacing: -.03em
    }
}

.h2-impact {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: .8rem
}

@media(min-width:768px) {
    .h2-impact {
        font-size: 2.2rem
    }
}

@media(min-width:1200px) {
    .h2-impact {
        font-size: 2.8rem
    }
}

.h2-editorial {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin-bottom: 1rem
}

@media(min-width:768px) {
    .h2-editorial {
        font-size: 2.6rem
    }
}

@media(min-width:1200px) {
    .h2-editorial {
        font-size: 3.4rem
    }
}

.body-text {
    font-family: var(--font-body);
    font-size: .88rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 1rem
}

@media(min-width:768px) {
    .body-text {
        font-size: .95rem;
        max-width: 540px
    }
}

.body-text-lg {
    font-family: var(--font-body);
    font-size: .95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55);
    max-width: 560px;
    margin-bottom: 1.2rem
}

@media(min-width:768px) {
    .body-text-lg {
        font-size: 1.1rem
    }
}

.body-text-accent {
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 255, 255, .7);
    max-width: 500px
}

@media(min-width:768px) {
    .body-text-accent {
        font-size: 1.1rem
    }
}

.green {
    color: var(--green)
}

.green-soft {
    color: var(--green-soft)
}

.purple {
    color: var(--purple)
}

.red {
    color: var(--red)
}

.red-soft {
    color: var(--red-soft)
}

.muted {
    color: rgba(255, 255, 255, .3)
}

.micro {
    font-size: .72rem;
    color: var(--text-muted);
    margin-top: .6rem;
    display: block;
    text-align: center;
    font-family: var(--font-body)
}

.tag {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(15, 157, 88, .1);
    padding: .35rem .85rem;
    border-radius: 100px;
    margin-bottom: .8rem
}

.tag-red {
    display: inline-block;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(229, 57, 53, .08);
    padding: .35rem .85rem;
    border-radius: 100px;
    margin-bottom: .8rem
}

/* ══════════ BUTTONS ══════════ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 2rem;
    font-size: .88rem;
    font-weight: 700;
    font-family: var(--font);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    background: var(--green);
    color: var(--white);
    transition: all .35s cubic-bezier(.2, .8, .2, 1);
    letter-spacing: .01em;
    box-shadow: 0 2px 8px rgba(15, 157, 88, .15), 0 8px 24px rgba(15, 157, 88, .1);
}

.btn-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 157, 88, .25), 0 16px 40px rgba(15, 157, 88, .15)
}

.btn-cta:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-loader {
    font-size: 0.85rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 2rem;
    font-size: .88rem;
    font-weight: 600;
    font-family: var(--font);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    color: rgba(255, 255, 255, .8);
    transition: all .3s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .5);
    color: var(--white)
}

.btn-full {
    width: 100%
}

/* ══════════ SECTIONS ══════════ */
.sec {
    position: relative;
    overflow: hidden
}

.sec--padded {
    padding: 3rem 0
}

@media(min-width:768px) {
    .sec--padded {
        padding: 5.5rem 0
    }
}

@media(min-width:1200px) {
    .sec--padded {
        padding: 7rem 0
    }
}

.sec--editorial {
    padding: 4rem 0
}

@media(min-width:768px) {
    .sec--editorial {
        padding: 6rem 0
    }
}

@media(min-width:1200px) {
    .sec--editorial {
        padding: 8rem 0
    }
}

.sec--dark {
    background: var(--g850)
}

.sec--black {
    background: var(--g900)
}

/* ═══════════ 1. HERO ═══════════ */
.scroll-container {
    position: relative;
    width: 100%;
    height: 220vh
}

@media(min-width:768px) {
    .scroll-container {
        height: 350vh
    }
}

.sticky-hero {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .6) 0%, transparent 15%, transparent 80%, rgba(0, 0, 0, .6) 100%);
}

@media(min-width:768px) {
    .overlay {
        background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, .5) 100%)
    }
}

.content-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none
}

.headline {
    position: absolute;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(25px);
    will-change: opacity, transform;
    text-shadow: 0 6px 20px rgba(0, 0, 0, .8);
    max-width: 85%;
}

@media(min-width:768px) {
    .headline {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
        max-width: 90%
    }
}

#headline-2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -.03em;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .6));
}

@media(min-width:768px) {
    #headline-2 {
        font-size: clamp(2.2rem, 5vw, 4.2rem)
    }
}

.hero-header {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem;
}

@media(min-width:768px) {
    .hero-header {
        top: 1.5rem;
        padding: 0 4vw;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-logo {
    position: relative;
    height: 22px;
}

@media(min-width:768px) {
    .hero-logo {
        height: 28px;
    }
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

@media(min-width:768px) {
    .btn-login {
        height: 40px;
        padding: 0 1.5rem;
        font-size: 0.8rem;
    }
}

/* Hero bottom bar — CTAs + subheadline */
.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 1.5rem 1.25rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
    pointer-events: auto;
}

@media(min-width:768px) {
    .hero-bottom {
        padding: 2rem 3rem 2.5rem;
        gap: 1rem
    }
}

.hero-sub {
    font-family: var(--font-body);
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    text-align: center;
    max-width: 480px;
    line-height: 1.6
}

@media(min-width:768px) {
    .hero-sub {
        font-size: .88rem;
        max-width: 520px
    }
}

.hero-ctas {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: center
}

.hero-ctas .btn-cta {
    font-size: .82rem;
    min-height: 44px;
    padding: 0 1.5rem
}

.hero-ctas .btn-ghost {
    font-size: .82rem;
    min-height: 44px;
    padding: 0 1.5rem
}

@media(min-width:768px) {

    .hero-ctas .btn-cta,
    .hero-ctas .btn-ghost {
        font-size: .88rem;
        min-height: 50px;
        padding: 0 2rem
    }
}

/* ═══════════ 2. CONVOCAÇÃO ═══════════ */
.sec--convocacao {
    padding: 3rem 0;
    background: var(--g900)
}

@media(min-width:768px) {
    .sec--convocacao {
        padding: 5rem 0
    }
}

.form-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-xl);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1), 0 8px 24px rgba(0, 0, 0, .2), 0 32px 60px rgba(0, 0, 0, .15);
    position: relative;
    overflow: hidden;
}

@media(min-width:768px) {
    .form-card {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
}

.form-card>* {
    position: relative;
    z-index: 1;
}

.form-logo {
    height: 24px;
    margin-bottom: .6rem;
    opacity: .6
}

@media(min-width:768px) {
    .form-logo {
        height: 28px;
        margin-bottom: .8rem
    }
}

.form-text .h2-impact {
    color: var(--white)
}

.form-trust {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-top: .8rem
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .74rem;
    color: rgba(255, 255, 255, .45);
    font-family: var(--font-body)
}

.trust-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0
}

.form {
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .2rem
}

.form-field label {
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-family: var(--font-body)
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: .55rem
}

@media(min-width:580px) {
    .form-row-2 {
        grid-template-columns: 1fr 1fr
    }
}

.form input,
.form select {
    width: 100%;
    min-height: 46px;
    padding: 0 .85rem;
    font-size: .88rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    color: var(--white);
    font-family: var(--font-body);
    transition: all .2s;
}

.form input::placeholder {
    color: rgba(255, 255, 255, .25)
}

.form input:focus,
.form select:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 3px rgba(15, 157, 88, .1)
}

.form select {
    -webkit-appearance: none;
    appearance: none;
    color: rgba(255, 255, 255, .4);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .8rem center;
    background-size: 16px;
}

/* ═══════════ 3. PERDA E ATRASO (editorial) ═══════════ */
.sec--editorial .body-text-accent {
    margin-top: 1.2rem
}

/* ═══════════ 4. CATEGORIA NOVA (era grid) ═══════════ */
.era-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem
}

@media(min-width:768px) {
    .era-grid {
        grid-template-columns: 1fr auto 1fr;
        gap: 2rem;
        margin-top: 3rem
    }
}

.era {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    position: relative
}

.era--old {
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .05)
}

.era--new {
    background: rgba(15, 157, 88, .04);
    border: 1px solid rgba(15, 157, 88, .12)
}

.era-label {
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 1rem
}

.era-label--green {
    color: var(--green)
}

.era-item {
    padding: .55rem 0;
    font-size: .9rem;
    color: rgba(255, 255, 255, .5);
    border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.era--new .era-item {
    color: rgba(255, 255, 255, .85)
}

.era-item:last-child {
    border-bottom: none
}

.era-divider {
    display: flex;
    align-items: center;
    justify-content: center
}

.era-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, .15);
    transform: rotate(90deg)
}

@media(min-width:768px) {
    .era-arrow {
        transform: none;
        font-size: 2rem
    }
}

/* ═══════════ 5. MANIFESTO ═══════════ */
.sec--manifesto {
    background: var(--black);
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media(min-width:768px) {
    .sec--manifesto {
        min-height: 65vh;
        padding: 6rem 0
    }
}

.manifesto-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(ellipse, rgba(15, 157, 88, .07) 0%, rgba(98, 0, 234, .04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.manifesto-h {
    font-size: 2rem;
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.06em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .5) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media(min-width:768px) {
    .manifesto-h {
        font-size: clamp(3rem, 6vw, 5rem)
    }
}

.manifesto-sub {
    font-family: var(--font-body);
    font-size: .85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .35);
    max-width: 480px;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

@media(min-width:768px) {
    .manifesto-sub {
        font-size: .95rem;
        margin-top: 2rem
    }
}

/* ═══════════ 6. PRODUTO ═══════════ */
.device-showcase {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 2rem auto 0;
    padding: 0 1.25rem;
    padding-bottom: 3rem;
}

@media(min-width:768px) {
    .device-showcase {
        margin-top: 3rem;
        padding: 0 2.5rem;
        padding-bottom: 4rem
    }
}

.device-desktop {
    position: relative;
    z-index: 1;
    width: 100%
}

.device-desktop img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3), 0 20px 50px rgba(0, 0, 0, .4)
}

.device-tablet {
    position: absolute;
    right: -2%;
    bottom: -8%;
    z-index: 2;
    width: 32%
}

.device-tablet img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.device-mobile {
    position: absolute;
    right: 16%;
    bottom: -4%;
    z-index: 3;
    width: 14%
}

.device-mobile img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
}

@media(max-width:767px) {
    .device-tablet {
        display: none
    }

    .device-mobile {
        right: 3%;
        bottom: -3%;
        width: 22%
    }

    .device-showcase {
        padding-bottom: 2rem
    }
}

.poder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .6rem;
    margin-top: 2rem
}

@media(min-width:580px) {
    .poder-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(min-width:900px) {
    .poder-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: .8rem
    }
}

.poder-item {
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, .025);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: border-color .3s;
}

.poder-item:hover {
    border-color: rgba(255, 255, 255, .12)
}

.poder-item h4 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .15rem;
    color: var(--green)
}

.poder-item p {
    font-size: .8rem;
    line-height: 1.55;
    color: var(--text-muted);
    font-family: var(--font-body)
}

/* ═══════════ 7. AGENTE IA ═══════════ */
.sec--agent {
    background: linear-gradient(180deg, var(--g900) 0%, var(--g850) 100%);
    padding: 3rem 0
}

@media(min-width:768px) {
    .sec--agent {
        padding: 6rem 0
    }
}

.agent-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center
}

@media(min-width:768px) {
    .agent-split {
        grid-template-columns: 1fr 1fr;
        gap: 3rem
    }
}

.agent-img-side {
    display: flex;
    justify-content: center
}

.agent-photo {
    width: 100%;
    max-width: 220px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(98, 0, 234, .1), 0 2px 8px rgba(0, 0, 0, .3);
    object-fit: cover;
    clip-path: inset(0 0 5% 0 round var(--radius-xl));
}

@media(min-width:768px) {
    .agent-photo {
        max-width: 380px
    }
}

.agent-text-side .h2-impact {
    color: var(--white)
}

.agent-capabilities {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
    margin-top: 1rem
}

@media(min-width:480px) {
    .agent-capabilities {
        grid-template-columns: 1fr 1fr
    }
}

.cap-item {
    padding: .7rem .85rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .02);
    line-height: 1.45;
    font-family: var(--font-body);
    transition: border-color .3s;
}

.cap-item:hover {
    border-color: rgba(255, 255, 255, .15)
}

.cap-item span {
    display: block;
    font-family: var(--font);
    font-weight: 700;
    color: var(--green);
    font-size: .82rem;
    margin-bottom: .1rem
}

/* ═══════════ 8. MOBILE SECTION ═══════════ */
.mobile-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    text-align: center
}

@media(min-width:768px) {
    .mobile-split {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 3rem
    }
}

.mobile-img {
    display: flex;
    justify-content: center
}

.mobile-img img {
    width: 100%;
    max-width: 200px;
    border-radius: var(--radius-xl);
    box-shadow: 0 16px 44px rgba(15, 157, 88, .08), 0 2px 8px rgba(0, 0, 0, .2)
}

@media(min-width:768px) {
    .mobile-img img {
        max-width: 260px
    }
}

/* ═══════════ 9. NICHOS ═══════════ */
.niche-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .8rem;
    margin-top: 1.5rem
}

@media(min-width:580px) {
    .niche-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(min-width:768px) {
    .niche-grid {
        grid-template-columns: repeat(5, 1fr);
        margin-top: 2.5rem;
        gap: .6rem
    }
}

.niche-panel {
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, .01) 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .06);
    transition: all .3s;
}

.niche-panel:hover {
    border-color: var(--purple);
    transform: translateY(-2px)
}

.niche-panel h4 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .25rem;
    color: var(--white)
}

.niche-panel p {
    font-size: .78rem;
    line-height: 1.55;
    color: var(--text-muted);
    font-family: var(--font-body)
}

/* ═══════════ 10. ROBUSTEZ ═══════════ */
.robust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .4rem;
    margin-top: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media(min-width:580px) {
    .robust-grid {
        grid-template-columns: 1fr 1fr;
        gap: .5rem .8rem
    }
}

.robust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 0;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    font-family: var(--font-body);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.robust-item:last-child {
    border-bottom: none
}

.robust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0
}

/* ═══════════ 11. SEGUNDA CONVOCAÇÃO ═══════════ */
.sec--convocacao-2 {
    background: var(--black);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media(min-width:768px) {
    .sec--convocacao-2 {
        padding: 6rem 0
    }
}

.conv2-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(15, 157, 88, .06) 0%, transparent 60%);
    pointer-events: none;
}

/* ═══════════ 12. CTA FINAL ═══════════ */
.sec--final {
    background: var(--g900);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden
}

@media(min-width:768px) {
    .sec--final {
        padding: 6rem 0 7rem
    }
}

@media(max-width:767px) {
    .sec--final {
        padding-bottom: 6rem
    }
}

.cta-logo {
    height: 32px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2
}

@media(min-width:768px) {
    .cta-logo {
        height: 38px;
        margin-bottom: 1.2rem
    }
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(15, 157, 88, .05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.cta-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 200px;
    opacity: .03;
    pointer-events: none;
    z-index: 1;
}

@media(min-width:768px) {
    .cta-watermark {
        height: 300px
    }
}

.sec--final .h2-editorial,
.sec--final .body-text,
.sec--final .btn-cta,
.sec--final .btn-ghost,
.sec--final .micro {
    position: relative;
    z-index: 2
}

.final-ctas {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: .5rem
}

/* ═══════════ STICKY CTA MOBILE ═══════════ */
.sticky-cta-mobile {
    display: none;
}

/* ═══════════ SCROLL REVEAL ═══════════ */
.sr-el {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1)
}

.sr.in-view .sr-el {
    opacity: 1;
    transform: translateY(0)
}

.sr-scale {
    opacity: 0;
    transform: scale(.94);
    transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

.sr.in-view .sr-scale {
    opacity: 1;
    transform: scale(1)
}

.sr-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1)
}

.sr.in-view .sr-left {
    opacity: 1;
    transform: translateX(0)
}

.sr-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1)
}

.sr.in-view .sr-right {
    opacity: 1;
    transform: translateX(0)
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

/* ══════════ THEME-TOGGLE E BTN-CLIENTE (ELITE UI) ══════════ */
.theme-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.btn-cliente {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-cliente:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

/* Parallax */
[data-parallax] {
    will-change: transform
}

/* Badges */
.badge-soon {
    display: inline;
    font-size: 0.75em;
    opacity: 0.35;
    font-weight: 400;
    margin-left: 4px;
    color: inherit;
}