 
        /* ---------------------------------- */
        /* 1. Global Styles & Resets          */
        /* ---------------------------------- */
        :root {
            --text-primary: #101010;
            --text-secondary: #525252;
            --text-light: #ffffff;
            --background-light: #ffffff;
            --background-grey: #f1f1f1;
            --brand-color-hover: #bccf00;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /*
         * Styles are now applied to the .page-wrapper to avoid affecting
         * the global page scope.
         */
        .page-wrapper {
            font-family: "Urbanist", sans-serif;
            background-color: var(--background-light);
        }

        /* ---------------------------------- */
        /* 2. Hero Section                    */
        /* ---------------------------------- */
        .hero-section {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            height: 90vh;
            min-height: 700px;
            background-image: url("https://lojagoldentec.vteximg.com.br/arquivos/H610-72892L1.JPG");
            background-size: cover;
            background-position: center;
            color: var(--text-light);
        }

        .hero-container {
            max-width: 1440px;
            width: 100%;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 50%;
            text-align: left;
        }

        .logo-image {
            width: 200px;
            height: auto;
            margin-bottom: 50px;
            color: var(--text-light);
            /* Initial SVG color */
            transition: color 0.3s ease-in-out;
            cursor: pointer;
        }

        .logo-image:hover {
            color: var(--brand-color-hover);
            /* SVG color on hover */
        }

        .logo-image .cls-1 {
            fill: currentColor;
            /* Applies parent color to SVG paths */
        }

        .product-name {
            font-size: 50px;
            font-weight: 500;
            margin-bottom: 0;
            margin-left: 6px;
        }

        .slogan {
            font-size: 100px;
            font-weight: 700;
            line-height: 1;
            text-transform: lowercase;
            margin-bottom: 90px;
        }

        /* ---------------------------------- */
        /* 3. Reusable Section Styles         */
        /* ---------------------------------- */
        .content-section {
            background-color: var(--background-light);
            position: relative;
            z-index: 2;
            /* Ensures content is above the hero image */
        }

        .section-block {
            max-width: 1196px;
            margin: 0 auto 80px;
            padding: 0 24px;
            text-align: center;
        }

        .section-title {
            font-size: 35px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 12px;
            margin-top: -50px;
            /* Overlaps with the section above */
            padding-top: 40px;
        }

        .section-subtitle {
            font-size: 22px;
            font-weight: 400;
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 1198px;
            margin: 0 auto;
            margin-bottom: 40px;
        }

        .section-block img,
        .section-block video {
            width: 100%;
            height: auto;
            max-width: 100%;
            border-radius: 10px;
            object-fit: cover;
        }

        .section-block .main-image {
            height: 600px;
        }


        /* ---------------------------------- */
        /* 4. Specific Section Styles         */
        /* ---------------------------------- */

        /* Media Gallery (Two-column images) */
        .media-gallery-container {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .media-item {
            flex: 1;
            max-width: 450px;
            min-width: 280px;
            text-align: center;
        }

        .media-item img {
            aspect-ratio: 1 / 1;
            background-color: #e8e8e8;
            margin-bottom: 16px;
        }

        .media-caption {
            font-size: 16px;
            font-weight: 400;
            color: #646464;
            line-height: 1.6;
            max-width: 350px;
            margin: 0 auto;
        }

        /* Features Section (Mosaic Grid) */
        .features-section {
            background-color: var(--background-grey);
            margin-top: 40px;
            padding: 40px 20px;
        }

        .features-container {
            max-width: 1196px;
            width: 100%;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .feature-card {
            background-color: var(--background-light);
            border-radius: 16px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid #e5e7eb;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            /* 24px */
            font-weight: 700;
            color: #111827;
            margin: 0 0 8px;
        }

        .feature-card p {
            font-size: 1rem;
            /* 16px */
            color: #4b5563;
            line-height: 1.6;
            margin: 0;
        }

        .card-image {
            text-align: center;
            margin-top: 24px;
        }

        .card-image img {
            height: auto;
            object-fit: contain;
        }

        /* Mosaic layout adjustments */
        .feature-card.top-left {
            grid-column: 1 / 3;
        }

        .feature-card.top-right {
            grid-column: 3 / 4;
        }

        .feature-card.bottom-left {
            grid-column: 1 / 2;
        }

        .feature-card.bottom-right {
            grid-column: 2 / 4;
        }

        /* ---------------------------------- */
        /* 5. Responsive Design               */
        /* ---------------------------------- */

        @media (max-width: 1200px) {
            .slogan {
                font-size: 75px;
            }

            .product-name {
                font-size: 40px;
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                max-width: 70%;
            }

            .section-title {
                font-size: 38px;
            }

            .section-subtitle,
            .media-caption {
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                height: 92vh;
                min-height: 600px;
                align-items: flex-start;
                padding-top: 20px;
                background-image: url("https://lojagoldentec.vteximg.com.br/arquivos/H610-72892L1-MOB.jpg");
                background-color: #0b0b0b;
                background-position: 75% 75%;
                background-attachment: scroll;
                /* Important for mobile */
                margin-bottom: -50px;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .logo-image {
                margin: 0 auto 20px;
            }

            .slogan {
                font-size: 55px;
                margin-bottom: 0;
                max-width: 90%;
                margin-left: auto;
                margin-right: auto;
            }

            .product-name {
                font-size: 32px;
            }

            .section-title {
                font-size: 32px;
                margin-top: -35px;
            }

            .section-subtitle,
            .media-caption {
                font-size: 18px;
            }

            .section-block .main-image,
            .section-block img {
                height: 300px;
            }

            /* Stack feature cards */
            .features-grid {
                grid-template-columns: 1fr;
            }

            .feature-card.top-left,
            .feature-card.top-right,
            .feature-card.bottom-left,
            .feature-card.bottom-right {
                grid-column: auto;
            }

            .feature-card {
                padding: 24px;
            }

            .feature-card h3 {
                font-size: 1.25rem;
            }
        }
        
         /* =================================================================
 		 * 12. SEÇÃO MANUAL DO USUÁRIO
 		 * ================================================================= */
        .user-manual-section {
            width: 100%;
            background-color: #F9FAFB;
            padding: 3rem 1rem;
        }

        .manual-container {
            max-width: 1196px;
            margin-left: auto;
            margin-right: auto;
        }

        .manual-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .download-card {
            background-color: #ffffff;
            border-radius: 12px;
            border: 1px solid #E5E7EB;
            box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            transition: box-shadow 0.3s ease;
        }

        .card-content {
            flex-grow: 1;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
            margin: 0 0 0.5rem 0;
        }

        .card-info {
            font-size: 0.875rem;
            color: #4B5563;
            margin: 0;
            line-height: 1.5;
        }

        .card-info.last {
            margin-bottom: 1rem;
        }

        .card-language {
            font-size: 0.875rem;
            color: #1F2937;
            font-weight: 600;
            margin: 0;
        }

        .download-button {
            margin-top: 1.5rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.625rem 1.25rem;
            border: 1px solid #9CA3AF;
            font-size: 0.875rem;
            font-weight: 500;
            color: #1F2937;
            background-color: #ffffff;
            border-radius: 9999px;
            text-decoration: none;
            width: fit-content;
            transition: background-color 0.3s ease;
        }

        .download-button:hover {
            background-color: #BCCF00;
        }

        .download-button i {
            margin-left: 0.5rem;
        }


        /* UPDATED STYLES: Desktop layout for specific feature cards */
        @media (min-width: 769px) {

            .feature-card.top-left,
            .feature-card.bottom-right {
                flex-direction: row;
                align-items: center;
                gap: 32px;
                /* Add space between text and image */
            }

            .feature-card.top-left .card-text,
            .feature-card.bottom-right .card-text {
                flex: 1;
                /* Allow text to take up remaining space */
                text-align: left;
                /* Align text to the left */
            }

            .feature-card.top-left .card-image,
            .feature-card.bottom-right .card-image {
                flex-basis: 45%;
                /* Define a base size for the image container */
                margin-top: 0;
                /* Reset margin from the column layout */
            }
        }

        @media (max-width: 480px) {
            .logo-image {
                width: 100px;
            }

            .slogan {
                font-size: 40px;
            }

            .product-name {
                font-size: 24px;
            }

            .section-title {
                font-size: 28px;
                font-weight: 500;
                margin-top: -50px;
            }

            .section-subtitle,
            .media-caption {
                font-size: 16px;
            }
        }
    