        :root {
            --bg-dark: #000000;
            --text-light: #ffffff;
            --green-main: #00ff00;
            --green-cta: #00cc00;
            --red-alert: #cc0000;
            --font-base: 'Poppins', sans-serif;
            --max-width-page: 600px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-base);
            background-color: var(--bg-dark);
            color: var(--text-light);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            text-align: center;
            line-height: 1.6;
            padding: 0 15px;
        }

        .wrap-page {
            max-width: var(--max-width-page);
            width: 100%;
        }

        .logo-brand {
            font-size: 6rem;
            margin-bottom: 1rem;
            display: inline-block;
            text-shadow: 0 0 22px rgba(0, 255, 0, 0.75);
        }

        .title-main {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .text-body {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .text-accent {
            color: var(--green-main);
            font-weight: 700;
        }

        .box-alert {
            color: var(--text-light);
            padding: 1.5rem 1rem;
            margin: 2rem 0;
            font-size: 1.4rem;
            font-weight: 700;
            border-radius: 12px;
            box-shadow: 0 5px 18px rgba(204, 0, 0, 0.55);
            /*animation: alert-pulse 1.4s infinite ease-in-out;*/
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 600px;
            background-color: var(--green-cta);
            color: #000;
            font-weight: 700;
            text-decoration: none;
            padding: 1.2rem 2rem;
            border-radius: 90px;
            font-size: 1.6rem;
            text-transform: uppercase;
            box-shadow: 0 7px 22px rgba(0, 204, 0, 0.6);
            border: none;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            animation: btn-pulse 1.3s infinite;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0, 204, 0, 0.8);
            background-color: #009900;
        }

        .icon-arrow-right {
            margin-right: 10px;
            font-size: 1.2em;
        }

        .note-footer {
            margin-top: 3rem;
            font-size: 1.1rem;
            opacity: 0.7;
            padding-bottom: 2rem;
        }

        @keyframes alert-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.04); }
        }

        @keyframes btn-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Responsividade */
        @media (min-width: 1200px) {
            .title-main { font-size: 4.5rem; }
            .logo-brand { font-size: 7rem; }
            .text-body { font-size: 1.7rem; }
            .box-alert { font-size: 1.6rem; padding: 2rem; }
            .btn-primary { font-size: 1.8rem; padding: 1.5rem 3rem; }
        }

        @media (max-width: 1199px) and (min-width: 992px) {
            .title-main { font-size: 4rem; }
            .logo-brand { font-size: 6.5rem; }
            .text-body { font-size: 1.6rem; }
            .box-alert { font-size: 1.5rem; padding: 1.8rem; }
            .btn-primary { font-size: 1.7rem; padding: 1.4rem 2.5rem; }
        }

        @media (max-width: 991px) and (min-width: 768px) {
            .title-main { font-size: 3rem; }
            .logo-brand { font-size: 5.5rem; }
            .text-body { font-size: 1.4rem; }
            .box-alert { font-size: 1.3rem; padding: 1.5rem; }
            .btn-primary { font-size: 1.5rem; padding: 1.3rem 2rem; }
        }

        @media (max-width: 767px) and (min-width: 550px) {
            .title-main { font-size: 2.5rem; }
            .logo-brand { font-size: 4.5rem; }
            .text-body { font-size: 1.2rem; }
            .box-alert { font-size: 1.2rem; padding: 1.2rem; }
            .btn-primary { font-size: 1.4rem; padding: 1rem 1.8rem; width: 95%; }
            .note-footer { font-size: 1rem; }
        }

        @media (max-width: 549px) {
            .title-main { font-size: 2.2rem; }
            .logo-brand { font-size: 4rem; }
            .text-body { font-size: 1rem; }
            .box-alert { font-size: 1.1rem; padding: 1rem; }
            .btn-primary { font-size: 1rem; padding: 0.7rem 1.2rem; width: 100%; }
            .note-footer { font-size: 0.9rem; }
        }

        @media (max-width: 380px) {
            .title-main { font-size: 2rem; }
            .logo-brand { font-size: 3.5rem; }
            .text-body { font-size: 0.95rem; }
            .box-alert { font-size: 1rem; padding: 0.8rem; }
            .btn-primary { font-size: 0.9rem; padding: 0.6rem 1rem; }
        }