          * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            overflow-x: hidden;
        }

        .monitor-landing-page {
            font-family: "Urbanist", sans-serif;
            background-color: white;
              scroll-behavior: smooth;
        }

        /* =================================================================
 		 * 2. ESTILOS DE LAYOUT E UTILITÁRIOS
 		 * ================================================================= */
        
        /* --- 4.1. Seção de Navegação (Anchor Links) --- */
            .anchor-links-section {
                background-color: #ffffff;
                width: 100%;
                padding: 80px 0 0px;
                position: relative;
                z-index: 2;
                margin-top: -50px;
                border-radius: 20px 20px 0 0;
            }

            .anchor-links-section .section-block {
                margin-bottom: 0;
                padding: 0 18px;
            }

            .seo-container {
                max-width: 1196px;
                margin: auto;
                border-radius: 20px;
                border: 1px solid #e0e0e0;
                padding: 20px;
            }

            .section-pre-title {
                font-size: 18px;
                font-weight: 800;
                color: #bccf00;
                text-align: center;
                margin-bottom: 10px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .anchor-links-section .section-subtitle {
                margin-bottom: 40px;
                color: #525252;
            }

            .anchor-nav-list {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                list-style: none;
                padding: 0;
                margin: 0;
                margin-top: -20px;
            }

            .anchor-nav-list li {
                margin: 5px 10px;
            }

            .anchor-nav-list li + li::before {
                content: "|";
                color: #cccccc;
                margin-right: 15px;
                font-size: 20px;
            }

            .anchor-nav-list a {
                text-decoration: none;
                color: #525252;
                font-weight: 500;
                font-size: 18px;
                background: linear-gradient(to right, #e0e0e0, #e0e0e0), linear-gradient(to right, #bccf00, #bccf00);
                background-size: 100% 0.1em, 0 0.1em;
                background-position: 100% 100%, 0 100%;
                background-repeat: no-repeat;
                transition: 400ms;
                padding: 2px;
            }

            .anchor-nav-list a:hover,
            .anchor-nav-list a:focus {
                color: #101010;
                background-size: 0 0.1em, 100% 0.1em;
            }
        
        .main-container {
            max-width: 1440px;
            width: 100%;
            margin: 0 auto;
            padding: 0 24px;
        }

        .immersion-content {
            max-width: 1196px;
            margin: 0 auto;
            text-align: center;
        }

        .section-title {
            font-size: 35px;
            font-weight: 500;
            color: #101010;
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 20px;
            font-weight: 400;
            color: #101010;
            line-height: 1.6;
            max-width: 1198px;
            margin: 0 auto;
        }

        /* =================================================================
 		 * 3. SEÇÃO HERO
 		 * ================================================================= */
        

        .hero-section {
            height: 90vh;
            min-height: 700px;
            background-image: url("https://lojagoldentec.vteximg.com.br/arquivos/SlimMonitorBrancoePreto.jpg");
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-section .content-column {
            max-width: 55%;
            text-align: left;
        }

        .hero-section .logo-image {
            width: 120px;
            height: auto;
            margin-bottom: 24px;
            margin-top: -200px;
        }

        .hero-section .product-name {
            font-size: 50px;
            font-weight: 500;
            margin-bottom: 16px;
            color: #1e1e1e;
        }

        .hero-section .slogan {
            font-size: 100px;
            font-weight: 700;
            line-height: 0.9;
            text-transform: lowercase;
            color: #1e1e1e;
        }

        /* =================================================================
 		 * 4. SEÇÃO DE INTRODUÇÃO
 		 * ================================================================= */
        .intro-text-section {
            padding: 50px 24px;
            text-align: center;
            background-color: #ffffff;
        }

        /* =================================================================
 		 * 5. ANIMAÇÃO DO MONITOR COM SCROLL
 		 * ================================================================= */
        .scroll-container {
            height: 100vh;
            position: relative;
        }

        .sticky-wrapper {
            position: sticky;
            top: 0;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: white;
        }

        .video-monitor-container {
            position: relative;
            width: 120vmin;
            height: 67.5vmin;
            /* Proporção 16:9 */
        }

        .video-monitor-container video,
        .video-monitor-container .monitor-frame {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            animation-timeline: scroll(root);
            animation-range: 170vh 260vh;
            animation-timing-function: linear;
            animation-fill-mode: both;
        }

        .video-monitor-container video {
            object-fit: cover;
            z-index: 1;
            animation-name: zoom-out-video;
            object-position: 50% 50%;
            transform-origin: 50% 50%;
        }

        .video-monitor-container .monitor-frame {
            z-index: 2;
            pointer-events: none;
            animation-name: zoom-out-image;
            transform-origin: 50% 40%;
        }

        /* Texto animado sobre o monitor */
        .animated-text-overlay {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            text-align: center;
            pointer-events: none;
        }

        .scroll-text {
            font-size: 7vmin;
            font-weight: 700;
            color: #191919;
            line-height: 1.2;
            animation-timeline: scroll(root);
            animation-range: 170vh 260vh;
            animation-timing-function: linear;
            animation-fill-mode: both;
            animation-name: sync-scale-with-monitor;
        }

        .scroll-text .word {
            display: inline-block;
            opacity: 0;
            margin-right: 0.05em;
            animation-timeline: scroll(root);
            animation-timing-function: ease-out;
            animation-fill-mode: both;
            animation-name: fade-in-word-only;
        }

        .scroll-text .word-1 {
            animation-range: 170vh 200vh;
        }

        .scroll-text .word-2 {
            animation-range: 200vh 230vh;
        }

        .scroll-text .word-3 {
            animation-range: 230vh 270vh;
        }

        /* =================================================================
 		 * 6. SEÇÃO DE ESPECIFICAÇÕES
 		 * ================================================================= */
        .specs-section {
            background-color: transparent;
            position: relative;
            z-index: 3;
            padding: 80px 24px 40px;
            margin-top: -150px;
        }

        .specs-container {
            display: flex;
            justify-content: center;
            gap: 24px;
            max-width: 1196px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .spec-item {
            background-color: #f4f4f4;
            border-radius: 12px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 1;
            min-width: 280px;
        }

        .spec-item i {
            font-size: 32px;
            color: #333;
            width: 40px;
            text-align: center;
            flex-shrink: 0;
        }

        .spec-item-text {
            font-size: 18px;
            font-weight: 500;
            color: #101010;
        }

        /* =================================================================
 		 * 7. SEÇÕES DE SHOWCASE DE IMAGEM
 		 * ================================================================= */
        .image-showcase-section {
            padding: 24px 24px 80px;
            background-color: #ffffff;
        }

        .image-showcase-container {
            max-width: 1196px;
            margin: 40px auto 0;
        }

        .showcase-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }

        /* =================================================================
 		 * 8. COMPARADOR DE HERTZ (60Hz vs 100Hz)
 		 * ================================================================= */
        .component-layout-wrapper {
            display: grid;
            grid-template-columns: minmax(0, 560px) minmax(0, 368px);
            gap: 24px;
            align-items: start;
            width: 100%;
            max-width: 952px;
            margin: 40px auto 0;
        }

        .image-column {
            grid-column: 1/2;
        }

        .text-and-toggle-column {
            grid-column: 2/3;
        }

        .toggle-container {
            margin-bottom: 2rem;
        }

        .toggle-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 12rem;
            height: 4rem;
            background-color: #e5e7eb;
            border-radius: 9999px;
            padding: 0.5rem;
            cursor: pointer;
            position: relative;
        }

        .toggle-text-container {
            width: 50%;
            text-align: center;
            z-index: 10;
        }

        .toggle-text {
            font-size: 1.125rem;
            font-weight: 600;
            transition: color 0.3s ease-in-out;
            font-family: inherit;
        }

        .text-60hz {
            color: white;
        }

        .text-100hz {
            color: #374151;
        }

        .toggle-slider {
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            width: calc(50% - 0.5rem);
            height: calc(100% - 1rem);
            border-radius: 9999px;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            background-color: #9ca3af;
        }

        .toggle-checkbox {
            display: none;
        }

        .toggle-checkbox:checked~.text-and-toggle-column .toggle-label .toggle-slider {
            transform: translateX(100%);
            background-color: #BCCF00;
            box-shadow: 0 0 15px 4px rgba(188, 207, 0, 0.6);
        }

        .toggle-checkbox:checked~.text-and-toggle-column .toggle-label .text-100hz {
            color: white;
        }

        .toggle-checkbox:checked~.text-and-toggle-column .toggle-label .text-60hz {
            color: #4b5563;
        }

        .comparison-image-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 0.75rem;
            overflow: hidden;
            background-color: #e5e7eb;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }

        .comparison-image-60hz,
        .comparison-image-100hz {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.5s ease-in-out;
        }

        .comparison-image-container .comparison-image-100hz {
            opacity: 0;
        }

        .toggle-checkbox:checked~.image-column .comparison-image-container .comparison-image-100hz {
            opacity: 1;
        }

        .toggle-checkbox:checked~.image-column .comparison-image-container .comparison-image-60hz {
            opacity: 0;
        }

        .toggle-content-title {
            font-size: 34px;
            color: #545454;
        }

        .toggle-content-subtitle {
            font-size: 18px;
            color: #545454;
        }


        /* =================================================================
 		 * 9. SEÇÃO DE FEATURES (GRADIENTE)
 		 * ================================================================= */
        .features-section {
            background: linear-gradient(to bottom, #f4f4f4, #c4cc7f);
            overflow: hidden;
        }

        .feature-row-bleed-grid {
            display: grid;
            grid-template-columns: auto minmax(0, calc(1196px / 2)) minmax(0, calc(1196px / 2)) auto;
            align-items: stretch;
        }

        .feature-bleed-text-wrapper {
            grid-column: 2;
            padding: 80px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-bleed-image-wrapper {
            grid-column: 3 / -1;
            background-image: url('https://lojagoldentec.vteximg.com.br/arquivos/Bezels2min.png');
            background-size: cover;
            background-position: left center;
        }

        .features-section .main-container {
            margin-top: 80px;
        }

        .final-image-section {
            padding-top: 80px;
            line-height: 0;
            overflow: hidden;
        }

        .final-image-section img {
            width: 100%;
            height: auto;
            display: block;
            animation-name: zoom-in-final-image;
            animation-duration: 1s;
            animation-timing-function: linear;
            animation-fill-mode: both;
            animation-timeline: scroll(root);
            animation-range: 350vh 600vh;
            margin-top: -50px;
        }

        /* =================================================================
 		 * 10. SEÇÃO DE DESIGN ADAPTATIVO (FLICKER FREE)
 		 * ================================================================= */
        .adaptive-design-section {
            margin-top: -50px;
        }

        .adaptive-design-container {
            display: flex;
            align-items: stretch;
            gap: 24px;
            max-width: 1196px;
            margin: 60px auto 0;
        }

        .adaptive-image-column {
            flex: 2;
            display: flex;
            height: 350px;
        }

        .adaptive-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
            object-fit: cover;
        }

        .adaptive-text-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .feature-box {
            background-color: #f4f4f4;
            padding: 32px;
            border-radius: 12px;
            text-align: left;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-box h3 {
            font-size: 24px;
            font-weight: 700;
            color: #101010;
            margin-bottom: 8px;
        }

        .feature-box p {
            font-size: 16px;
            color: #545454;
        }

        /* =================================================================
 		 * 11. GALERIA DE VÍDEOS
 		 * ================================================================= */
        .video-gallery-section {
            background-color: #ffffff;
        }
        
        .video-gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            width: 100%;
            max-width: 1196px;
            margin: auto;
            padding: 0 0 24px 0;
        }

        .video-gallery .column {
            flex: 1 1 300px;
            box-sizing: border-box;
        }

        .video-container {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            background-color: #e0e0e0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease-out;
        }


        .video-container .thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.4s ease-out;
            z-index: 2;
        }

        .video-container:hover .thumbnail {
            opacity: 0;
        }

        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease-out;
            pointer-events: none;
            z-index: 1;
        }

        video::-webkit-media-controls {
            display: none !important;
        }

        .video-container:hover video {
            transform: scale(1.00);
        }

        .text-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 16px 20px 16px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            text-align: center;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0) 100%);
            color: #ffffff;
            z-index: 3;
        }

        .text-overlay .title {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0;
            transform: translateY(30px);
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .video-container:hover .title {
            transform: translateY(0);
        }

        .text-overlay .subtitle {
            font-size: 0.9rem;
            margin: 5px 0 0 0;
            opacity: 0;
            transition: opacity 0.3s 0.1s ease-out;
        }

        .video-container:hover .subtitle {
            opacity: 1;
        }

        .static-gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease-out;
        }

        .video-container:hover .static-gallery-image {
            transform: scale(1.05);
        }

