@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --font-family: "Montserrat", "Nunito", sans-serif;
    --font-size-base: 14px;
    --line-height: 1.5;

    --sh: 2px 0 10px rgba(0, 0, 0, 0.2);
    --tr: all 0.3s ease;
    --rd: 0.5rem;

    --bg: #fdfdfd;
    --bg-fs1: #f7f7f7;
    --bg-fs2: #efefef;

    --bd: #d1d1d1;
    --txt: #0a0b0e;
    --ap: #00000010;

    --primary: #FF7C00;
    --primary-txt: #FFFFFF;

    --secundary: #5A0B3A;
    --secundary-txt: #FFFFFF;
}

* {
    list-style: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

a {
    cursor: pointer;
    transition: var(--tr);
}

i,
label,
button {
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 70px;
}

html,
body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    color: var(--txt);
    background-color: var(--bg);
    transition: var(--tr);
    height: 100%;

    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}

button {
    border: 1px solid var(--bd);
    background-color: transparent;
    cursor: pointer;
    transition: var(--tr);
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-weight: 500;
    font-size: .9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;

    i {
        font-size: 1.1rem;
    }

    &:hover {
        transform: scale(1.02);
    }

    &.primary {
        background-color: var(--primary);
        border: 1px solid var(--primary);
        color: var(--primary-txt);

        &:hover {
            background-color: var(--secundary);
            color: var(--secundary-txt);
            border-color: var(--secundary);
        }
    }

    &.secundary {
        background-color: var(--secundary);
        border: 1px solid var(--secundary);
        color: var(--secundary-txt);

        &:hover {
            background-color: var(--primary);
            color: var(--primary-txt);
            border-color: var(--primary);
        }
    }

    &.high {
        padding: .75rem 1.75rem;
        font-size: 1rem;

        &:hover {
            transform: scale(1.1);
        }
    }

    &.outline {
        background-color: transparent;
        color: var(--secundary);
        border: 2px solid var(--secundary);
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);

        &:hover {
            background-color: var(--primary);
            color: var(--primary-txt);
            border-color: var(--primary);
        }
    }

    &.ghost {
        background: rgba(255, 255, 255, 0.25);
        color: #ffffff;
        border-color: #fff;

        &:hover {
            background-color: var(--primary);
            color: var(--primary-txt);
            border-color: var(--primary);
        }
    }
}



/* EVENTS */

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.whatsapp-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border-bottom-right-radius: 0;
    background-color: #25D366;
    position: fixed;
    bottom: 2rem;
    left: calc(100% - (60px + 2rem));
    z-index: 9999;
    position: fixed;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transition: var(--tr);

    &:hover {
        background-color: #29a556;
        animation: float 1s ease-in-out infinite;
    }
}


/* HEADER */

.ct-header {
    display: flex;
    justify-content: center;
    height: 70px;
    max-height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);

    .ct-header-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        max-width: 1180px;
        width: 100%;
        padding: 0 2.5rem;
    }

    .ct-header-logo {
        height: 100%;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 1rem;

        img {
            height: 50%;
            width: auto;
        }

        span {
            font-size: 1.3rem;
        }
    }

    .ct-header-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 100%),
            linear-gradient(135deg,
                rgba(253, 183, 215, 0.12) 0%,
                rgba(226, 213, 243, 0.12) 35%,
                rgba(196, 230, 247, 0.12) 70%,
                rgba(255, 210, 196, 0.12) 100%);
        padding: .5rem;
        border-radius: 1.5rem;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        border: 1px solid rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05),
            inset 0 1px 1px rgba(255, 255, 255, 0.4);
        z-index: 2;
        transition: var(--tr);

        ul {
            height: 100%;
            display: flex;
            justify-content: end;
            align-items: center;
            gap: .3rem;

            li {
                width: fit-content;
                padding: .5rem 1.2rem;
                border-radius: 1rem;
                transition: var(--tr);
                display: flex;
                align-items: center;
                justify-content: center;

                &.active {
                    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%);
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04),
                        inset 0 1px 0 rgba(255, 255, 255, 0.8);
                    color: var(--secundary);
                    font-weight: 700;
                }

                &:hover:not(.active) {
                    background-color: rgba(255, 255, 255, 0.35);
                    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
                    color: var(--primary);
                }

                a {
                    font-size: 0.8rem;
                    color: inherit;
                    transition: var(--tr);
                }
            }
        }
    }

    .ct-header-action {
        height: 100%;
        display: flex;
        justify-content: end;
        align-items: center;
    }
}


/* --- Hamburger button (hidden on desktop) --- */
.ct-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.6rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    padding: 0;
    transition: background 0.2s;
}

.ct-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ct-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ct-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ct-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile overlay --- */
.ct-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ct-mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* --- Mobile drawer --- */
.ct-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100dvh;
    background: #ffffff;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
}

.ct-mobile-menu.open {
    right: 0;
}

.ct-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;

    .ct-header-logo {
        height: 100%;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 1rem;

        img {
            height: 50%;
            width: auto;
        }

        span {
            font-size: 1.3rem;
        }
    }
}

.ct-mobile-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    color: #374151;
    transition: background 0.2s;
}

.ct-mobile-close:hover {
    background: #e2e8f0;
}

.ct-mobile-nav-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    overflow-y: auto;
}

.ct-mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.ct-mobile-nav-list li a i {
    font-size: 1.15rem;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.ct-mobile-nav-list li a:hover,
.ct-mobile-nav-list li.active a {
    background: #f5f9ff;
    color: var(--primary);
}

.ct-mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

/* --- Media query: show hamburger, hide desktop nav --- */
@media (max-width: 768px) {
    .ct-hamburger {
        display: flex;
    }

    .ct-header .ct-header-nav,
    .ct-header .ct-header-action {
        display: none !important;
    }

    .ct-header-wrapper {
        padding: 0 1.25rem;
    }

    .ct-header {
        height: 60px;
        max-height: 60px;
    }
}


/* HERO */


.ct-hero-image-container {
    position: relative;
    width: 32rem;
    height: 32rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ct-hero-image-outline {
    position: absolute;
    width: 28rem;
    height: 28rem;
    border: 2px solid var(--primary);
    border-radius: 2.5rem;
    transform: rotate(40deg);
    z-index: 1;
    pointer-events: none;
    transition: all 2s ease;
}

.ct-hero-image {
    position: absolute;
    width: 28rem;
    height: 28rem;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transform: rotate(30deg);
    z-index: 2;
    transition: all 2s ease;
}

.ct-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-30deg) scale(1.45);
    transition: all 2s ease;
}

.ct-hero-image:hover {
    transform: rotate(10deg) scale(1.03);
}

.ct-hero-image:hover img {
    transform: rotate(-10deg) scale(1.1);
}

