
        :root {
            --primary: #1e293b; 
            --accent: #8fb3a4;  
            --bg-light: #f8fafc;
            --glass: rgba(255, 255, 255, 0.8);
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
        
        body { 
            color: var(--text-dark); 
            background-color: var(--bg-light);
            background-image: radial-gradient(#8fb3a422 1px, transparent 1px);
            background-size: 40px 40px;
            line-height: 1.6;
        }

        section { padding: 80px 10%; position: relative; }

        



        h1, h2, h3, h4 { color: var(--primary); font-weight: 700; line-height: 1.2; }

        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 20px 45px;
            text-decoration: none;
            border-radius: 15px;
            font-weight: 600;
            box-shadow: 0 10px 20px -5px rgba(143, 179, 164, 0.5);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover { 
            transform: translateY(-3px); 
            box-shadow: 0 15px 25px -5px rgba(143, 179, 164, 0.6); }

        /* Hero Section */
        #hero { 
            display: flex; 
            align-items: center; 
            min-height: 100vh; 
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            gap: 50px; 
            overflow: hidden;
            color: white;
        }
        #hero h1,
        #hero p {
            color: white;
        }

        #hero .badge {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(5px);
        }

        .hero-content { 
            flex: 1; 
            z-index: 2; }
        .hero-content h1 { 
            font-size: 3.2rem; 
            margin-bottom: 20px; 
            text-transform: uppercase; }
        .badge {
            display: inline-block; 
            background: var(--accent); 
            color: white;
            padding: 6px 15px; 
            border-radius: 50px; 
            font-size: 0.8rem;
            font-weight: 600; 
            margin-bottom: 20px;
        }

        /* Ajuste específico para a imagem do Moabe com a moldura sólida */
        .hero-img { 
            flex: 1; 
            text-align: center; 
            z-index: 2;
        }

        .hero-img img { 
            width: 350px; /* Largura fixa conforme seu pedido */
            border-radius: 30px; 
            /* O segredo do efeito: deslocamento de 20px sem desfoque */
            box-shadow: 20px 20px 0 var(--accent); 
            display: inline-block;
            transition: transform 0.3s ease;
        }

        /* Grid de Cards com Ícones */
        .grid-cards { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 25px; 
            margin-top: 40px; 
        }
        .card {
        background: white;
        padding: 35px;
        border-radius: 20px;
        border: 1px solid #eef2f6;
        box-shadow: 0 10px 25px rgba(0,0,0,0.04);
        transition: 0.3s;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.08);
        }
        .card i { 
            font-size: 2.5rem; 
            color: var(--accent); 
            margin-bottom: 20px; 
            display: block; }

        /* Seção TRG */
        .trg-container { max-width: 1000px; margin: 0 auto; }
        .highlight-box {
            background: white; 
            padding: 40px; 
            border-left: 6px solid var(--accent);
            border-radius: 20px; 
            margin: 40px 0; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .methods-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px; margin-top: 40px;
        }
        .method-item {
            background: #fff; padding: 25px; border-radius: 15px;
            border: 1px solid #eef2f6; transition: 0.3s;
        }
        .method-item:hover { border-color: var(--accent); }
        .method-item i { color: var(--accent); font-size: 1.5rem; margin-bottom: 15px; display: block; }

        /* FAQ */
        .faq-item { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .faq-item i { color: var(--accent); margin-right: 10px; }

        /* WhatsApp Fixo */
        .whatsapp-float {
            position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px;
            background: #25D366; border-radius: 50%; display: flex;
            align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            z-index: 1000; transition: 0.3s; animation: pulse 2s infinite;
        }

        .footer {
            background: #0b1220;
            color: #94a3b8;
            text-align: center;
            padding: 5px 5px;
            font-size: 13px;
        }

        .footer p {
            margin: 0.5px 0;
        }

        .footer .creditos {
            font-size: 12px;
            opacity: 0.5;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37,211,102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37,211,102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
        }

       /* Responsividade corrigida conforme seu código */
        @media (max-width: 768px) {
            #hero { 
                flex-direction: column-reverse; 
                text-align: center; 
                padding-top: 40px; 
                padding-bottom: 40px;
            }
            .hero-img img { 
                width: 250px; /* Reduz no celular */
                margin-bottom: 50px; /* Espaço para a moldura não cortar */
            }
            section { 
                padding: 50px 5%; 
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
        }
    