  .hero-banner {
            /* Propriedades solicitadas */
            background: #000000;
            padding: 48px;
            border-radius: 16px;
            text-align: center;

            /* Fonte moderna */
            font-family: 'Montserrat', sans-serif;

            /* Imagem de Fundo Bíblica com sobreposição escura */
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                              url('https://images.squarespace-cdn.com/content/v1/6138f22e60e378103aa7f738/78fac6b7-bb60-4170-8cca-dabae9ac10ea/fundo.jpg');
            background-size: cover;
            background-position: center;
            
            /* Responsividade */
            width: 95%;
            max-width: 850px;
            margin: 40px auto;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            border: 1px solid rgba(255, 209, 102, 0.2); /* Borda sutil dourada */
        }

        .hero-title {
            color: #ffffff;
            font-size: clamp(22px, 5vw, 38px);
            margin: 0 0 28px 0;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px; /* Estética de título moderno */
            line-height: 1.1;
        }

        .btn-jogue {
            background-color: #ffd166;
            color: #000;
            padding: 18px 45px;
            border-radius: 12px; /* Botão levemente quadrado para ser mais moderno */
            text-decoration: none;
            font-weight: 900;
            font-size: 18px;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(255, 209, 102, 0.3);
        }

        .btn-jogue:hover {
            transform: translateY(-3px);
            background-color: #ffffff;
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
        }

        @media (max-width: 480px) {
            .hero-banner {
                padding: 40px 20px;
            }
        }