@media (max-width: 900px) {
    .ct-hero-image-container {
        width: 260px;
        height: 260px;
        margin: 2.5rem auto 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ct-hero-image-outline {
        width: 220px;
        height: 220px;
        border-radius: 1.8rem;
    }

    .ct-hero-image {
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 1.8rem;
        border-width: 4px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .ct-hero-image img {
        transform: rotate(-30deg) scale(1.45);
    }
}

.ct-hero-wrapper {
    max-width: 1180px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;

    .ct-hero-left {
        flex: 1.5;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 1.5rem;
        z-index: 10;

        .ct-hero-badge {
            color: var(--primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.9rem;
        }

        .ct-hero-title {
            display: flex;
            flex-direction: column;
            font-size: 3.5rem;
            line-height: 1.2;
            color: var(--txt);

            #segmentos-hero {
                display: inline-block;
                width: fit-content;
                color: var(--primary);


                &::after {
                    content: '|';
                    margin-left: 5px;
                    font-weight: 200;
                    color: var(--primary);
                    -webkit-text-fill-color: var(--primary);
                    animation: blink 0.8s infinite;
                }
            }
        }

        .ct-hero-subtitle {
            font-size: 1.25rem;
            color: #4a5568;
            line-height: 1.6;
            margin: 0;
        }

        .ct-hero-actions {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid var(--bd);
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
        }
    }

    .ct-hero-form {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        border: 1px solid var(--bd);
        border-radius: 1rem;
        padding: 2rem;
        background: #ffffff;
    }

    .ct-hero-right {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
        position: relative;

        .hero-dash-composition {
            position: relative;
            width: 100%;
            max-width: 480px;
            height: 480px;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }

        .hero-glow-orb {
            position: absolute;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, rgba(99, 102, 241, 0) 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
            filter: blur(40px);
            animation: pulseGlow 4s infinite alternate;
        }

        @keyframes pulseGlow {
            0% {
                transform: translate(-50%, -50%) scale(0.9);
                opacity: 0.7;
            }

            100% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 1;
            }
        }

        .hero-main-card {
            position: relative;
            z-index: 2;
            width: 340px;
            background: #ffffff;
            border-radius: 1.5rem;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            animation: floatUpDown 6s ease-in-out infinite;
        }

        @keyframes floatUpDown {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .hero-main-header {
            display: flex;
            align-items: center;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid #f1f5f9;
        }

        .hm-dots {
            display: flex;
            gap: 6px;
            margin-right: 1rem;
        }

        .hm-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .hm-dots span:nth-child(1) {
            background-color: #ff5f56;
        }

        .hm-dots span:nth-child(2) {
            background-color: #ffbd2e;
        }

        .hm-dots span:nth-child(3) {
            background-color: #27c93f;
        }

        .hm-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-main-body {
            padding: 1.5rem;
        }

        .hm-metric {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            margin-bottom: 2rem;
        }

        .hm-metric span {
            font-size: 0.95rem;
            color: #64748b;
            font-weight: 500;
        }

        .hm-metric strong {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0f172a;
            letter-spacing: -0.5px;
        }

        .hm-trend {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-top: 0.25rem;
        }

        .hm-trend.positive {
            color: #10b981;
        }

        .hm-chart {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            height: 120px;
            padding-top: 1rem;
            border-top: 1px dashed #e2e8f0;
        }

        .hm-bar {
            flex: 1;
            background: linear-gradient(to top, var(--primary), #818cf8);
            border-radius: 4px 4px 0 0;
            opacity: 0.8;
            transition: opacity 0.3s ease;
            animation: barGrow 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            transform-origin: bottom;
            height: 0;
        }

        .hm-bar:hover {
            opacity: 1;
        }

        @keyframes barGrow {
            0% {
                height: 0;
            }

            100% {
                height: var(--bar-height);
            }
        }

        .hero-glass-card {
            position: absolute;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 1.25rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .gc-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            font-size: 1.3rem;
        }

        .gc-icon.green {
            background: #d1fae5;
            color: #10b981;
        }

        .gc-icon.purple {
            background: #ede9fe;
            color: #8b5cf6;
        }

        .gc-icon.orange {
            background: #ffedd5;
            color: #f97316;
        }

        .gc-info {
            display: flex;
            flex-direction: column;
        }

        .gc-info strong {
            font-size: 0.95rem;
            color: #0f172a;
            font-weight: 700;
        }

        .gc-info span {
            font-size: 0.85rem;
            color: #64748b;
        }

        .glass-card-1 {
            top: 40px;
            right: -20px;
            animation: floatReverse 5s ease-in-out infinite;
        }

        .glass-card-2 {
            bottom: 60px;
            left: -40px;
            animation: floatUpDown 4.5s ease-in-out infinite;
            animation-delay: 1s;
        }

        .glass-card-3 {
            bottom: 20px;
            right: 0px;
            animation: floatReverse 6s ease-in-out infinite;
            animation-delay: 2s;
        }

        @keyframes floatReverse {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(12px);
            }
        }
    }
}

@media (max-width: 900px) {
    .ct-hero-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        padding: 4rem 2rem;

        .ct-hero-image-container {
            display: none;
        }

        .ct-hero-left {
            align-items: center;
            text-align: center;
            order: 1;
        }

        .ct-hero-right {
            order: 2;
            width: 100%;
            display: flex;

            .hero-dash-composition {
                transform: scale(0.65);
                transform-origin: top center;
                margin-bottom: -150px;
            }
        }
    }
}

/*
** SEGMENTOS SECTION
*/

.ct-segmentos-wrapper {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: center;
}

.ct-segmentos-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    max-width: 650px;
}

.ct-segmentos-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ct-segmentos-header h2 strong {
    color: var(--primary);
}

.ct-segmentos-header p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
}

.ct-segmentos-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
    width: 100%;
}

.ct-bento-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.ct-bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.ct-bento-icon {
    font-size: 2rem;
    color: var(--primary);
    background: #f1f5f9;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
}

.ct-bento-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.ct-bento-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Featured Transport Card */
.featured-transport {
    grid-column: span 3;
    background: #0f172a;
    /* Escuro para destacar */
    color: #ffffff;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    border: none;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.2);
    /* subtle pattern */
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.featured-transport .ct-bento-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #38bdf8;
    width: 5rem;
    height: 5rem;
    font-size: 2.5rem;
    margin: 0;
}

.featured-transport .ct-bento-content {
    flex: 1;
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.featured-transport .ct-bento-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
}

.featured-transport .ct-bento-content p {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 600px;
}

