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

        body {
            /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;*/
            font-family: "Montserrat", sans-serif;
            font-optical-sizing: auto;
            font-weight: 500;
            font-style: normal;

            background-image:url('images/bg-tela-abertura.png');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;

            /*
                width: 1080px;
                height: 1920px;
            */

        }

        /* Disable pointer events and dim button during AJAX submission */
        .wpcf7 form.submitting .wpcf7-submit {
            pointer-events: none;
            opacity: 0.6;
            cursor: not-allowed;
        }

        #page_reload{
            width: 100px;
            height: 100px;
            font-size: 40px;
            opacity: 0.3;
            position: absolute;
            right: 0;
            top:0px;
            z-index: 999999;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
        }

        .capa-header{
            font-size: 60px;
            max-width: 830px;
            text-align: center;
            margin-bottom: 74px;
        }

        .logoTopo{
            position: absolute;
            top:115px;
            left: 50%;
            margin-left: -275px;
        }

        .logoRodape{
            position: absolute;
            bottom:115px;
            left: 50%;
            margin-left: -75px;
        }

        .screen {
            display: none;
            width: 100%;
            height: 100vh;
        }

        .screen.active {
            display: flex;
        }

        /* Registration Screen */
        #registrationScreen {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding:300px 20px;
        }

        .registration-card {
            /*background: rgba(30, 41, 59, 0.8);*/
            border: 1px solid #5B9170;
            border-radius: 20px;
            padding: 60px 50px;
            width: 800px;
            
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .registration-icon {
            font-size: 80px;
            margin-bottom: 20px;
        }

        .registration-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #ffffff;
            margin: auto;
        }

        .registration-subtitle {
            font-size: 36px;
            color: #cbd5e1;
            margin-bottom: 30px;
            max-width: 460px;
            margin: auto;
            margin-bottom: 70px;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-label {
            font-size: 32px;
            color: #cbd5e1;
            margin-bottom: 12px;
            display: block;
        }

        .form-input {
            width: 100%;
            height: 120px;
            font-size: 32px;
            padding: 18px 32px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            color: white !important;
        }

        .form-input:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(0, 0, 0, 0.3);
        }

        .start-btn {
            width: 100%;
            padding: 18px;
            height: 120px;
            font-size: 32px;
            border-radius: 14px;
            border: none;
            color: #000;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .start-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
        }

        .start-btn:active {
            transform: scale(0.98);
        }

        .start-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Countdown Screen */
        #countdownScreen {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            /*background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);*/
        }

        .countdown-number {
            font-size: 120px;
            font-weight: bold;
            color: #ffffff;
            animation: pulse 1s ease-in-out;
            /*color: #FFFFFF;*/
        }

        .game-footer{
            background-color: #568949;
            border-radius: 60px;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom-left-radius:0px;
            border-bottom-right-radius:0px;
        }

        @keyframes pulse {
            0% { transform: scale(0.5); opacity: 0; }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Game Screen */
        #gameScreen {
            flex-direction: column;
        }

        .game-header {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            border-bottom: 1px solid rgba(71, 85, 105, 0.3);
        }

        .game-timer {
            text-align: center;
            font-size: 48px;
            font-weight: bold;
            color: #FFF;
        }

        .progress-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .progress-bar {
            flex: 1;
            height: 12px;
            background: rgba(51, 65, 85, 0.6);
            border-radius: 6px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #FFFFFF 0%, #14b8a6 100%);
            width: 0%;
            transition: width 0.3s ease;
        }

        .progress-fill.success {
            background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
        }

        .progress-text {
            font-size: 14px;
            color: #94a3b8;
            min-width: 80px;
            text-align: right;
        }

        .game-canvas {
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .floating-item {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
            font-size: 12px;
            color: white;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
            transition: transform 0.1s ease;
            user-select: none;
            background-size: cover;
            background-position: center;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .floating-item:hover {
            transform: scale(1.1);
        }

        .floating-item:active {
            transform: scale(0.95);
        }

        .floating-item.positive {
            /*border-color: rgba(16, 185, 129, 0.5);*/
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
        }

        .floating-item.negative {
            /*border-color: rgba(239, 68, 68, 0.5);*/
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
        }

        .item-label {
            background: rgba(0, 0, 0, 0.7);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            text-align: center;
            visibility: hidden;
        }

        /* Result Screen */
        #resultScreen {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .result-card {
            /*background: rgba(30, 41, 59, 0.8);*/
            /*border: 1px solid rgba(71, 85, 105, 0.5);*/
            border: 1px solid #5B9170;
            border-radius: 20px;
            padding: 40px 30px;
            max-width: 800px;
            width: 100%;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .result-icon {
            font-size: 80px;
            margin-bottom: 20px;
        }

        .result-message {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .result-submessage {
            font-size: 28px;
            color: #cbd5e1;
            margin-bottom: 30px;
        }

        .result-score {
            background: rgba(51, 65, 85, 0.6);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .result-score-value {
            font-size: 86px;
            font-weight: bold;
            color: #FFFFFF;
            margin-bottom: 8px;
        }

        .result-score-label {
            font-size: 26px;
            color: #94a3b8;
        }

        .result-buttons {
            display: flex;
            gap: 12px;
        }

        .wpcf7-not-valid-tip{
            color: #dcbc32;
            position: absolute;
            right: 0px;
            font-size: 20px;
        }
        .wpcf7 form .wpcf7-response-output{
            position: absolute;
            font-size: 22px;
            text-align: center;
            white-space: normal;
            width: 780px;
            padding: 20px 120px;
            border-radius: 20px;
            margin: 0px;
        }

        .result-btn {
            flex: 1;
            /*padding: 12px;
            font-size: 16px;*/
            padding: 18px;
            height: 120px;
            font-size: 32px;
            border-radius: 14px;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(71, 85, 105, 0.5);
        }

        .back-btn {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: 1px solid rgba(0, 0, 0, 0.7);
        }

        .back-btn:hover {
            background: rgba(71, 85, 105, 0.7);
        }

        .replay-btn {
            /*background: linear-gradient(135deg, #FFFFFF 0%, #14b8a6 100%);*/
            background: #fff;
            color: #000000;
        }

        .replay-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
        }

        .feedback {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 48px;
            pointer-events: none;
            animation: floatUp 1s ease-out forwards;
            z-index: 1000;
        }

        @keyframes floatUp {
            0% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -150%) scale(1.5);
            }
        }

        @media (max-width: 480px) {
            .registration-card {
                padding: 30px 20px;
            }

            .result-card {
                padding: 30px 20px;
            }

            .game-timer {
                font-size: 36px;
            }

            .countdown-number {
                font-size: 80px;
            }
        }