/* User Manual Section */
            .user-manual-section {
                width: 100%;
                background-color: #f6f6f6;
                padding: 3rem 0; /* Padding vertical, horizontal será controlado pelo container */
            }

            .manual-container {
                max-width: 1196px;
                margin-left: auto;
                margin-right: auto;
                padding: 0 1rem; /* Padding padrão para desktop */
            }

            .manual-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .download-card {
                background-color: #ffffff;
                border-radius: 12px;
                padding: 1.5rem;
                display: flex;
                flex-direction: column;
                position: relative;
            }

            .card-icon-wrapper {
                position: absolute;
                top: 1.5rem;
                right: 1.5rem;
                color: #bccf00;
                width: 45px;
                height: 45px;
            }
            .card-icon-wrapper svg,
            .card-icon-wrapper img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                border-radius: 8px;
            }

            .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;
            }

            .btn-group {
                display: flex;
                gap: 12px; /* Espaço horizontal entre botões */
                flex-wrap: wrap; /* Permite quebra de linha se faltar espaço */
                justify-content: center; /* Centraliza o grupo no card */
            }

            /* Redefine apenas o necessário — mantém todo o resto */
            .btn-group .btn {
                flex: 1 1 0; /* Divide igualmente o espaço entre os botões */
                width: auto; /* Ignora largura fixa */
                min-width: 140px; /* Evita que fiquem estreitos demais */
                max-width: 100%; /* Não ultrapassa a largura do card */
                height: 56px; /* Mantém altura consistente */
                border-radius: 16px;
                font-size: 18px;
                font-weight: 600;
                border: 1px solid #e5e7eb;
                background-color: white;
                position: relative;
                overflow: hidden;
                color: #1f2937;
                cursor: pointer;
                text-decoration: none;
                transition:
                    transform 0.2s ease,
                    box-shadow 0.2s ease;
            }

            /* Herda o comportamento do botão original */
            .btn-group .btn:active {
                transform: translateY(0);
                box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            }

            /* Fundo animado (mesmo efeito original) */
            .btn-group .btn .bg {
                background-color: #bccf00;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512' fill='white'%3E%3Cpath d='M352 96c0-17.7-14.3-32-32-32s-32 14.3-32 32V306.7L246.6 265.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L352 306.7V96zM160 384c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H480c35.3 0 64-28.7 64-64V448c0-35.3-28.7-64-64-64H433.1l-56.6 56.6c-31.2 31.2-81.9 31.2-113.1 0L206.9 384H160zm304 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: center;
                background-size: 22px;
                border-radius: 12px;
                height: 48px;
                width: 48px;
                position: absolute;
                left: 3px;
                right: 3px;
                bottom: 3px;
                top: 3px;
                z-index: 2;
                transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            }
            
            