.featured-transport button {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 1024px) {
    .ct-segmentos-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-transport {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .ct-segmentos-bento {
        grid-template-columns: 1fr;
    }

    .featured-transport {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        align-items: center;
    }

    .featured-transport .ct-bento-content {
        margin-left: 0;
        margin-top: 1.5rem;
        align-items: center;
    }

    .ct-segmentos-header h2 {
        font-size: 1.8rem;
    }
}

/*
** SOLUTIONS SECTION
*/

#solucoes {
    background: linear-gradient(135deg, #f5f9ff 0%, #eef5ff 100%);
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        top: -10%;
        left: -10%;
        background: radial-gradient(circle, rgba(255, 124, 0, 0.05) 0%, transparent 70%);
        filter: blur(80px);
        pointer-events: none;
    }

    &::after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        bottom: -10%;
        right: -10%;
        background: radial-gradient(circle, rgba(90, 11, 58, 0.04) 0%, transparent 70%);
        filter: blur(80px);
        pointer-events: none;
    }

    .ct-solucoes-sticky-wrapper {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 6rem 2.5rem;
    }

    .ct-solucoes-container {
        max-width: 1180px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 10;
        background: #ffffff;
        padding: 4rem;
        border-radius: 1rem;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
        border: 1px solid rgba(226, 232, 240, 0.8);
    }

    .ct-solucoes-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 800px;
        gap: 1.2rem;
        z-index: 10;

        .ct-solucoes-header-badge {
            display: inline-block;
            background: #0f172a;
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.4rem 1rem;
            border-radius: 2rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .ct-solucoes-header-title {
            font-size: 2.2rem;
            font-weight: 600;
            color: #0f172a;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .ct-solucoes-header-description {
            font-size: 1rem;
            color: #64748b;
            line-height: 1.5;
        }
    }

    /* Switcher Nav Container */
    .ct-solucoes-tabs-nav {
        display: flex;
        background: rgba(241, 245, 249, 0.7);
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 1rem;
        padding: 0.5rem;
        position: relative;
        max-width: 960px;
        width: 100%;
        margin: 3.5rem auto 3.5rem auto;
        gap: 0.5rem;
        z-index: 10;
        backdrop-filter: blur(8px);
    }

    /* Floating navigation pill */
    .tabs-nav-pill {
        position: absolute;
        background: #ffffff;
        border-radius: 1.1rem;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 1;
        pointer-events: none;
    }

    /* Tab Buttons */
    .tab-btn {
        background: none;
        border: none;
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        flex: 1;
        border-radius: 1rem;
        text-align: left;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: #64748b;
        position: relative;
        z-index: 2;
    }

    .tab-btn:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
    }

    .tab-btn.active:hover {
        background: none;
        transform: none;
    }

    .tab-btn i {
        font-size: 1.6rem;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .tab-btn:hover i {
        transform: translateY(-2px) scale(1.1);
    }

    .tab-btn.active {
        color: #0f172a;
    }

    .tab-btn-text {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
        pointer-events: none;
    }

    .tab-btn-text strong {
        font-size: 0.95rem;
        font-weight: 800;
        letter-spacing: -0.01em;
    }

    .tab-btn-text span {
        font-size: 0.78rem;
        opacity: 0.8;
        font-weight: 500;
    }

    /* Color variations for icons */
    .text-orange {
        color: var(--primary) !important;
    }

    .text-purple {
        color: var(--secundary) !important;
    }

    .text-dark {
        color: #0f172a !important;
    }

    /* Content Wrapper */
    .ct-solucoes-tabs-content {
        position: relative;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .tab-pane {
        display: none;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);

        .tab-pane-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4.5rem;
            align-items: center;

            &.tab-reverse {
                grid-template-columns: 0.9fr 1.1fr;

                .tab-pane-info {
                    order: 2;
                }

                .tab-pane-visual {
                    order: 1;
                }
            }

            .tab-pane-info {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                gap: 1rem;

                .pane-badge {
                    background: #0f172a;
                    color: #ffffff;
                    font-size: 0.8rem;
                    font-weight: 600;
                    padding: 0.5rem 1rem;
                    border-radius: 1rem;
                    letter-spacing: 0.05em;
                    text-transform: uppercase;
                    margin-bottom: 1rem;
                }

                .pane-title {
                    font-size: 1.8rem;
                    font-weight: 800;
                    color: #0f172a;
                    line-height: 1.2;
                    letter-spacing: -0.02em;
                }

                .pane-description {
                    font-size: 1rem;
                    color: #64748b;
                    line-height: 1.5;
                }

                .pane-features {
                    display: flex;
                    flex-direction: column;
                    gap: 1.4rem;
                    margin-top: 2.5rem;
                    margin-bottom: 2.5rem;
                    width: 100%;


                    .pane-feat-item {
                        display: flex;
                        align-items: flex-start;
                        gap: 1.2rem;
                        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
                        opacity: 0;
                        transform: translateX(-15px);
                        background: rgba(241, 245, 249, 0.7);
                        border: 1px solid rgba(226, 232, 240, 0.8);
                        border-radius: 1rem;
                        padding: 0.5rem;
                        backdrop-filter: blur(8px);

                        .feat-icon {
                            width: 3rem;
                            height: 3rem;
                            border-radius: .5rem;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            font-size: 1.35rem;
                            flex-shrink: 0;
                            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);

                            &.orange {
                                background: rgba(255, 124, 0, 0.08);
                                color: var(--primary);
                            }

                            &.purple {
                                background: rgba(90, 11, 58, 0.08);
                                color: var(--secundary);
                            }

                            &.dark {
                                background: #f1f5f9;
                                color: #0f172a;
                            }
                        }

                        .feat-desc {
                            display: flex;
                            flex-direction: column;
                            font-size: 0.9rem;
                            gap: .2rem;

                            strong {
                                color: #0f172a;
                                font-weight: 700;
                            }

                            span {
                                color: #64748b;
                                line-height: 1.4;
                            }
                        }
                    }
                }
            }
        }

        &.active {
            display: block;
            opacity: 1;
            transform: translateY(0);

            .pane-feat-item {
                opacity: 1 !important;
                transform: translateX(0) !important;
            }

            .pane-feat-item:nth-child(1) {
                transition-delay: 0.1s;
            }

            .pane-feat-item:nth-child(2) {
                transition-delay: 0.2s;
            }

            .pane-feat-item:nth-child(3) {
                transition-delay: 0.3s;
            }

            .pane-feat-item:nth-child(4) {
                transition-delay: 0.4s;
            }

            .pane-feat-item:hover {
                transform: translateX(8px) !important;
            }
        }

    }


    /* Tab Pane Grid Layout */


    .tab-pane-info h3 {
        font-size: 2.3rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 1rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    .tab-pane-info p {
        font-size: 1.12rem;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 2.2rem;
    }







    /* Visual Mockups container */
    .tab-pane-visual {
        width: 100%;
        height: 65vh;
        border-radius: 2rem;
        overflow: hidden;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        padding: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Shadows variations for Mockups */
    .shadow-orange {
        box-shadow: 0 25px 50px rgba(255, 124, 0, 0.08);
    }

    .shadow-purple {
        box-shadow: 0 25px 50px rgba(90, 11, 58, 0.08);
    }

    .shadow-dark {
        box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
    }

    /* macOS Mockup Window wrapper */
    @keyframes floatMockup {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .mockup-window {
        width: 100%;
        height: 100%;
        border-radius: 1.25rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        animation: floatMockup 6s ease-in-out infinite;
    }

    .mockup-window:hover {
        transform: scale(1.02) !important;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
        animation-play-state: paused;
    }

    .mockup-window.dark-theme {
        background: #0f172a;
        color: #f8fafc;
        border-color: rgba(255, 255, 255, 0.05);
    }

    .mockup-window.light-theme {
        background: #ffffff;
        color: #0f172a;
        border-color: rgba(226, 232, 240, 0.8);
    }

    .mockup-header {
        height: 2.75rem;
        background: rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        padding: 0 1.2rem;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mockup-window.light-theme .mockup-header {
        background: #f8fafc;
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }

    .mockup-header .dots {
        display: flex;
        gap: 0.4rem;
        position: absolute;
        left: 1.2rem;
    }

    .mockup-header .dot {
        width: 0.65rem;
        height: 0.65rem;
        border-radius: 50%;
        background: #94a3b8;
    }

    .mockup-header .dot:nth-child(1) {
        background: #ef4444;
    }

    .mockup-header .dot:nth-child(2) {
        background: #eab308;
    }

    .mockup-header .dot:nth-child(3) {
        background: #22c55e;
    }

    .mockup-header .window-title {
        margin: 0 auto;
        font-size: 0.8rem;
        color: #94a3b8;
        display: flex;
        align-items: center;
        gap: 0.3rem;
        font-family: monospace;
    }

    .mockup-body {
        flex: 1;
        padding: 1.5rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    /* POS Terminal layout */
    .pay-terminal {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        height: 100%;
        justify-content: space-between;
    }

    .pay-card {
        height: 8.5rem;
        border-radius: 1rem;
        background: linear-gradient(135deg, #FF7C00 0%, #FF9E44 100%);
        padding: 1.2rem;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: white;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(255, 124, 0, 0.2);
    }

    @keyframes glowSweep {
        0% {
            transform: translate(-30%, -30%);
        }

        50% {
            transform: translate(30%, 30%);
        }

        100% {
            transform: translate(-30%, -30%);
        }
    }

    .pay-card .card-glow {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
        pointer-events: none;
        animation: glowSweep 8s ease-in-out infinite;
    }

    .pay-card .card-brand {
        font-weight: 800;
        font-size: 1.2rem;
        letter-spacing: -0.01em;
    }

    .pay-card .card-chip {
        width: 1.75rem;
        height: 1.35rem;
        background: linear-gradient(135deg, #ffd700, #b8860b);
        border-radius: 0.25rem;
        position: relative;
    }

    .pay-card .card-number {
        font-size: 1.15rem;
        letter-spacing: 0.15em;
        font-family: monospace;
        margin: 0.4rem 0;
    }

    .pay-card .card-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.75rem;
        opacity: 0.9;
        font-family: monospace;
    }

    .pay-card .card-holder {
        text-transform: uppercase;
        font-weight: 600;
    }

    /* Transaction Feed inside POS */
    .transaction-list {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .tx-title {
        font-size: 0.85rem;
        font-weight: 700;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.2rem;
    }

    .tx-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        background: rgba(255, 255, 255, 0.02);
        padding: 0.6rem 0.8rem;
        border-radius: 0.6rem;
        border: 1px solid rgba(255, 255, 255, 0.02);
        transition: background 0.3s ease;
    }

    .tx-item:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .tx-icon {
        width: 2.2rem;
        height: 2.2rem;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .tx-icon.pix {
        background: rgba(34, 197, 94, 0.15);
        color: #22c55e;
    }

    .tx-icon.card {
        background: rgba(255, 124, 0, 0.15);
        color: #FF7C00;
    }

    .tx-icon.delivery {
        background: rgba(147, 51, 234, 0.15);
        color: #a855f7;
    }

    .tx-info {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .tx-info strong {
        font-size: 0.88rem;
        font-weight: 600;
        color: #f1f5f9;
    }

    .tx-info span {
        font-size: 0.75rem;
        color: #64748b;
    }

    .tx-amount {
        font-size: 0.95rem;
        font-weight: 700;
        font-family: monospace;
    }

    .tx-amount.positive {
        color: #22c55e;
    }

    /* ERP Dashboard mockup */
    .erp-dashboard {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        height: 100%;
        justify-content: space-between;
    }

    .erp-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    @keyframes pulseText {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.6;
        }
    }

    .stat-card {
        background: #f8fafc;
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 0.85rem;
        padding: 0.9rem;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        transition: transform 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
    }

    .stat-label {
        font-size: 0.75rem;
        color: #64748b;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .stat-value {
        font-size: 1.25rem;
        font-weight: 800;
        color: #0f172a;
    }

    .stat-value.text-danger {
        color: #ef4444;
    }

    .stat-trend {
        font-size: 0.75rem;
        font-weight: 700;
        color: #22c55e;
        display: flex;
        align-items: center;
        gap: 0.1rem;
        margin-top: 0.1rem;
    }

    .stat-alert {
        font-size: 0.7rem;
        color: #ef4444;
        font-weight: 500;
    }

    .stat-card .subtext {
        font-size: 0.8rem;
        font-weight: 500;
        color: #64748b;
    }

    /* Elegant SVG Chart */
    .chart-container {
        background: #f8fafc;
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 1rem;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .chart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.78rem;
        color: #64748b;
    }

    .chart-header strong {
        color: var(--secundary);
        font-weight: 700;
    }

    .svg-chart {
        width: 100%;
        height: auto;
        overflow: visible;
    }

    /* Fiscal Security Panel mockup */
    .fiscal-console {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: 100%;
        justify-content: space-between;
    }

    .console-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.02);
        padding: 0.6rem 1rem;
        border-radius: 0.6rem;
        border: 1px solid rgba(255, 255, 255, 0.03);
    }

    .console-row .lbl {
        font-size: 0.8rem;
        color: #94a3b8;
        font-weight: 500;
    }

    .console-row .val {
        font-size: 0.8rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .console-row .val.green {
        color: #22c55e;
    }

    /* Pulse Indicator */
    .pulse-indicator {
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%;
        background: #22c55e;
        display: inline-block;
        box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
        animation: pulse-ring 2s infinite;
    }

    @keyframes pulse-ring {
        0% {
            box-shadow: 0 0 0 0px rgba(34, 197, 94, 0.7);
        }

        70% {
            box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
        }

        100% {
            box-shadow: 0 0 0 0px rgba(34, 197, 94, 0);
        }
    }

    /* Invoice Box layout */
    .invoice-box {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 1rem;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .invoice-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 0.6rem;
        font-size: 0.85rem;
        font-weight: 700;
    }

    .invoice-header .badge {
        padding: 0.2rem 0.6rem;
        border-radius: 0.25rem;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .invoice-header .badge-success {
        background: rgba(34, 197, 94, 0.15);
        color: #22c55e;
    }

    .invoice-details {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        font-size: 0.78rem;
    }

    .detail-row {
        display: flex;
        justify-content: space-between;
    }

    .detail-row span {
        color: #64748b;
    }

    .detail-row strong {
        color: #f1f5f9;
    }

    .invoice-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 0.6rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.7rem;
        color: #64748b;
    }

    .invoice-footer i {
        font-size: 1.1rem;
    }

    /* Cloud Sync animation */
    .xml-sync {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .sync-status {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.75rem;
        color: #94a3b8;
    }

    .sync-icon {
        color: #38bdf8;
        font-size: 0.95rem;
    }

    @keyframes xmlTransfer {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(300%);
        }
    }

    /* Animated Fiscal Pipeline */
    .f-node {
        background: #0f172a;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0.8rem;
        padding: 0.8rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.3rem;
        z-index: 5;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        min-width: 110px;
        transition: transform 0.3s ease;
    }

    .f-node:hover {
        transform: scale(1.05) translateY(-50%) !important;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .f-node[style*="translateX(-50%)"]:hover {
        transform: scale(1.05) translateX(-50%) !important;
    }

    .f-node.node-core:hover {
        transform: scale(1.05) translate(-50%, -50%) !important;
    }

    .f-node i {
        font-size: 1.6rem;
    }

    .f-node span {
        font-size: 0.65rem;
        font-weight: 700;
        color: #f8fafc;
        text-transform: uppercase;
        line-height: 1.3;
        letter-spacing: 0.05em;
    }

    .core-glow {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0.8rem;
        box-shadow: 0 0 25px rgba(255, 124, 0, 0.3);
        animation: pulseText 2s infinite;
        z-index: -1;
    }

    .f-pipe {
        position: absolute;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
        z-index: 1;
        overflow: hidden;
    }

    .packet-h {
        position: absolute;
        top: -1px;
        left: 0;
        height: 4px;
        width: 40px;
        border-radius: 2px;
        animation: flowRight 2s infinite linear;
    }

    .packet-v {
        position: absolute;
        left: -1px;
        top: 0;
        width: 4px;
        height: 40px;
        border-radius: 2px;
        animation: flowDown 2s infinite linear;
    }

    @keyframes flowRight {
        0% {
            left: -40px;
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            left: 100%;
            opacity: 0;
        }
    }

    @keyframes flowDown {
        0% {
            top: -40px;
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            top: 100%;
            opacity: 0;
        }
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    #solucoes {
        height: auto !important;
    }

    #solucoes .ct-solucoes-sticky-wrapper {
        padding: 3rem 0.5rem;
        height: auto;
        position: relative;
        overflow: hidden;
    }

    #solucoes .ct-solucoes-container {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
        margin: 0;
        width: 100%;
        max-height: 100%;
        display: flex;
        flex-direction: column;
    }

    #solucoes .ct-solucoes-header-title {
        font-size: 1.6rem;
    }

    #solucoes .ct-solucoes-header-description {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    #solucoes .ct-solucoes-tabs-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
        justify-content: flex-start;
        padding: 0.4rem;
        border-radius: 1rem;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
        gap: 0.4rem;
        -ms-overflow-style: none;
        scrollbar-width: thin;
        margin: 2rem 0;
        /* Remove auto margin to fix centering overflow */
    }

    #solucoes .ct-solucoes-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    #solucoes .tab-btn {
        flex: 0 0 auto;
        padding: 0.7rem 1rem;
        gap: 0.5rem;
        border-radius: 0.7rem;
        font-size: 0.85rem;
    }

    #solucoes .tabs-nav-pill {
        display: none !important;
    }

    #solucoes .tab-btn.active {
        background: #ffffff !important;
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05) !important;
        color: #0f172a !important;
    }

    #solucoes .tab-pane-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        /* Reduce gap */
        flex: 1;
    }

    #solucoes .tab-pane-grid .tab-pane-info {
        order: 1 !important;
        width: 100%;
    }

    #solucoes .tab-pane-grid .tab-pane-visual {
        order: 2 !important;
        width: 100%;
    }

    #solucoes .tab-pane-grid.tab-reverse .tab-pane-info {
        order: 1 !important;
    }

    #solucoes .tab-pane-grid.tab-reverse .tab-pane-visual {
        order: 2 !important;
    }

    #solucoes .tab-pane-visual {
        height: 35vh;
        /* Make it smaller to fit screen */
        min-height: 250px;
        border-radius: 1rem;
        padding: 0.5rem;
    }

    #solucoes .tab-pane-info h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    #solucoes .tab-pane-info p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
}

