        /* --- RESET & BASE --- */
        :root {
            --primary: #FE8516;
            --primary-dark: #FF6A00;
            --secondary: #111827;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --border: #e2e8f0;
            --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
            --container: 1200px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        .btn {
            font-family: 'Montserrat', sans-serif;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- COMPONENTS --- */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--secondary);
            border-color: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title span {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 10px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            font-weight: 800;
        }

        /* --- HEADER --- */
        header {
            background-color: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            height: 80px;
            display: flex;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            width: 100%;
            min-height: 80px;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            height: 80px;
            max-width: 260px;
            flex-shrink: 0;
            overflow: hidden;
        }

        .logo img {
            display: block;
            max-height: 54px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
        }

        .logo i {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

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

        .login-link {
            font-weight: 600;
            color: var(--text-dark);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-nav {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: var(--white);
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-150%);
            transition: 0.3s ease;
        }

        .mobile-nav.active {
            transform: translateY(0);
        }

        .mobile-nav a {
            display: block;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            background-color: var(--secondary);
            color: var(--white);
            padding: 160px 0 180px;
            background-image:
                linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.82) 100%),
                url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            max-width: 680px;
        }

        .hero-text h1 {
            font-size: 3.4rem;
            line-height: 1.08;
            margin-bottom: 28px;
            letter-spacing: 0.4px;
        }

        .hero-text h1 span {
            color: var(--primary);
            position: relative;
            z-index: 1;
            letter-spacing: 0.8px;
            display: inline-block;
        }

        .hero-text h1 span::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 0;
            width: 100%;
            height: 14px;
            background-color: rgba(255, 69, 0, 0.25);
            z-index: -1;
            transform: skewX(-20deg);
        }

        .hero-text p {
            font-size: 1.18rem;
            line-height: 1.8;
            color: #d1d5db;
            margin-bottom: 38px;
            margin-top: 20px;
            max-width: 620px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 18px;
            margin-top: 30px;
        }

        .hero-buttons .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 54px;
            padding: 0 28px;
            text-decoration: none;
        }

        .hero-buttons .btn a {
            color: inherit;
            text-decoration: none;
        }

        .service-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .service-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: #f3f4f6;
            font-size: 0.95rem;
            line-height: 1.2;
            backdrop-filter: blur(6px);
        }

        /* Mockup Visual */
        .mockup-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            min-height: 150px;
        }

        .mockup-header-logo {
            width: 100%;
            height: auto;
            display: block;
            transform: scale(2.2) translateY(4px);
            transform-origin: center;
        }

        /* --- SETINHA --- */
        html {
            scroll-behavior: smooth;
        }

        .hero-scroll-section {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 70px;
            margin-top: 40px;
            position: relative;
            z-index: 5;
        }

        .hero-scroll-indicator {
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .hero-scroll-indicator:hover {
            transform: translateY(3px);
            opacity: 0.9;
        }

        .hero-scroll-arrow {
            width: 16px;
            height: 16px;
            border-right: 3px solid #ff7a00;
            border-bottom: 3px solid #ff7a00;
            transform: rotate(45deg);
            animation: heroArrowBounce 1.5s infinite;
        }

        @keyframes heroArrowBounce {

            0%,
            100% {
                transform: rotate(45deg) translate(0, 0);
            }

            50% {
                transform: rotate(45deg) translate(4px, 4px);
            }
        }

        @media (max-width: 768px) {
            .hero-scroll-section {
                display: none;
            }
        }

        /* --- FEATURES --- */
        .features {
            padding: 100px 0;
            background-color: var(--bg-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 8px;
            border-bottom: 4px solid transparent;
            box-shadow: var(--shadow);
            transition: 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-bottom-color: var(--primary);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background-color: #fff0eb;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 25px;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* --- SHOWCASE SECTION (NEW) --- */
        .showcase {
            padding: 100px 0;
            background-color: var(--white);
        }

        .showcase-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .showcase-image {
            position: relative;
        }

        .showcase-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            /* Filtro para ficar mais elegante */
            filter: grayscale(20%) contrast(110%);
        }

        .showcase-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            background: var(--primary);
            opacity: 0.1;
            z-index: -1;
            border-radius: 50%;
        }

        .showcase-text h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .showcase-text p {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .check-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .check-list i {
            color: var(--primary);
            background: rgba(255, 69, 0, 0.1);
            padding: 5px;
            border-radius: 50%;
        }


        /* --- CALLOUT --- */
        .callout {
            position: relative;
            background-color: var(--secondary);
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            /* Fundo com imagem de oficina */
            background-image:
                linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)),
                url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .callout h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .callout p {
            max-width: 600px;
            margin: 0 auto 40px;
            color: #d1d5db;
            position: relative;
            z-index: 2;
        }

        .callout .btn {
            position: relative;
            z-index: 2;
        }

        /* --- PRICING --- */
        .pricing {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .price-card {
            background: var(--white);
            border: 1px solid var(--border);
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            transition: 0.3s;
        }

        .price-card.featured {
            background-color: var(--secondary);
            color: var(--white);
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border: none;
            position: relative;
        }

        .featured-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--primary);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            text-transform: uppercase;
        }

        .price-header h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            font-family: 'Montserrat';
            color: var(--secondary);
        }

        .price-card.featured .price {
            color: var(--white);
        }

        .price span {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .price-card.featured .price span {
            color: #9ca3af;
        }

        .price-features {
            margin: 30px 0;
            text-align: left;
        }

        .price-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-dark);
        }

        .price-card.featured .price-features li {
            color: #d1d5db;
        }

        .check-icon {
            color: var(--primary);
        }

        /* --- FOOTER --- */
        footer {
            background-color: #111;
            color: #888;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            display: block;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .footer-col a {
            display: block;
            margin-bottom: 10px;
            transition: 0.3s;
        }

        .footer-col a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #222;
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 968px) {
            .hero {
                padding: 130px 0 120px;
                background-attachment: scroll;
                clip-path: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }

            .hero-text {
                max-width: 100%;
                margin: 0 auto;
            }

            .hero-text h1 {
                font-size: 2.8rem;
                line-height: 1.12;
                margin-bottom: 22px;
            }

            .hero-text p {
                font-size: 1.08rem;
                line-height: 1.75;
                margin: 0 auto 30px;
                max-width: 680px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .service-badges {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .showcase-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .check-list li {
                justify-content: center;
            }

            .nav-links,
            .header-actions {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .price-card.featured {
                transform: scale(1);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 110px 0 90px;
            }

            .hero-content {
                gap: 0;
            }

            .hero-text h1 {
                font-size: 2.1rem;
                line-height: 1.15;
                margin-bottom: 18px;
                letter-spacing: 0;
            }

            .hero-text h1 span {
                display: inline;
            }

            .hero-text h1 span::after {
                height: 10px;
                bottom: 4px;
            }

            .hero-text p {
                font-size: 1rem;
                line-height: 1.7;
                margin-bottom: 24px;
                max-width: 100%;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 12px;
                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
                min-height: 52px;
                padding: 0 18px;
            }

            .service-badges {
                gap: 10px;
            }

            .service-badge {
                width: 100%;
                font-size: 0.92rem;
                padding: 10px 14px;
            }

            .hero-scroll-section {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        .service-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .service-badge {
            padding: 10px 14px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.06);
            border-radius: 999px;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.92);
        }

        .steps {
            padding: 100px 0;
            background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }

        .step-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow);
        }

        .step-number {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(254, 133, 22, 0.12);
            color: var(--primary);
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 18px;
        }

        .industries {
            padding: 100px 0;
            background: var(--secondary);
            color: #fff;
        }

        .industries .section-title h2,
        .industries .section-title span {
            color: #fff;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .industry-card {
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            padding: 26px;
            border-radius: 18px;
        }

        .industry-card h3 {
            margin: 18px 0 10px;
            font-size: 1.15rem;
        }

        .industry-card p {
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.95rem;
        }

        .pricing-note {
            text-align: center;
            margin-top: 22px;
            color: var(--text-light);
        }

        @media (max-width: 992px) {

            .steps-grid,
            .industries-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .service-badges {
                justify-content: center;
            }

            .steps-grid,
            .industries-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- MICROINTERAÇÕES E ANIMAÇÕES --- */
        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        body.is-ready {
            animation: pageFadeIn 0.45s ease-out;
        }

        @keyframes pageFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        header,
        .mobile-nav,
        .logo img,
        .hero,
        .hero-text,
        .hero-visual,
        .showcase-image img,
        .service-badge,
        .feature-card,
        .industry-card,
        .step-card,
        .value-box,
        .timeline-item,
        .service-card,
        .update-item,
        .faq-card,
        .contact-card,
        .contact-info-card,
        .form-card,
        .support-card,
        .support-option,
        .status-overview,
        .status-pill,
        .btn,
        .check-list li,
        .footer-col a {
            will-change: transform, opacity;
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal[data-reveal="left"] {
            transform: translateX(-32px);
        }

        .reveal[data-reveal="right"] {
            transform: translateX(32px);
        }

        .reveal.is-visible[data-reveal="left"],
        .reveal.is-visible[data-reveal="right"] {
            transform: translateX(0);
        }

        .reveal[data-reveal="zoom"] {
            transform: translateY(18px) scale(0.985);
        }

        .reveal.is-visible[data-reveal="zoom"] {
            transform: translateY(0) scale(1);
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: auto auto 12% -6%;
            width: 340px;
            height: 340px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(254, 133, 22, 0.18) 0%, rgba(254, 133, 22, 0) 72%);
            pointer-events: none;
            filter: blur(4px);
            animation: pulseGlow 7s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 10%;
            right: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
            pointer-events: none;
            animation: pulseGlow 9s ease-in-out infinite reverse;
        }

        @keyframes pulseGlow {
            0%, 100% { transform: scale(1) translate3d(0, 0, 0); opacity: 0.75; }
            50% { transform: scale(1.08) translate3d(0, -8px, 0); opacity: 1; }
        }

        .hero-text,
        .hero-visual {
            animation: heroRise 0.8s ease-out;
        }

        .hero-visual {
            animation-name: heroFloatIn;
        }

        @keyframes heroRise {
            from { opacity: 0; transform: translateY(28px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes heroFloatIn {
            from { opacity: 0; transform: translateY(32px) scale(0.98); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .mockup-header-logo {
            animation: floatLogo 6s ease-in-out infinite;
        }

        @keyframes floatLogo {
            0%, 100% { transform: scale(2.2) translateY(4px); }
            50% { transform: scale(2.2) translateY(-8px); }
        }

        .btn,
        .feature-card,
        .industry-card,
        .step-card,
        .value-box,
        .timeline-item,
        .service-card,
        .update-item,
        .faq-card,
        .contact-card,
        .contact-info-card,
        .form-card,
        .support-card,
        .support-option,
        .status-overview,
        .showcase-image img,
        .service-badge,
        .nav-links a,
        .mobile-nav a,
        .footer-col a {
            transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease, opacity 0.28s ease;
        }

        .feature-card:hover,
        .industry-card:hover,
        .step-card:hover,
        .value-box:hover,
        .timeline-item:hover,
        .service-card:hover,
        .update-item:hover,
        .faq-card:hover,
        .contact-card:hover,
        .contact-info-card:hover,
        .support-card:hover,
        .support-option:hover,
        .status-overview:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 35px -18px rgba(17, 24, 39, 0.28);
        }

        .showcase-image img:hover {
            transform: scale(1.02);
        }

        .service-badge:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.12);
        }

        .nav-links a,
        .mobile-nav a {
            position: relative;
        }

        .nav-links a::after,
        .mobile-nav a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 2px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.24s ease;
        }

        .nav-links a:hover::after,
        .mobile-nav a:hover::after,
        .nav-links a.is-current::after,
        .mobile-nav a.is-current::after {
            transform: scaleX(1);
        }

        .nav-links a.is-current,
        .mobile-nav a.is-current {
            color: var(--primary);
        }

        header.is-scrolled {
            height: 70px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .mobile-nav {
            opacity: 0;
            pointer-events: none;
        }

        .mobile-nav.active {
            opacity: 1;
            pointer-events: auto;
        }

        @media (max-width: 991px) {
            .hero::before,
            .hero::after {
                display: none;
            }
        }
