* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #0d0c0a url('bg.webp') no-repeat center center fixed;
            background-size: cover;
            color: #d1c7bd;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
        }

        /* Camada escura sobre o fundo para dar destaque ao card */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(13, 12, 10, 0.65);
            z-index: 1;
        }

        .container {
            position: relative;
            z-index: 2;
            max-width: 580px;
            width: 100%;
            background: rgba(22, 21, 26, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 48px 36px;
            border-radius: 16px;
            border: 1px solid rgba(224, 182, 103, 0.25);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8),
                0 0 30px rgba(224, 182, 103, 0.08);
            text-align: center;
        }

        .badge {
            background: rgba(224, 182, 103, 0.12);
            color: #e0b667;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 24px;
            border: 1px solid rgba(224, 182, 103, 0.3);
        }

        h1 {
            font-family: 'Cinzel', serif;
            color: #f4eae1;
            font-size: 2.5rem;
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        p {
            color: #b0a89e;
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 32px;
            font-weight: 300;
        }

        .ex {
            color: #e0b667;
            font-weight: 600;
        }

        /* Estilo do Botão WhatsApp */
        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: #ffffff;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-decoration: none;
            padding: 14px 28px;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }

        .btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            background: linear-gradient(135deg, #28e16d 0%, #149c8c 100%);
        }

        /* Estrutura do Loader com Brilho e Símbolo */
        .loader-wrapper {
            position: relative;
            width: 90px;
            height: 90px;
            margin: 20px auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Anel Externo Giratório */
        .loader-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid rgba(224, 182, 103, 0.15);
            border-top: 2px solid #e0b667;
            border-right: 2px solid rgba(224, 182, 103, 0.6);
            animation: spin 1.8s linear infinite;
            box-shadow: 0 0 15px rgba(224, 182, 103, 0.2);
        }

        /* Símbolo Esquadro e Compasso Estático no Centro */
        .masonic-icon {
            width: 42px;
            height: 42px;
            stroke: #e0b667;
            fill: none;
            stroke-width: 1.5;
            filter: drop-shadow(0 0 10px rgba(224, 182, 103, 0.6));
            z-index: 2;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .footer {
            margin-top: 32px;
            font-size: 0.8rem;
            color: #706860;
            letter-spacing: 0.5px;
        }