/* END SOLUÇÕES */

/* END SOLUÇÕES — FAQ component via renderFaq() */

/* BEGIN CONTATO */

.ct-contato-card {
    display: flex;
    width: 100%;
    max-width: 900px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);

    .ct-contato-left {
        flex: 1;
        background: #0f172a;
        color: #ffffff;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        position: relative;

        .ct-contato-left-body {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;

            .ct-contato-left-title {
                font-size: 2rem;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 1rem;

                strong {
                    color: var(--primary);
                }
            }

            .ct-contato-left-subtitle {
                font-size: 1rem;
                color: #94a3b8;
                line-height: 1.6;
            }

        }

        .ct-contato-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
            border: 1px solid rgba(59, 130, 246, 0.3);
            padding: 0.4rem 1rem;
            border-radius: 2rem;
            font-size: 0.85rem;
            font-weight: 600;
            width: fit-content;
            position: absolute;
            bottom: 3rem;
            right: 3rem;
        }
    }

    .ct-contato-right {
        flex: 1;
        background: #ffffff;
        padding: 3rem;
        display: flex;
        align-items: center;

        .ct-contato-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            width: 100%;

            .ct-form-field {
                display: flex;
                flex-direction: column;
                gap: 0.4rem;

                label {
                    font-size: 0.85rem;
                    font-weight: 600;
                    color: #374151;
                    display: flex;
                    align-items: center;
                    gap: 0.2rem;

                    .required {
                        color: #ef4444;
                        font-size: 0.9rem;
                    }
                }

                input {
                    background: #f1f5f9;
                    border: 1.5px solid transparent;
                    border-radius: 0.75rem;
                    padding: 0.85rem 1.1rem;
                    font-size: 1rem;
                    color: #0f172a;
                    outline: none;
                    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
                    font-family: inherit;

                    &::placeholder {
                        color: #94a3b8;
                    }

                    &:focus {
                        border-color: var(--primary);
                        background: #ffffff;
                        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
                    }


                    &.valid {
                        border-color: #22c55e;
                        background: #f0fdf4;
                    }
                }

                .ct-field-error {
                    font-size: 0.78rem;
                    color: #ef4444;
                    font-weight: 500;
                    min-height: 1rem;
                    display: flex;
                    align-items: center;
                    gap: 0.3rem;
                    opacity: 0;
                    transform: translateY(-4px);
                    transition: opacity 0.2s, transform 0.2s;
                }

                &.error {

                    input {
                        border-color: #ef4444;
                        background: #fff5f5;
                        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
                    }

                    label {
                        color: #ef4444;
                    }

                    .ct-field-error {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
            }
        }
    }

    /* --- Success state --- */
    .ct-form-success {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: #f0fdf4;
        border: 1.5px solid #86efac;
        border-radius: 0.75rem;
        padding: 1rem 1.25rem;
        color: #15803d;
        font-weight: 600;
        font-size: 0.95rem;

        i {
            font-size: 1.4rem;
            flex-shrink: 0;
        }
    }
}

