 @media print {
            .no-print {
                display: none !important;
            }
            body {
                background: white !important;
            }
            #curriculo-pdf {
                box-shadow: none !important;
                margin: 0 !important;
                padding: 0 !important;
            }
        }
        
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-overlay.active {
            display: flex;
        }
        
        .modal-content {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            max-width: 500px;
            width: 90%;
        }
        
        .btn-gerar-objetivo {
            background: linear-gradient(to right, #3b82f6, #1e40af);
        }
        
        .btn-gerar-objetivo:hover {
            background: linear-gradient(to right, #1e40af, #1e3a8a);
        }