<style>
        @media only screen and (max-width: 1200px) {}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 100%);
            min-height: 100vh;
            padding: 60px 20px 40px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .central-wrap {
            max-width: 720px;
            margin: 0 auto;
        }

        /* HEADER */
        .hero {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 50px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,0 1000,300 1000,1000 0,700"/></svg>');
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero h1 span {
            color: #ffd700;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* SELETOR */
        .selector {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            background: #1a2535;
        }

        .sel-btn {
            background: #1a2535;
            border: none;
            border-bottom: 3px solid transparent;
            padding: 18px 12px;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s ease;
            color: rgba(255, 255, 255, 0.6);
        }

        .sel-btn:hover {
            background: rgba(255, 255, 255, 0.07);
            color: white;
        }

        .sel-btn.ativo {
            background: white;
            border-bottom-color: #ff6b35;
            color: #2c3e50;
        }

        .sel-btn.ativo .sel-label {
            color: #2c3e50;
            font-weight: 700;
        }

        .sel-icone {
            font-size: 1.6rem;
            display: block;
            margin-bottom: 6px;
        }

        .sel-label {
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.3;
            color: inherit;
        }

        /* PAINEIS */
        .painel {
            display: none;
            background: white;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            animation: fadeIn 0.3s ease;
            overflow: hidden;
        }

        .painel.ativo {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .painel-topo {
            background: linear-gradient(45deg, #2c3e50, #3498db);
            color: white;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .painel-icone-wrap {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .painel-titulo {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .painel-sub {
            font-size: 0.85rem;
            opacity: 0.85;
        }

        .painel-corpo {
            padding: 30px 32px 36px;
        }

        /* avisos */
        .aviso {
            display: flex;
            gap: 14px;
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            line-height: 1.6;
            align-items: flex-start;
        }

        .aviso-icone {
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .aviso-laranja {
            background: #fff5f0;
            border: 1px solid #ffd5c2;
            color: #7d3010;
        }

        .aviso-azul {
            background: #f0f8ff;
            border: 1px solid #bde0ff;
            color: #1a4f72;
        }

        .aviso-dourado {
            background: #fffdf0;
            border: 1px solid #ffe680;
            color: #5d4e08;
        }

        /* email destaque */
        .email-destaque {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
            border: 2px solid #3498db;
            border-radius: 12px;
            padding: 18px 22px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .email-destaque span {
            font-size: 1.4rem;
        }

        .email-destaque small {
            color: #666;
            font-size: 0.82rem;
            display: block;
            margin-bottom: 2px;
        }

        .email-destaque strong {
            color: #2c3e50;
            font-size: 1rem;
        }

        .email-destaque-gold {
            border-color: #f7931e;
            background: linear-gradient(135deg, #fffdf0, #fff8e0);
        }

        /* formulario */
        .m-campo {
            margin-bottom: 18px;
        }

        .m-campo label {
            display: block;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 6px;
            font-size: 0.9rem;
        }

        .m-campo label span {
            color: #e74c3c;
        }

        .m-campo input,
        .m-campo textarea {
            width: 100%;
            border: 2px solid #dde3f0;
            border-radius: 10px;
            padding: 12px 14px;
            font-size: 0.95rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            outline: none;
            box-sizing: border-box;
            transition: border-color 0.2s;
        }

        .m-campo input:focus,
        .m-campo textarea:focus {
            border-color: #3498db;
        }

        .m-campo textarea {
            resize: vertical;
        }

        .m-erro {
            display: none;
            color: #e74c3c;
            font-size: 0.8rem;
            margin-top: 4px;
        }

        .campo-invalido {
            border-color: #e74c3c !important;
        }

        .campo-invalido+.m-erro {
            display: block;
        }

        /* botoes */
        .cta-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            background: linear-gradient(45deg, #25d366, #128c7e);
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
        }

        .cta-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(44, 62, 80, 0.25);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .cta-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(44, 62, 80, 0.35);
        }

        .cta-gold {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }

        .cta-gold:hover {
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
        }

        /* footer */
        .ca-footer {
            text-align: center;
            margin-top: 28px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.82rem;
        }

        /* RESPONSIVIDADE */
        @media (max-width: 768px) {
            body {
                padding: 20px 12px 40px;
            }

            .hero {
                padding: 36px 20px;
                border-radius: 14px 14px 0 0;
            }

            .hero h1 {
                font-size: 1.6rem;
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .sel-btn {
                padding: 14px 6px;
            }

            .sel-icone {
                font-size: 1.3rem;
                margin-bottom: 4px;
            }

            .sel-label {
                font-size: 0.65rem;
                letter-spacing: 0;
            }

            .painel-topo {
                padding: 18px 16px;
                gap: 12px;
            }

            .painel-icone-wrap {
                width: 42px;
                height: 42px;
                font-size: 1.2rem;
            }

            .painel-titulo {
                font-size: 1rem;
            }

            .painel-sub {
                font-size: 0.78rem;
            }

            .painel-corpo {
                padding: 20px 16px 26px;
            }

            .aviso {
                padding: 14px 16px;
                font-size: 0.85rem;
                gap: 10px;
            }

            .email-destaque {
                padding: 14px 16px;
                gap: 10px;
            }

            .email-destaque strong {
                font-size: 0.88rem;
                word-break: break-all;
            }

            .m-campo label {
                font-size: 0.85rem;
            }

            .m-campo input,
            .m-campo textarea {
                padding: 10px 12px;
                font-size: 0.9rem;
            }

            .cta-primary,
            .cta-secondary {
                padding: 15px 20px;
                font-size: 0.9rem;
                letter-spacing: 0.5px;
            }

            .ca-footer {
                font-size: 0.75rem;
                margin-top: 20px;
            }
        }

        @media (max-width: 380px) {
            .sel-label {
                display: none;
            }

            .sel-icone {
                margin-bottom: 0;
            }

            .sel-btn {
                padding: 14px 4px;
            }

            .hero h1 {
                font-size: 1.4rem;
            }
        }
    </style>