@media (max-width: 768px) {
    .ct-contato-card {
        flex-direction: column;

        .ct-contato-tag {
            position: static !important;
        }
    }
}

/* END CONTATO */

/* BEGIN FOOTER */
footer {
    width: 100%;
    min-height: 70vh;
    background-color: #333333;
    color: #f8fafc;
    transition: background-color .5s ease, color 0.8s ease;
    display: flex;
    justify-content: center;

    &.contrast {
        background-color: #0A0A18;
    }

    .ct-footer-wrapper {
        width: 100%;
        max-width: 1180px;
        padding: 4rem 2rem 2rem 2rem;
        display: flex;
        flex-direction: column;


        .ct-footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            width: 100%;
            gap: 2rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);

            .ct-footer-cta {
                flex: 1;
                max-width: 450px;
                display: flex;
                flex-direction: column;
                gap: 2rem;

                .ct-footer-cta-title {
                    font-size: 2rem;
                    font-weight: 600;
                    line-height: 1;
                    color: #f8fafc;
                }

                .ct-footer-cta-description {
                    font-size: 1rem;
                    color: #94a3b8;
                }

                .ct-footer-cta-buttons {
                    display: flex;
                    gap: 1rem;
                }


            }

            .ct-footer-menus {
                flex: 1.5;
                display: flex;
                flex-direction: column;
                gap: 2rem;
                width: 100%;

                .ct-footer-menus-header {
                    display: flex;
                    justify-content: flex-end;
                    gap: 4rem;
                    padding-bottom: 2rem;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

                    .ct-footer-social,
                    .ct-footer-login {
                        display: flex;
                        flex-direction: column;
                        align-items: flex-end;
                        gap: 0.5rem;

                        span {
                            font-size: 0.8rem;
                            font-weight: 600;
                            color: #f8fafc;
                        }

                        .social-icons {
                            display: flex;
                            gap: 1rem;
                            font-size: 1.5rem;
                            cursor: pointer;

                            a {
                                transition: var(--tr);

                                &:hover {
                                    transform: scale(1.5);
                                }
                            }

                        }
                    }
                }

                .ct-footer-nav {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
                    gap: 1rem;

                    .ct-footer-nav-col {
                        display: flex;
                        flex-direction: column;

                        .ct-footer-nav-col-title {
                            font-size: 1rem;
                            font-weight: 600;
                            margin-bottom: 1rem;
                            color: var(--primary);
                        }

                        ul {
                            display: flex;
                            flex-direction: column;
                            gap: 0.5rem;
                        }

                        a {
                            font-size: 0.9rem;
                            color: #ffffff;
                            transition: color 0.3s;

                            &:hover {
                                color: var(--primary);
                            }
                        }
                    }
                }
            }
        }

        .ct-footer-banner {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1rem;
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 2rem 0;
            width: 100%;
            backdrop-filter: blur(10px);

            .ct-footer-banner-left {
                display: flex;
                align-items: center;
                gap: 1.5rem;

                .banner-icon {
                    width: 4rem;
                    height: 4rem;
                    background: rgba(59, 130, 246, 0.1);
                    color: #3b82f6;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.5rem;
                }

                .banner-text {
                    display: flex;
                    flex-direction: column;
                    gap: .5rem;

                    .banner-text-title {
                        font-size: 1rem;
                        font-weight: 600;
                        color: #ffffff;
                    }

                    .banner-text-subtitle {
                        font-size: 0.9rem;
                        color: #94a3b8;
                    }
                }

            }
        }

        .ct-footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            width: 100%;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.8rem;
            color: #ffffff;
        }
    }
}

