.curriculo-container {
    max-width: 700px;
    margin: 0 auto;
}

.curriculo-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.curriculo-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 40px;
    text-align: center;
}

    .curriculo-header h1 {
        font-size: 1.75rem;
        font-weight: 700;
        margin: 0 0 8px 0;
    }

    .curriculo-header p {
        font-size: 1rem;
        margin: 0;
        opacity: 0.95;
    }

.curriculo-body {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

    .form-label i {
        color: #667eea;
        font-size: 0.85rem;
    }

.form-control, .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: #fafafa;
}

    .form-control:focus, .form-select:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        background: white;
        outline: none;
    }

.file-upload-wrapper {
    position: relative;
    border: 2px dashed #e5e7eb;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    background: #fafafa;
    cursor: pointer;
}

    .file-upload-wrapper:hover {
        border-color: #667eea;
        background: #f8f9ff;
    }

    .file-upload-wrapper.active {
        border-color: #667eea;
        background: #f0f3ff;
    }

    .file-upload-wrapper input[type="file"] {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
    }

.file-upload-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 12px;
}

.file-upload-text {
    color: #6b7280;
    font-size: 0.9rem;
}

.file-upload-info {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #9ca3af;
}

.file-selected {
    margin-top: 12px;
    padding: 12px;
    background: #f0f3ff;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 12px;
}

    .file-selected i {
        color: #10b981;
        font-size: 1.2rem;
    }

.file-selected-name {
    flex: 1;
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
}

.file-remove-btn {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .file-remove-btn:hover {
        background: #dc2626;
    }

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    cursor: pointer;
}

    .btn-submit:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    .btn-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

.alert-custom {
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    display: none;
    animation: slideDown 0.3s ease;
    border: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #10b981;
    color: white;
}

.alert-danger {
    background: #ef4444;
    color: white;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.required-indicator {
    color: #ef4444;
    margin-left: 2px;
}
.consulta-card-header {
    padding: 22px 24px;
    background: linear-gradient(135deg, #f1f1f1, #e6e6e6);
    color: #000;
}

    .consulta-card-header h4 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .consulta-card-header p {
        margin: 6px 0 0;
        opacity: .92;
        font-size: 14px;
    }
.consulta-card-header {
    padding: 18px 20px;
}