        .container-meio {
           
            background: linear-gradient(135deg, #f5f7fa 0%, #e4f0fb 100%);
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .game-container {
            max-width: 800px;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .game-header {
            background: linear-gradient(90deg, #af4c4c, #c34a4a);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .game-header h2 {
            margin: 0;
            font-size: 28px;
            font-weight: 600;
        }

        .game-content {
            padding: 20px;
            text-align: center;
            position: relative;
            min-height: 400px;
            background-position: center;
            border-radius: 0 0 20px 20px;
        }

        .target-display {
            background: rgba(255, 255, 255, 0.8);
            display: inline-block;
            padding: 10px 20px;
            border-radius: 50px;
            margin-bottom: 20px;
            font-size: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .treasure-object {
            position: absolute;
            width: 60px;
            height: 60px;
            font-size: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: float 3s infinite alternate;
        }

        .treasure-object:hover {
            transform: scale(1.2) rotate(15deg);
        }

        @keyframes float {
            from { transform: translateY(0); }
            to { transform: translateY(-10px); }
        }

        .game-footer {
            background: #f9f9f9;
            padding: 20px;
            border-top: 1px solid #eee;
        }

        .details-container {
            margin-bottom: 20px;
        }

        details {
            background: white;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        summary {
            font-weight: 600;
            cursor: pointer;
            outline: none;
            color: #af4c4c;
        }

        .details-content {
            margin-top: 10px;
            color: #555;
            line-height: 1.5;
        }

        .btn-voltar {
            background: linear-gradient(135deg, #af4c4c, #c34a4a);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(175, 76, 76, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .btn-voltar:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(175, 76, 76, 0.4);
        }

        .win-message {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .win-message.active {
            opacity: 1;
            visibility: visible;
        }

        .win-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .win-emoji {
            font-size: 60px;
            margin-bottom: 20px;
            animation: bounce 1s infinite alternate;
        }

        @keyframes bounce {
            from { transform: translateY(0); }
            to { transform: translateY(-15px); }
        }

        @media (max-width: 600px) {
            .treasure-object {
                width: 50px;
                height: 50px;
                font-size: 30px;
            }
        }

                /* Estilos específicos para o boneco no caça ao tesouro */
        .assistant-tesouro {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .assistant-tesouro:hover {
            transform: scale(1.05);
        }
        
        .assistant-tesouro img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        
        .assistant-tesouro.talking img {
            animation: talk 0.3s infinite alternate;
        }
        
        .assistant-speech-tesouro {
            position: absolute;
            bottom: 100%;
            right: 0;
            background: white;
            padding: 12px 16px;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            margin-bottom: 15px;
            max-width: 220px;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            line-height: 1.4;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            border: 2px solid #FF9800;
        }
        
        .assistant-speech-tesouro.active {
            opacity: 1;
            visibility: visible;
        }
        
        .assistant-speech-tesouro::after {
            content: '';
            position: absolute;
            top: 100%;
            right: 20px;
            border-width: 8px;
            border-style: solid;
            border-color: white transparent transparent transparent;
        }
        
        .assistant-mouth-tesouro {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 8px;
            background: #ff6b6b;
            border-radius: 50%;
            display: none;
            animation: mouth-move 0.3s infinite alternate;
        }
        
        /* Cenário do pomar */
        .scenario {
            position: relative;
            width: 100%;
            height: 500px;
            background-image: url("https://i.pinimg.com/736x/67/9e/3c/679e3ce2378fba1740a080bab366aa0a.jpg");
            background-repeat: no-repeat;
              background-size: 100% !important;
            border-radius: 15px;
            overflow: hidden;
            margin: 20px 0;
            border: 3px solid #8B4513;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .scenario::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: 50px 50px, 30px 30px, 20px 20px;
        }
        
        /* Árvores frutíferas */
        .fruit-tree {
            position: absolute;
            bottom: 0;
            width: 80px;
            height: 150px;
            z-index: 1;
        }
        
        .tree-trunk {
            position: absolute;
            bottom: 0;
            left: 35px;
            width: 10px;
            height: 80px;
            background: #8B4513;
            border-radius: 5px;
        }
        
        .tree-top {
            position: absolute;
            bottom: 60px;
            left: 10px;
            width: 60px;
            height: 70px;
            background: #228B22;
            border-radius: 50%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-content: space-around;
            padding: 10px;
        }
        
        /* Arbustos com frutas */
        .fruit-bush {
            position: absolute;
            bottom: 0;
            width: 60px;
            height: 40px;
            background: #32CD32;
            border-radius: 50%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-content: space-around;
            padding: 5px;
            z-index: 2;
        }
        
        /* Frutas no chão */
        .ground-fruit {
            position: absolute;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
            animation: subtle-float 4s infinite alternate ease-in-out;
        }
        
        .ground-fruit:hover {
            transform: scale(1.3);
            z-index: 20;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
        }
        
        .ground-fruit.target-found {
            animation: celebrate 1s ease-in-out;
            transform: scale(1.5);
        }
        
        .ground-fruit.wrong-choice {
            animation: shake 0.5s ease-in-out;
        }
        
        /* Cestas no chão */
        .basket {
            position: absolute;
            font-size: 35px;
            z-index: 1;
            bottom: 10px;
        }
        
        /* Pedras e outros elementos */
        .rock {
            position: absolute;
            font-size: 30px;
            bottom: 0;
            z-index: 1;
        }
        
        .leaf-pile {
            position: absolute;
            font-size: 25px;
            bottom: 0;
            z-index: 1;
        }
        
        /* Animações */
        @keyframes talk {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }
        
        @keyframes mouth-move {
            0% { height: 4px; }
            100% { height: 8px; }
        }
        
        @keyframes subtle-float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-3px) rotate(2deg); }
        }
        
        @keyframes celebrate {
            0% { transform: scale(1); }
            50% { transform: scale(2) rotate(20deg); }
            100% { transform: scale(1.5) rotate(0deg); }
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
            20%, 40%, 60%, 80% { transform: translateX(3px); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Destaque para o alvo */
        .target-highlight {
            animation: pulse 2s infinite;
            border: 2px solid gold;
            border-radius: 50%;
            padding: 2px;
        }