@media (max-width: 900px) {
    .ct-footer-top {
        flex-direction: column;
        align-items: center !important;

        .ct-footer-cta {
            align-items: center;
        }
    }

    .ct-footer-banner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;

        .ct-footer-banner-left {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
    }

    .ct-footer-menus-header {
        justify-content: center !important;
    }

    .ct-footer-nav {
        flex-wrap: wrap;
    }

    .ct-footer-bottom {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 1rem;
    }

    .ct-footer-social {
        margin-left: auto;
    }
}

/* END FOOTER */
/* =================== TAB MODULES STYLES (Refactored) =================== */
.clean-visual {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.overflow-visible {
    overflow: visible !important;
}

.showcase-container {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.showcase-fiscal {
    min-height: 600px;
    padding: 2rem 0;
    background: transparent;
}

/* Utilitários de Cores de Ícones */
.icon-bg-orange {
    background: #fff7ed !important;
    color: #ea580c !important;
}

.icon-bg-blue {
    background: #eff6ff !important;
    color: #3b82f6 !important;
}

.icon-bg-green {
    background: #f0fdf4 !important;
    color: #10b981 !important;
}

.icon-bg-purple {
    background: #faf5ff !important;
    color: #a855f7 !important;
}

.icon-bg-gray {
    background: #f8fafc !important;
    color: #64748b !important;
}

/* Grupos */
.eq-status-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.fin-row-first {
    border: none !important;
    padding-top: 0 !important;
}


section {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 900px) {
    section {
        padding-top: 80px;
        height: auto;
        min-height: 100vh;
    }
}

#hero {
    background: linear-gradient(135deg, #f5f9ff 0%, #eef5ff 100%);
    box-shadow: inset 0 -150px 200px -100px rgba(0, 0, 0, 0.04);
    overflow: visible !important;
    z-index: 5;
}

#segmentos {
    background: linear-gradient(135deg, #f5f9ff 0%, #eef5ff 100%);
    padding: 6rem 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-shadow: inset 0 -150px 200px -100px rgba(0, 0, 0, 0.04);
}

#contato {
    background: linear-gradient(135deg, #f5f9ff 0%, #eef5ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
}


/* JetBrains Mono imported at the top */

/* Monitor Mockup natively scaled to 400px */
.monitor-mockup {
    position: relative;
    width: 400px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatPdv 5s infinite ease-in-out;
}

@keyframes floatPdv {

    0%,
    100% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(5px);
    }
}

.monitor-screen-frame {
    width: 100%;
    padding: 0.75rem 0.75rem 1rem 0.75rem;
    background: #1e2022;
    border-radius: 0.75rem;
    box-shadow: 0 1rem 2rem -0.5rem rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
    border: 1px solid #333;
}

.monitor-screen-frame::before {
    content: '';
    position: absolute;
    bottom: 0.4375rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.9rem;
    height: 0.125rem;
    background: #333;
    border-radius: 0.125rem;
}

.monitor-screen-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 10;
}

.monitor-stand {
    width: 3.125rem;
    height: 1.5rem;
    background: linear-gradient(to bottom, #2a2d30, #141517);
    border-left: 1px solid #333;
    border-right: 1px solid #333;
}

.monitor-base {
    width: 7.75rem;
    height: 0.4375rem;
    background: linear-gradient(to bottom, #3a3d40, #141517);
    border-radius: 0.1875rem 0.1875rem 0 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
    border-bottom: none;
}

/* Real PDV Screen */
.real-pdv-window {
    width: 100%;
    height: 14.6875rem;
    background: #000000;
    border-radius: 0.1875rem;
    display: flex;
    flex-direction: column;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    overflow: hidden;
    position: relative;
}

.rpdv-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0.875rem;
    border-bottom: 1px solid #222;
}

.rpdv-header .op {
    color: #888;
    font-size: 0.5rem;
}

.rpdv-header .title {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: normal;
    letter-spacing: 0.0625rem;
}

.rpdv-header .time {
    color: #888;
    font-size: 0.5rem;
}

.rpdv-body {
    display: flex;
    flex: 1;
    padding: 0.5rem;
    gap: 0.5rem;
}

.rpdv-left {
    width: 2.9688rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rpdv-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.1875rem;
}

.rpdv-input-group label {
    color: #666;
    font-size: 0.5rem;
}

.rpdv-input-box {
    border: 1px solid #333;
    height: 1.125rem;
    background: #050505;
}

.rpdv-main {
    flex: 1;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    background: #050505;
}

.rpdv-th {
    display: flex;
    background: #e0e0e0;
    color: #000;
    font-size: 0.4375rem;
    font-weight: bold;
    padding: 0.25rem;
}

.rpdv-th span {
    flex: 1;
    text-align: left;
}

.rpdv-th span:nth-child(3) {
    flex: 3;
}

.rpdv-th span:nth-child(1) {
    flex: 0.5;
}

.rpdv-tr {
    display: flex;
    background: #000080;
    color: #fff;
    font-size: 0.4375rem;
    padding: 0.25rem;
    opacity: 0;
    animation: addRow 8s infinite;
}

.rpdv-tr span {
    flex: 1;
    text-align: left;
}

.rpdv-tr span:nth-child(3) {
    flex: 3;
}

.rpdv-tr span:nth-child(1) {
    flex: 0.5;
    color: #0f0;
}

@keyframes addRow {

    0%,
    20% {
        opacity: 0;
    }

    25%,
    75% {
        opacity: 1;
    }

    80%,
    100% {
        opacity: 0;
    }
}

.rpdv-footer {
    padding: 0.5rem 0.875rem 0.875rem 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.rpdv-yellow-bar {
    flex: 1;
    margin-right: 0.875rem;
}

.rpdv-yellow-bar label {
    color: #666;
    font-size: 0.5rem;
    display: block;
    margin-bottom: 0.1875rem;
}

.rpdv-yellow-input {
    background: #ffff00;
    height: 1.25rem;
    width: 100%;
    color: #000;
    font-size: 0.625rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding-left: 0.375rem;
}

.rpdv-yellow-input::after {
    content: "|";
    animation: typingBarcode 8s infinite;
}

@keyframes typingBarcode {

    0%,
    5% {
        content: "|";
    }

    10% {
        content: "78|";
    }

    15% {
        content: "789123|";
    }

    20% {
        content: "7891234560|";
    }

    25%,
    75% {
        content: "|";
    }

    80%,
    100% {
        content: "|";
    }
}

.rpdv-total-big {
    border: 1px solid #333;
    padding: 0.25rem 0.5rem;
    color: #fff;
    font-size: 1.1875rem;
    font-weight: normal;
    background: #000;
    min-width: 5.3125rem;
    text-align: right;
}

.rpdv-total-big::after {
    content: "0,00";
    animation: updateTotal 8s infinite;
}

@keyframes updateTotal {

    0%,
    24% {
        content: "0,00";
    }

    25%,
    75% {
        content: "15,90";
    }

    76%,
    100% {
        content: "0,00";
    }
}

.rpdv-tef-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    border: 2px solid #fff;
    padding: 0.875rem 1.75rem;
    text-align: center;
    color: #fff;
    font-size: 0.625rem;
    box-shadow: 0 0 0 500px rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    animation: rpdvTef 8s infinite;
    z-index: 5;
}

@keyframes rpdvTef {

    0%,
    40% {
        opacity: 0;
    }

    45%,
    75% {
        opacity: 1;
    }

    80%,
    100% {
        opacity: 0;
    }
}

.rpdv-tef-overlay::after {
    content: "AGUARDANDO TEF...";
    animation: rpdvTefText 8s infinite;
}

@keyframes rpdvTefText {

    0%,
    55% {
        content: "AGUARDANDO TEF...";
        color: #fff;
    }

    60%,
    100% {
        content: "TRANSAÇÃO APROVADA";
        color: #0f0;
    }
}

/* Floating Popups */
.vendas-popup {
    position: absolute;
    background: #ffffff;
    border: none;
    box-shadow: 0 0px 40px rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
    padding: .6rem 1.5rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    z-index: 20;
    white-space: nowrap;
    opacity: 0;
    font-family: 'Inter', sans-serif;
}

.vendas-popup strong {
    font-size: .9rem;
    color: #0f172a;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.vendas-popup span {
    font-size: .9rem;
    color: #64748b;
}

.popup-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.vendas-popup-1 {
    top: -1.25rem;
    left: -1.875rem;
    animation: vPop1 8s infinite;
}

.vendas-popup-2 {
    bottom: 3.125rem;
    right: -1.875rem;
    animation: vPop2 8s infinite;
}

.vendas-popup-3 {
    bottom: 0.625rem;
    left: -1.875rem;
    animation: vPop3 8s infinite;
}

@keyframes vPop1 {

    0%,
    5% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }

    10%,
    40% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    45%,
    100% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }
}