/* Ícone “play” (ex: ver vídeo) */
.btn-play .bg {
 
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23ffffff"><path d="M40-240q9-107 65.5-197T256-580l-74-128q-6-9-3-19t13-15q8-5 18-2t16 12l74 128q86-36 180-36t180 36l74-128q6-9 16-12t18 2q10 5 13 15t-3 19l-74 128q94 53 150.5 143T920-240H40Zm240-110q21 0 35.5-14.5T330-400q0-21-14.5-35.5T280-450q-21 0-35.5 14.5T230-400q0 21 14.5 35.5T280-350Zm400 0q21 0 35.5-14.5T730-400q0-21-14.5-35.5T680-450q-21 0-35.5 14.5T630-400q0 21 14.5 35.5T680-350Z"/></svg>') !important;

            }

/* Ícone “link externo” */
.btn-apple .bg {
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --><svg fill="%23ffffff" width="800px" height="800px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M18.71 19.5C17.88 20.74 17 21.95 15.66 21.97C14.32 22 13.89 21.18 12.37 21.18C10.84 21.18 10.37 21.95 9.09997 22C7.78997 22.05 6.79997 20.68 5.95997 19.47C4.24997 17 2.93997 12.45 4.69997 9.39C5.56997 7.87 7.12997 6.91 8.81997 6.88C10.1 6.86 11.32 7.75 12.11 7.75C12.89 7.75 14.37 6.68 15.92 6.84C16.57 6.87 18.39 7.1 19.56 8.82C19.47 8.88 17.39 10.1 17.41 12.63C17.44 15.65 20.06 16.66 20.09 16.67C20.06 16.74 19.67 18.11 18.71 19.5ZM13 3.5C13.73 2.67 14.94 2.04 15.94 2C16.07 3.17 15.6 4.35 14.9 5.19C14.21 6.04 13.07 6.7 11.95 6.61C11.8 5.46 12.36 4.26 13 3.5Z"/></svg>') !important;
}

            /* Animação de hover */
            .btn-group .btn:hover .bg {
                width: calc(100% - 6px); /* ocupa toda a largura do botão, menos as bordas */
            }
            .btn-group .btn:hover p {
                color: white;
            }

            /* Texto */
            .btn-group .btn p {
                position: relative;
                z-index: 1;
                margin: 0;
                line-height: 56px;
                transform: translateX(8px);
                transition: color 0.3s ease 0.2s;
            }

            /* Foco acessível */
            .btn-group .btn:focus-visible {
                outline: 3px solid #bccf00;
                outline-offset: 3px;
            }

            /* Download Button */
            .btn {
                background-color: white;
                text-align: center;
                width: 192px;
                height: 56px;
                border-radius: 16px;
                position: relative;
                color: #1f2937;
                font-size: 18px;
                font-weight: 600;
                border: 1px solid #e5e7eb;
                cursor: pointer;
                overflow: hidden;
                transition:
                    transform 0.2s ease,
                    box-shadow 0.2s ease;
                margin-top: 1.5rem;
                text-decoration: none;
                display: inline-block;
                align-content: center;
            }

            .btn:active {
                transform: translateY(0);
                box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            }

            .btn .bg {
                background-color: #bccf00;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512' fill='white'%3E%3Cpath d='M352 96c0-17.7-14.3-32-32-32s-32 14.3-32 32V306.7L246.6 265.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L352 306.7V96zM160 384c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H480c35.3 0 64-28.7 64-64V448c0-35.3-28.7-64-64-64H433.1l-56.6 56.6c-31.2 31.2-81.9 31.2-113.1 0L206.9 384H160zm304 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: center;
                align-content: center;
                background-size: 22px;
                border-radius: 12px;
                height: 48px;
                width: 48px;
                position: absolute;
                left: 3px;
                right: 3px;
                bottom: 3px;
                top: 3px;
                z-index: 2;
                transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .btn:hover .bg {
                width: 184px;
            }

            .btn:hover p {
                color: white;
            }

            .btn p {
                position: relative;
                z-index: 1;
                margin: 0;
                line-height: 56px;
                transform: translateX(8px);
                transition: color 0.3s ease 0.2s;
            }

            .btn:focus-visible {
                outline: 3px solid #bccf00;
                outline-offset: 3px;
            }


        /* =================================================================
 		 * 13. ANIMAÇÕES (KEYFRAMES)
 		 * ================================================================= */
        @keyframes zoom-out-video {
            from {
                transform: scale(2.5);
            }

            to {
                transform: scale(1);
            }
        }

        @keyframes zoom-out-image {
            from {
                transform: scale(3.0);
            }

            to {
                transform: scale(1.2);
            }
        }

        @keyframes sync-scale-with-monitor {
            from {
                transform: scale(2.5);
            }

            to {
                transform: scale(1);
            }
        }

        @keyframes fade-in-word-only {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes zoom-in-final-image {
            from {
                transform: scale(1.5);
            }

            to {
                transform: scale(1);
            }
        }

        /* ALTERAÇÃO ADICIONADA: Keyframes específicos para a animação do monitor no mobile */
        @keyframes zoom-out-video-mobile {
            from {
                transform: scale(5);
                /* Inicia maior (com menos zoom) */
            }

            to {
                transform: scale(1);
            }
        }

        @keyframes zoom-out-image-mobile {
            from {
                transform: scale(7);
                /* Inicia maior (com menos zoom) */
            }

            to {
                transform: scale(1.2);
            }
        }


        /* =================================================================
 		 * 14. MEDIA QUERIES (RESPONSIVIDADE)
 		 * ================================================================= */
        @media (min-width: 768px) {
            .manual-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .manual-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 1200px) {
            .hero-section .slogan {
                font-size: 80px;
            }

            .hero-section .product-name {
                font-size: 40px;
            }
        }

        @media (max-width: 992px) {
            .hero-section .content-column {
                max-width: 60%;
            }

            .section-title {
                font-size: 38px;
            }

            .section-subtitle {
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            /* Hero */
            .hero-section {
                background-image: none;
                background-color: #0b0b0b;
                height: auto;
                min-height: 0;
                display: block;
                padding-top: 40px;
                background-image: url("https://lojagoldentec.vteximg.com.br/arquivos/SlimMobHeader.jpg");

            }

            .hero-section::after {
                content: "";
                display: block;
                width: 100%;
                height: 50vh;
                background-size: cover;
                background-position: 85% 30%;
            }

            .hero-section .content-column {
                max-width: 100%;
                text-align: center;
                padding-bottom: 60px;
                align-content: center;
                margin-top: 0;
                /* Alterado para corrigir o corte */
            }
            
            .hero-section .logo-image {
                margin-top: 0;
                /* Adicionado para corrigir o corte */
            }

            .hero-section .slogan {
                font-size: 60px;
                margin-bottom: -10vh;
                max-width: 90%;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-section .product-name {
                font-size: 32px;
            }

            /* Seções Gerais */
            .section-title {
                font-size: 32px;
                margin-top: 0;
            }

            .section-subtitle {
                font-size: 18px;
                margin-bottom: 0;
            }

            /* ALTERAÇÃO ADICIONADA: Ajusta a animação de scroll (range e zoom) no mobile */
            .video-monitor-container video,
            .video-monitor-container .monitor-frame,
            .scroll-text {
                animation-range: 170vh 320vh;
                
            }

            .video-monitor-container video {
                animation-name: zoom-out-video-mobile;
            }

            .video-monitor-container .monitor-frame {
                animation-name: zoom-out-image-mobile;
            }

            .scroll-text .word-1 {
                animation-range: 170vh 200vh;
            }

            .scroll-text .word-2 {
                animation-range: 200vh 230vh;
            }

            .scroll-text .word-3 {
                animation-range: 230vh 270vh;
            }

            /* ALTERAÇÃO ADICIONADA: Ajusta o tamanho da fonte do texto animado no mobile */
            .scroll-text {
                font-size: 10vmin;
                /* Aumenta o tamanho da fonte em telas menores */
            }

            /* Seção Features */
            .feature-row-bleed-grid {
                display: flex;
                flex-direction: column;
                padding-top: 40px;
            }

            .feature-bleed-image-wrapper {
                order: 1;
                min-height: 250px;
                margin-left: 24px;
                margin-top: -40px;
            }

            .feature-bleed-text-wrapper {
                order: 2;
                padding: 24px;
                text-align: center;
            }

            .feature-bleed-text-wrapper .section-subtitle {
                text-align: center;
            }

            .component-layout-wrapper {
                display: flex;
                flex-direction: column;
                gap: 2rem;
                align-items: center;
            }

            /* ALTERAÇÃO ADICIONADA: Centraliza o conteúdo da coluna de texto e o toggle no mobile */
            .text-and-toggle-column {
                width: 100%;
                max-width: 560px;
                display: flex;
                flex-direction: column;
                align-items: center;
                /* Centraliza o toggle */
                text-align: center;
                /* Centraliza o texto */
            }

            .image-column {
                width: 100%;
                max-width: 560px;
            }


            .adaptive-design-container {
                flex-direction: column;
                gap: 24px;
            }


            .video-gallery .column {
                flex: 1 1 300px;
                box-sizing: border-box;
                padding: 0 20px 0 20px;
            }

            .specs-container {
                margin-top: -200px;
            }
        }

        @media (max-width: 480px) {
            .hero-section .slogan {
                font-size: 40px;
            }

            .hero-section .product-name {
                font-size: 24px;
            }

            .hero-section .logo-image {
                width: 100px;
            }

            .section-title {
                font-size: 28px;
                font-weight: 500;
            }

            .section-subtitle {
                font-size: 17px;
                font-weight: 500;
            }
        }
 