@keyframes vPop2 {

    0%,
    35% {
        opacity: 0;
        transform: translateX(10px) scale(0.9);
    }

    40%,
    75% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    80%,
    100% {
        opacity: 0;
        transform: translateX(10px) scale(0.9);
    }
}

@keyframes vPop3 {

    0%,
    60% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }

    65%,
    95% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }
}

@media (max-width: 768px) {
    .monitor-mockup {
        transform: scale(0.85);
        margin: 1.25rem 0;
    }

    .vendas-popup-1 {
        left: -1.875rem;
        top: -1.875rem;
    }

    .vendas-popup-2 {
        right: -1.875rem;
        bottom: 3.125rem;
    }

    .vendas-popup-3 {
        left: -1.875rem;
        bottom: 0.625rem;
    }
}


.nfce-wrapper {
    position: relative;
    z-index: 2;
    animation: floatReceipt 6s ease-in-out infinite alternate;
}

@keyframes floatReceipt {
    0% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(8px);
    }
}

.nfce-receipt {
    width: 320px;
    background: #ffffff;
    padding: 1.8rem 1.2rem;
    border-radius: 1rem;
    box-shadow: 0 0px 50px -12px rgb(0 0 0 / 40%);
    font-family: 'JetBrains Mono', 'Roboto Mono', 'Courier New', monospace;
    color: #1e293b;
    position: relative;
}

/* Torn Paper Bottom Edge using radial gradient mask */
.nfce-receipt-edge {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: radial-gradient(circle at 10px 0, transparent 10px, #ffffff 11px);
    background-size: 20px 20px;
    background-repeat: repeat-x;
}

.nfce-header {
    text-align: center;
    border-bottom: 2px dashed #e2e8f0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.nfce-items {
    font-size: 0.8rem;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
}

.nfce-total {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    font-weight: 700;
    border-bottom: 2px dashed #e2e8f0;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
}

.nfce-qrcode {
    text-align: center;
}

/* Scanner Line */
.scanner-line {
    position: absolute;
    left: -10%;
    width: 120%;
    height: 3px;
    background: #3b82f6;
    box-shadow: 0 0 15px #3b82f6, 0 0 30px #3b82f6, 0 0 45px #3b82f6;
    z-index: 10;
    border-radius: 50%;
    animation: scanMove 4s ease-in-out infinite;
    opacity: 0;
}

@keyframes scanMove {
    0% {
        top: -5%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        top: 105%;
        opacity: 1;
    }

    60% {
        opacity: 0;
        top: 105%;
    }

    100% {
        top: -5%;
        opacity: 0;
    }
}

/* Floating Popups */
.nfce-popup {
    position: absolute;
    background: #ffffff;
    border: none;
    box-shadow: 0 0px 40px rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
    padding: .6rem 1.5rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    z-index: 5;
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.9);
    font-family: 'Inter', sans-serif;
}

.popup-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.popup-text strong {
    display: block;
    font-size: .9rem;
    color: #0f172a;
    line-height: 1.2;
}

.popup-text span {
    font-size: .9rem;
    color: #64748b;
}

/* Popup Positioning & Animations */
.popup-1 {
    top: 12%;
    left: -60px;
    animation: popInLeft 4s infinite;
    z-index: 20;
}

.popup-2 {
    top: 45%;
    right: -60px;
    animation: popInRight 4s infinite;
    z-index: 20;
}

.popup-3 {
    bottom: -25px;
    left: 50%;
    animation: popInBottom 4s infinite;
    z-index: 20;
}

@keyframes popInLeft {

    0%,
    5% {
        opacity: 0;
        transform: scale(0.8) translateX(-20px);
    }

    15%,
    85% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }

    95%,
    100% {
        opacity: 0;
        transform: scale(0.8) translateX(-20px);
    }
}

@keyframes popInRight {

    0%,
    30% {
        opacity: 0;
        transform: scale(0.8) translateX(20px);
    }

    40%,
    85% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }

    95%,
    100% {
        opacity: 0;
        transform: scale(0.8) translateX(20px);
    }
}

@keyframes popInBottom {

    0%,
    50% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8) translateY(20px);
    }

    60%,
    85% {
        opacity: 1;
        transform: translateX(-50%) scale(1) translateY(0);
    }

    95%,
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8) translateY(20px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .popup-1 {
        left: -10px;
        right: auto;
    }

    .popup-2 {
        right: -10px;
        left: auto;
    }

    .nfce-receipt {
        width: 280px;
        padding: 1.4rem 1rem;
    }
}


.estoque-table {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0px 50px -12px rgb(0 0 0 / 40%);
    padding: 1.5rem;
    width: 100%;
    max-width: 420px;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
    animation: floatTab 6s infinite ease-in-out;
}

@keyframes floatTab {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.eq-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
}

.eq-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.eq-row:last-child {
    border: none;
    padding-bottom: 0;
}

.eq-prod {
    display: flex;
    align-items: center;
    gap: 14px;
}

.eq-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #64748b;
}

.eq-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.eq-sku {
    font-size: 12px;
    color: #94a3b8;
    font-family: 'JetBrains Mono', monospace;
}

.eq-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-ok {
    background: #f0fdf4;
    color: #16a34a;
}

.status-low {
    background: #fff7ed;
    color: #ea580c;
    animation: pulseAlert 2s infinite;
}

@keyframes pulseAlert {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(234, 88, 12, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
    }
}

.eq-qnt {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    width: 45px;
    text-align: right;
}

.eq-popup {
    position: absolute;
    background: #ea580c;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
    bottom: -20px;
    right: -20px;
    z-index: 5;
    animation: popEq 4s infinite;
}

@keyframes popEq {

    0%,
    10% {
        transform: scale(0.8) translateY(10px);
        opacity: 0;
    }

    20%,
    80% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    90%,
    100% {
        transform: scale(0.8) translateY(-10px);
        opacity: 0;
    }
}


.fin-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 360px;
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    animation: floatTab 6s infinite ease-in-out;
}

.fin-header {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fin-balance {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.fin-chart {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    height: 80px;
    margin-bottom: 30px;
}

.fin-bar {
    flex: 1;
    background: #f1f5f9;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.fin-bar-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0f172a;
    border-radius: 6px;
    animation: growBar 2s ease-out forwards;
}

.fin-bar:nth-child(1) .fin-bar-inner {
    height: 40%;
    background: #ef4444;
}

.fin-bar:nth-child(2) .fin-bar-inner {
    height: 60%;
    background: #22c55e;
}

.fin-bar:nth-child(3) .fin-bar-inner {
    height: 30%;
    background: #ef4444;
}

.fin-bar:nth-child(4) .fin-bar-inner {
    height: 80%;
    background: #22c55e;
}

.fin-bar:nth-child(5) .fin-bar-inner {
    height: 100%;
    background: #22c55e;
}

@keyframes growBar {
    0% {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

.fin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
}

.fin-icon-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fin-ic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.fin-ic.green {
    background: #dcfce7;
    color: #16a34a;
}

.fin-ic.red {
    background: #fee2e2;
    color: #ef4444;
}

.fin-txt {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.fin-date {
    font-size: 12px;
    color: #94a3b8;
}

.fin-val {
    font-size: 16px;
    font-weight: 800;
}

.fin-val.positive {
    color: #16a34a;
}

.fin-val.negative {
    color: #ef4444;
}

.fin-popup {
    position: absolute;
    background: #10b981;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    top: -20px;
    right: -30px;
    z-index: 5;
    animation: popFin 4s infinite;
}

@keyframes popFin {

    0%,
    10% {
        transform: scale(0.8) translateY(10px);
        opacity: 0;
    }

    20%,
    80% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    90%,
    100% {
        transform: scale(0.8) translateY(-10px);
        opacity: 0;
    }
}


.dash-mockup {
    background: #1e293b;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    color: white;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
    animation: floatTab 6s infinite ease-in-out reverse;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dash-title {
    font-size: 18px;
    font-weight: 800;
    color: #f8fafc;
}

.dash-filter {
    background: #334155;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.dash-card {
    background: #0f172a;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #334155;
}

.dc-title {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.dc-val {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.dc-perc {
    font-size: 13px;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.dash-chart-area {
    background: #0f172a;
    padding: 24px 24px 0 24px;
    border-radius: 16px;
    border: 1px solid #334155;
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
}

.d-bar {
    flex: 1;
    background: #3b82f6;
    border-radius: 6px 6px 0 0;
    animation: riseBar 1.5s ease-out forwards;
    transform-origin: bottom;
}

.d-bar:nth-child(1) {
    height: 40%;
    opacity: 0.5;
}

.d-bar:nth-child(2) {
    height: 55%;
    opacity: 0.6;
}

.d-bar:nth-child(3) {
    height: 35%;
    opacity: 0.5;
}

.d-bar:nth-child(4) {
    height: 80%;
    opacity: 0.8;
}

.d-bar:nth-child(5) {
    height: 60%;
    opacity: 0.7;
}

.d-bar:nth-child(6) {
    height: 110%;
    opacity: 1;
    background: #ea580c;
    box-shadow: 0 0 20px rgba(234, 88, 12, 0.4);
    z-index: 2;
}

@keyframes riseBar {
    0% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

.dash-floating-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #ea580c;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 15px 30px rgba(234, 88, 12, 0.3);
    animation: floatBadge 3s infinite ease-in-out;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Ajustes Mobile para as Novas Soluções */
@media (max-width: 768px) {
    .clean-visual {
        height: auto !important;
        padding: 2rem 0 !important;
    }

    .showcase-container {
        min-height: auto;
        padding: 1rem 0;
        transform: scale(0.95);
    }

    .showcase-fiscal {
        min-height: auto;
    }

    /* Estoque Mobile */
    .eq-popup {
        right: 10px !important;
        bottom: -25px !important;
        font-size: 11px !important;
        padding: 8px 16px !important;
    }

    /* Financeiro Mobile */
    .fin-popup {
        right: 10px !important;
        top: -25px !important;
        font-size: 11px !important;
        padding: 8px 16px !important;
    }

    /* Relatórios Mobile */
    .dash-floating-badge {
        left: 10px !important;
        top: -25px !important;
        font-size: 12px !important;
        padding: 8px 16px !important;
    }

    /* Evitar que os cards quebrem no mobile */
    .estoque-table,
    .fin-card,
    .dash-mockup {
        width: 95% !important;
        max-width: 100% !important;
        padding: 1.2rem !important;
    }

    .fin-balance,
    .dc-val {
        font-size: 28px !important;
    }
}



/* ═══════════════════════════════════════════
   HERO SPLIT & PREMIUM FORM COMPONENT
   ═══════════════════════════════════════════ */

.ct-hero-split {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0b0f19 0%, #111827 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Video Background de Alta Performance */
.ct-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    /* Aceleração de hardware */
}

.ct-hero-video-bg video,
.ct-hero-video-bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.ct-hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

/* Esconde em dispositivos móveis/tablets para otimizar consumo de dados e CPU */
@media (max-width: 991px) {
    .ct-hero-video-bg {
        display: none;
    }
}

/* Decoração sutil de fundo (fallback ou adicional) */
.ct-hero-split::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 124, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.ct-hero-split-wrapper {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 3;
    /* Fica acima do overlay do vídeo */
}


.ct-hero-logo {
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 2rem;

    .ct-hero-logo-by {
        position: absolute;
        top: 70%;
        right: 0;
        font-size: 0.8em;
        font-weight: 600;
        color: #ffffff;
    }

    img {
        height: 4em;
        width: auto;
    }

    span {
        font-size: 1.3em;
        color: #ffffff;
    }
}

/* Lado Esquerdo */
.ct-hero-split-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;

    .ct-hero-split-title {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--primary);
    }

    .ct-hero-split-sub {
        font-size: 1.1rem;
        color: #94a3b8;
        line-height: 1.6;
        max-width: 500px;
    }

}

/* Lado Direito - Form Card */
.ct-hero-split-right {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
    width: 100%;

    .ct-hero-form-card {
        background: #ffffff;
        border-radius: var(--rd);
        padding: 2rem;
        border: 1px solid var(--bd);
        width: 100%;
        max-width: 420px;
        display: flex;
        flex-direction: column;
        gap: 2rem;

        .ct-hero-form-header {
            display: flex;
            flex-direction: column;
            gap: 1rem;

            h2 {
                font-size: 1.5rem;
                color: #0f172a;
                line-height: 1.25;

                span {
                    color: var(--primary);
                }
            }

            p {
                font-size: 1rem;
                color: #64748b;
            }
        }

        .ct-hero-form {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;

            .ct-hf-note {
                text-align: center;
                color: #64748b;
                font-size: 0.7rem;
                margin-top: 1rem;
            }
        }
    }

}



/* Responsividade Hero */
@media (max-width: 991px) {
    .ct-hero-split {
        padding: 6.5rem 0 4rem;
        min-height: auto;
    }

    .ct-hero-split-wrapper {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .ct-hero-split-left {
        align-items: center;
        flex: 1;
    }

    .ct-hero-split-title {
        font-size: 2.2rem;
    }

    .ct-hero-split-sub {
        max-width: 100%;
    }

    .ct-hero-split-benefits {
        align-items: flex-start;
        text-align: left;
    }

    .ct-hero-split-proof {
        justify-content: center;
    }

    .ct-hero-split-right {
        justify-content: center;
        flex: 1;
    }

    .ct-hero-form-card {
        max-width: 440px;
    }
}